forked from classilla/tenfourfox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnsASCIIMask.cpp
More file actions
55 lines (44 loc) · 1.36 KB
/
nsASCIIMask.cpp
File metadata and controls
55 lines (44 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsASCIIMask.h"
namespace mozilla {
constexpr bool TestWhitespace(char c)
{
return c == '\f' || c == '\t' || c == '\r' || c == '\n' || c == ' ';
}
constexpr ASCIIMaskArray sWhitespaceMask = CreateASCIIMask(TestWhitespace);
constexpr bool TestCRLF(char c)
{
return c == '\r' || c == '\n';
}
constexpr ASCIIMaskArray sCRLFMask = CreateASCIIMask(TestCRLF);
constexpr bool TestCRLFTab(char c)
{
return c == '\r' || c == '\n' || c == '\t';
}
constexpr ASCIIMaskArray sCRLFTabMask = CreateASCIIMask(TestCRLFTab);
constexpr bool TestZeroToNine(char c)
{
return c == '0' || c == '1' || c == '2' || c == '3' || c == '4' ||
c == '5' || c == '6' || c == '7' || c == '8' || c == '9';
}
constexpr ASCIIMaskArray sZeroToNineMask = CreateASCIIMask(TestZeroToNine);
const ASCIIMaskArray& ASCIIMask::MaskWhitespace()
{
return sWhitespaceMask;
}
const ASCIIMaskArray& ASCIIMask::MaskCRLF()
{
return sCRLFMask;
}
const ASCIIMaskArray& ASCIIMask::MaskCRLFTab()
{
return sCRLFTabMask;
}
const ASCIIMaskArray& ASCIIMask::Mask0to9()
{
return sZeroToNineMask;
}
} // namespace mozilla