OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isASCIILower
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
DatasetDOMStringMap.cpp
63
if ((i + 1 < length) &&
isASCIILower
(name[i + 1])) {
86
if (attributeName[a] == '-' && a + 1 < attributeLength &&
isASCIILower
(attributeName[a + 1]))
104
if (name[i] == '-' && (i + 1 < length) &&
isASCIILower
(name[i + 1]))
/external/chromium_org/third_party/WebKit/Source/wtf/
ASCIICType.h
71
template<typename CharType> inline bool
isASCIILower
(CharType c)
173
using WTF::
isASCIILower
;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTokenizer.cpp
316
} else if (
isASCIILower
(cc)) {
338
} else if (
isASCIILower
(cc)) {
394
} else if (
isASCIILower
(cc)) {
411
} else if (
isASCIILower
(cc)) {
459
} else if (
isASCIILower
(cc)) {
476
} else if (
isASCIILower
(cc)) {
528
} else if (
isASCIILower
(cc)) {
545
} else if (
isASCIILower
(cc)) {
656
} else if (
isASCIILower
(cc)) {
674
} else if (
isASCIILower
(cc))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
DateTimeFormat.cpp
97
if (
isASCIILower
(ch))
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp
66
ASSERT(
isASCIILower
(*p));
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
EmailInputType.cpp
110
return !
isASCIILower
(ch) && !isASCIIUpper(ch) && !isASCIIDigit(ch) && ch != '.' && ch != '-';
Completed in 49 milliseconds