Home
last modified time | relevance | path

Searched refs:IS_STRING (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/
Druntime.js55 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)) {
166 if (IS_STRING(this) && IS_STRING(x)) return %_StringAdd(this, x);
[all …]
Djson.js153 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)) {
Darray.js79 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)) {
Dmacros.py98 macro IS_STRING(arg) = (typeof(arg) === 'string');
144 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
Dstring.js49 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)) {
Ddate.js160 } else if (IS_STRING(year)) {
183 value = IS_STRING(time) ? DateParse(time) : ToNumber(time);
Dv8natives.js152 if (!IS_STRING(x)) return x;
1555 if (!IS_STRING(source) || %FunctionIsBuiltin(func)) {
Ddebug-debugger.js1594 if (!IS_STRING(target)) {
2045 if (!IS_STRING(mapping.name) || !IS_NUMBER(mapping.handle)) {
2366 if (!IS_STRING(request.arguments.new_source)) {
Dhydrogen-instructions.cc920 if (check_ == IS_STRING && in Canonicalize()
954 case IS_STRING: in GetCheckMaskAndTag()
991 case IS_STRING: return "string"; in GetCheckName()
Dmessages.js97 if (IS_STRING(constructorName) && constructorName !== "") {
Dmirror-debugger.js79 } else if (IS_STRING(value)) {
Dhydrogen-instructions.h2102 return new HCheckInstanceType(value, IS_STRING);
2135 IS_STRING,
/external/icu4c/common/
Dusetiter.cpp61 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/icu4c/common/unicode/
Dusetiter.h71 enum { IS_STRING = -1 }; enumerator
304 return codepoint == (UChar32)IS_STRING; in isString()