OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toASCIIHexValue
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
ASCIICType.h
148
inline int
toASCIIHexValue
(char c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
149
inline int
toASCIIHexValue
(unsigned short c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
151
inline int
toASCIIHexValue
(wchar_t c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
153
inline int
toASCIIHexValue
(int c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
154
inline int
toASCIIHexValue
(unsigned c) { ASSERT(isASCIIHexDigit(c)); return c < 'A' ? c - '0' : (c - 'A' + 10) & 0xF; }
175
using WTF::
toASCIIHexValue
;
/external/webkit/Source/JavaScriptCore/parser/
Lexer.h
162
return (
toASCIIHexValue
(c1) << 4) |
toASCIIHexValue
(c2);
Lexer.cpp
555
hexValue = (hexValue << 4) +
toASCIIHexValue
(m_current);
[
all
...]
/external/webkit/Source/WebCore/svg/
SVGParserUtilities.cpp
265
startRange = (startRange << 4) |
toASCIIHexValue
(*ptr);
284
endRange = (endRange << 4) |
toASCIIHexValue
(*ptr);
/external/webkit/Source/JavaScriptCore/yarr/
YarrParser.h
788
n = (n << 4) | WTF::
toASCIIHexValue
(consume());
/external/webkit/Source/WebCore/dom/
StyledElement.cpp
366
colors[component] +=
toASCIIHexValue
(color[pos]);
/external/webkit/Source/WebCore/platform/graphics/
Color.cpp
136
value |=
toASCIIHexValue
(name[i]);
/external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObjectFunctions.cpp
301
number = number * 16 +
toASCIIHexValue
(*data);
/external/webkit/Source/WebCore/css/
CSSParser.cpp
[
all
...]
Completed in 191 milliseconds