Searched defs:convertHex (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DLexer.h46 static unsigned char convertHex(int c1, int c2);
160 inline unsigned char Lexer::convertHex(int c1, int c2) function in class:JSC::Lexer
167 return (convertHex(c1, c2) << 8) | convertHex(c3, c4);

Completed in 64 milliseconds