OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isASCIILower
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
ASCIICType.h
94
inline bool
isASCIILower
(char c) { return c >= 'a' && c <= 'z'; }
95
inline bool
isASCIILower
(unsigned short c) { return c >= 'a' && c <= 'z'; }
97
inline bool
isASCIILower
(wchar_t c) { return c >= 'a' && c <= 'z'; }
99
inline bool
isASCIILower
(int c) { return c >= 'a' && c <= 'z'; }
100
inline bool
isASCIILower
(unsigned c) { return c >= 'a' && c <= 'z'; }
170
using WTF::
isASCIILower
;
/external/webkit/Source/WebCore/html/parser/
HTMLTokenizer.cpp
394
} else if (
isASCIILower
(cc)) {
415
} else if (
isASCIILower
(cc)) {
472
} else if (
isASCIILower
(cc)) {
489
} else if (
isASCIILower
(cc)) {
530
} else if (
isASCIILower
(cc)) {
547
} else if (
isASCIILower
(cc)) {
592
} else if (
isASCIILower
(cc)) {
609
} else if (
isASCIILower
(cc)) {
713
} else if (
isASCIILower
(cc)) {
731
} else if (
isASCIILower
(cc))
[
all
...]
/external/webkit/Source/WebCore/dom/
DatasetDOMStringMap.cpp
62
if ((i + 1 < length) &&
isASCIILower
(characters[i + 1])) {
106
if (characters[i] == '-' && (i + 1 < length) &&
isASCIILower
(characters[i + 1]))
KeyboardEvent.h
39
KeypressCommand(const String& commandName) : commandName(commandName) { ASSERT(
isASCIILower
(commandName[0U])); }
InputElement.cpp
329
ok = !isASCIIDigit(inChar) && !
isASCIILower
(inChar) && isASCIIPrintable(inChar);
341
ok = !
isASCIILower
(inChar) && isASCIIPrintable(inChar);
/external/webkit/Source/WebCore/bindings/js/
JSCSSStyleDeclarationCustom.cpp
73
ASSERT(
isASCIILower
(*p));
/external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp
65
ASSERT(WTF::
isASCIILower
(*p));
/external/webkit/Source/WebCore/wml/
WMLInputElement.cpp
474
ok = !WTF::isASCIIDigit(inChar) && !WTF::
isASCIILower
(inChar) && WTF::isASCIIPrintable(inChar);
486
ok = !WTF::
isASCIILower
(inChar) && WTF::isASCIIPrintable(inChar);
/external/webkit/Source/WebCore/platform/
KURLGoogle.cpp
53
using WTF::
isASCIILower
;
[
all
...]
/external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp
209
if (
isASCIILower
(ch)) {
[
all
...]
Completed in 188 milliseconds