/external/chromium_org/third_party/icu/source/common/unicode/ |
usetiter.h | 67 * If <tt>codepoint == IS_STRING</tt>, then examine 71 enum { IS_STRING = -1 }; 74 * Current code point, or the special value <tt>IS_STRING</tt>, if 83 * iteration range, if <tt>codepoint != IS_STRING</tt>. If 85 * <tt>codepoint == IS_STRING</tt>, then the value of 92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points 93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the 304 return codepoint == (UChar32)IS_STRING;
|
/external/icu4c/common/unicode/ |
usetiter.h | 67 * If <tt>codepoint == IS_STRING</tt>, then examine 71 enum { IS_STRING = -1 }; 74 * Current code point, or the special value <tt>IS_STRING</tt>, if 83 * iteration range, if <tt>codepoint != IS_STRING</tt>. If 85 * <tt>codepoint == IS_STRING</tt>, then the value of 92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points 93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the 304 return codepoint == (UChar32)IS_STRING;
|
/external/chromium_org/third_party/icu/source/common/ |
usetiter.cpp | 41 * if so, if codepoint == IS_STRING, the value is a string in the string field 61 codepoint = (UChar32)IS_STRING; // signal that value is actually a string 68 * if so, if codepoint == IS_STRING, the value is a string in the string field 94 codepoint = (UChar32)IS_STRING; // signal that value is actually a string 136 if (string==NULL && codepoint!=(UChar32)IS_STRING) {
|
/external/icu4c/common/ |
usetiter.cpp | 41 * if so, if codepoint == IS_STRING, the value is a string in the string field 61 codepoint = (UChar32)IS_STRING; // signal that value is actually a string 68 * if so, if codepoint == IS_STRING, the value is a string in the string field 94 codepoint = (UChar32)IS_STRING; // signal that value is actually a string 136 if (string==NULL && codepoint!=(UChar32)IS_STRING) {
|
/external/chromium_org/v8/src/ |
runtime.js | 55 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y); 69 } else if (IS_STRING(x)) { 71 if (IS_STRING(y)) return %StringEquals(x, y); 88 if (IS_STRING(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y)); 109 if (IS_STRING(this)) { 110 if (!IS_STRING(x)) return 1; // not equal 132 if (IS_STRING(this)) { 133 if (IS_STRING(x)) return %_StringCompare(this, x); 153 if (IS_STRING(left) && IS_STRING(right)) [all...] |
macros.py | 102 macro IS_STRING(arg) = (typeof(arg) === 'string'); 155 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
|
json.js | 160 if (IS_STRING(value)) { 204 } else if (IS_STRING(space)) {
|
array.js | 78 if (!IS_STRING(e)) e = convert(e); 101 if (!IS_STRING(e)) e = convert(e); 142 if (IS_STRING(e)) return e; 154 if (!IS_STRING(e)) e = convert(e); 168 if (!IS_STRING(e)) e = convert(e); 176 } else if (!IS_STRING(e)) { 387 } else if (!IS_STRING(separator)) { [all...] |
object-observe.js | 494 if (!IS_STRING(changeRecord.type)) 508 if (!IS_STRING(changeType))
|
string.js | 46 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 55 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 296 IS_STRING(replace) && 551 if (IS_STRING(re)) {
|
date.js | 156 } else if (IS_STRING(year)) { 179 value = IS_STRING(time) ? DateParse(time) : ToNumber(time);
|
typedarray.js | 119 } else if (IS_NUMBER(arg1) || IS_STRING(arg1) ||
|
messages.js | 224 if (IS_STRING(obj)) return obj; 234 if (IS_STRING(constructorName) && constructorName !== "") { 285 if (IS_STRING(constructorName) && constructorName !== "") { [all...] |
v8natives.js | 171 if (!IS_STRING(x)) return x; [all...] |
hydrogen-instructions.cc | [all...] |
debug-debugger.js | [all...] |
/external/v8/src/ |
runtime.js | 55 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y); 69 } else if (IS_STRING(x)) { 71 if (IS_STRING(y)) return %StringEquals(x, y); 81 if (IS_STRING(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y)); 101 if (IS_STRING(this)) { 102 if (!IS_STRING(x)) return 1; // not equal 124 if (IS_STRING(this)) { 125 if (IS_STRING(x)) return %_StringCompare(this, x); 145 if (IS_STRING(left) && IS_STRING(right)) [all...] |
macros.py | 98 macro IS_STRING(arg) = (typeof(arg) === 'string'); 144 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
|
json.js | 153 if (IS_STRING(value)) { 192 if (IS_STRING(val)) { 204 if (IS_STRING(val)) { 280 if (IS_STRING(value)) { 328 } else if (IS_STRING(space)) {
|
array.js | 79 if (!IS_STRING(e)) e = convert(e); 102 if (!IS_STRING(e)) e = convert(e); 143 if (IS_STRING(e)) return e; 155 if (!IS_STRING(e)) e = convert(e); 169 if (!IS_STRING(e)) e = convert(e); 177 } else if (!IS_STRING(e)) { 418 } else if (!IS_STRING(separator)) { [all...] |
string.js | 49 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 58 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 249 IS_STRING(replace) && 521 if (IS_STRING(re)) {
|
date.js | 160 } else if (IS_STRING(year)) { 183 value = IS_STRING(time) ? DateParse(time) : ToNumber(time);
|
hydrogen-instructions.cc | 920 if (check_ == IS_STRING && 954 case IS_STRING: 991 case IS_STRING: return "string"; [all...] |
debug-debugger.js | [all...] |
v8natives.js | 152 if (!IS_STRING(x)) return x; [all...] |