Lines Matching refs:base
8 #include "src/base/strings.h"
18 inline constexpr int AsciiAlphaToLower(base::uc32 c);
19 inline constexpr bool IsCarriageReturn(base::uc32 c);
20 inline constexpr bool IsLineFeed(base::uc32 c);
21 inline constexpr bool IsAsciiIdentifier(base::uc32 c);
22 inline constexpr bool IsAlphaNumeric(base::uc32 c);
23 inline constexpr bool IsDecimalDigit(base::uc32 c);
24 inline constexpr bool IsHexDigit(base::uc32 c);
25 inline constexpr bool IsOctalDigit(base::uc32 c);
26 inline constexpr bool IsBinaryDigit(base::uc32 c);
27 inline constexpr bool IsRegExpWord(base::uc32 c);
29 inline constexpr bool IsAsciiLower(base::uc32 ch);
30 inline constexpr bool IsAsciiUpper(base::uc32 ch);
32 inline constexpr base::uc32 ToAsciiUpper(base::uc32 ch);
33 inline constexpr base::uc32 ToAsciiLower(base::uc32 ch);
40 inline bool IsIdentifierStart(base::uc32 c);
42 V8_EXPORT_PRIVATE bool IsIdentifierStartSlow(base::uc32 c);
44 inline bool IsIdentifierStartSlow(base::uc32 c) {
55 inline bool IsIdentifierPart(base::uc32 c);
57 V8_EXPORT_PRIVATE bool IsIdentifierPartSlow(base::uc32 c);
59 inline bool IsIdentifierPartSlow(base::uc32 c) {
71 inline bool IsWhiteSpace(base::uc32 c);
73 V8_EXPORT_PRIVATE bool IsWhiteSpaceSlow(base::uc32 c);
75 inline bool IsWhiteSpaceSlow(base::uc32 c) {
83 inline bool IsWhiteSpaceOrLineTerminator(base::uc32 c);
84 inline bool IsWhiteSpaceOrLineTerminatorSlow(base::uc32 c) {
88 inline bool IsLineTerminatorSequence(base::uc32 c, base::uc32 next);