Searched refs:IS_STRING (Results 1 – 22 of 22) sorted by relevance
/external/chromium_org/v8/src/ |
D | runtime.js | 31 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y); 46 } else if (IS_STRING(x)) { 48 if (IS_STRING(y)) return %StringEquals(x, y); 62 if (IS_STRING(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y)); 84 if (IS_STRING(this)) { 85 if (!IS_STRING(x)) return 1; // not equal 107 if (IS_STRING(this)) { 108 if (IS_STRING(x)) return %_StringCompare(this, x); 128 if (IS_STRING(left) && IS_STRING(right)) { 149 if (IS_STRING(this) && IS_STRING(x)) return %_StringAdd(this, x); [all …]
|
D | json.js | 139 if (IS_STRING(value)) { 183 } else if (IS_STRING(space)) { 206 if (IS_STRING(item) && seen_properties[item] != seen_sentinel) {
|
D | string.js | 24 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 33 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this)) { 275 IS_STRING(replace) && 528 if (IS_STRING(re)) {
|
D | array.js | 57 if (!IS_STRING(e)) e = convert(e); 80 if (!IS_STRING(e)) e = convert(e); 131 if (IS_STRING(e)) return e; 143 if (!IS_STRING(e)) e = convert(e); 157 if (!IS_STRING(e)) e = convert(e); 165 } else if (!IS_STRING(e)) { 374 } else if (!IS_STRING(separator)) {
|
D | apinatives.js | 75 if (IS_STRING(name)) %FunctionSetName(fun, name);
|
D | macros.py | 106 macro IS_STRING(arg) = (typeof(arg) === 'string'); 165 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
|
D | object-observe.js | 541 if (!IS_STRING(changeRecord.type)) 554 if (!IS_STRING(changeType))
|
D | messages.js | 210 if (IS_STRING(obj)) return obj; 228 if (IS_STRING(constructorName) && constructorName !== "") { 279 if (IS_STRING(constructorName) && constructorName !== "") {
|
D | date.js | 136 } else if (IS_STRING(year)) { 160 value = IS_STRING(time) ? DateParse(time) : ToNumber(time);
|
D | typedarray.js | 108 } else if (IS_NUMBER(arg1) || IS_STRING(arg1) ||
|
D | v8natives.js | 164 if (!IS_STRING(x)) return x; 1743 if (!IS_STRING(source) || %FunctionIsBuiltin(func)) {
|
D | debug-debugger.js | 1523 if (!IS_STRING(target)) { 2066 if (!IS_STRING(mapping.name)) { 2351 if (!IS_STRING(request.arguments.new_source)) {
|
D | liveedit-debugger.js | 1106 if (IS_STRING(result)) {
|
D | hydrogen-check-elimination.cc | 452 if (instr->check() == HCheckInstanceType::IS_STRING) { in ReduceCheckInstanceType()
|
D | hydrogen-instructions.cc | 1593 (check_ == IS_STRING && value()->type().IsString())) { in Canonicalize() 1626 case IS_STRING: in GetCheckMaskAndTag() 1686 case IS_STRING: return "string"; in GetCheckName()
|
D | mirror-debugger.js | 68 } else if (IS_STRING(value)) {
|
D | hydrogen.cc | 1283 return Add<HCheckInstanceType>(string, HCheckInstanceType::IS_STRING); in BuildCheckString() 7318 Add<HCheckInstanceType>(object, HCheckInstanceType::IS_STRING); in BuildNamedAccess() 10860 Add<HCheckInstanceType>(left, HCheckInstanceType::IS_STRING); in BuildCompareInstruction() 10862 Add<HCheckInstanceType>(right, HCheckInstanceType::IS_STRING); in BuildCompareInstruction()
|
D | hydrogen-instructions.h | 2911 IS_STRING, enumerator 2928 case IS_STRING: return HType::String(); in CalculateInferredType()
|
/external/chromium_org/third_party/icu/source/common/ |
D | usetiter.cpp | 61 codepoint = (UChar32)IS_STRING; // signal that value is actually a string in next() 94 codepoint = (UChar32)IS_STRING; // signal that value is actually a string in nextRange() 136 if (string==NULL && codepoint!=(UChar32)IS_STRING) { in getString()
|
/external/icu/icu4c/source/common/ |
D | usetiter.cpp | 61 codepoint = (UChar32)IS_STRING; // signal that value is actually a string in next() 94 codepoint = (UChar32)IS_STRING; // signal that value is actually a string in nextRange() 136 if (string==NULL && codepoint!=(UChar32)IS_STRING) { in getString()
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
D | usetiter.h | 71 enum { IS_STRING = -1 }; enumerator 304 return codepoint == (UChar32)IS_STRING; in isString()
|
/external/icu/icu4c/source/common/unicode/ |
D | usetiter.h | 71 enum { IS_STRING = -1 }; enumerator 304 return codepoint == (UChar32)IS_STRING; in isString()
|