Searched refs:ored (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DSpaceSplitString.cpp37 UChar ored = 0; local
41 ored |= c;
43 return hasUpper || (ored & ~0x7F);
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUserDefined.cpp97 UChar ored = 0; local
101 ored |= c;
104 if (!(ored & 0xFF80))
H A DTextCodecLatin1.cpp199 UChar ored = 0; local
203 ored |= c;
206 if (!(ored & 0xFF80))
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.cpp198 UChar ored = 0; local
204 ored |= *chp;
208 if (noUpper && !(ored & ~0x7F))
218 if (!(ored & ~0x7F)) {
252 UChar ored = 0; local
255 ored |= c;
258 if (!(ored & ~0x7F))
297 UChar ored = 0; local
300 ored |= c;
303 if (!(ored
973 UChar ored = 0; local
[all...]
H A DWTFString.h408 UChar ored = 0; local
410 ored |= characters[i];
411 return !(ored & 0xFF80);
416 UChar ored = 0; local
418 ored |= characters[i];
419 return !(ored & 0xFF00);
/external/webkit/Source/JavaScriptCore/runtime/
H A DStringPrototype.cpp865 UChar ored = 0; local
868 ored |= c;
871 if (!(ored & ~0x7f))
905 UChar ored = 0; local
908 ored |= c;
911 if (!(ored & ~0x7f))

Completed in 201 milliseconds