Home
last modified time | relevance | path

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

/external/v8/src/
Druntime.js55 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y);
65 } else if (IS_STRING(x)) {
66 if (IS_STRING(y)) return %StringEquals(x, y);
94 if (IS_STRING(this)) {
95 if (!IS_STRING(x)) return 1; // not equal
117 if (IS_STRING(this)) {
118 if (IS_STRING(x)) return %_StringCompare(this, x);
138 if (IS_STRING(left) && IS_STRING(right)) {
159 if (IS_STRING(this) && IS_STRING(x)) return %_StringAdd(this, x);
165 if (IS_STRING(a)) {
[all …]
Djson.js153 if (IS_STRING(value)) {
192 if (IS_STRING(val)) {
197 if (IS_STRING(val)) {
275 if (IS_STRING(value)) {
323 } else if (IS_STRING(space)) {
Dmacros.py98 macro IS_STRING(arg) = (typeof(arg) === 'string');
128 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
Darray.js83 if (!IS_STRING(e)) e = convert(e);
120 if (IS_STRING(e)) return e;
133 if (!IS_STRING(e)) e = convert(e);
148 if (!IS_STRING(e)) e = convert(e);
156 if (!IS_STRING(e)) e = convert(e);
380 } else if (!IS_STRING(separator)) {
Dstring.js49 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this))
57 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this))
471 if (IS_STRING(re)) {
Dv8natives.js132 if (!IS_STRING(x)) return x;
1162 if (!IS_STRING(source) || %FunctionIsBuiltin(func)) {
Ddate.js414 } else if (IS_STRING(year)) {
438 value = IS_STRING(time) ? DateParse(time) : TimeClip(ToNumber(time));
Ddebug-debugger.js1562 if (!IS_STRING(target)) {
1989 if (!IS_STRING(mapping.name) || !IS_NUMBER(mapping.handle)) {
2319 if (!IS_STRING(request.arguments.new_source)) {
Dmessages.js107 if (!constructorName || !IS_STRING(constructorName)) {
Dmirror-debugger.js79 } else if (IS_STRING(value)) {
/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()