HomeSort by relevance Sort by last modified time
    Searched refs:IS_STRING (Results 1 - 13 of 13) sorted by null

  /external/chromium/third_party/icu/public/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/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/v8/src/
runtime.js 55 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);
97 if (IS_STRING(this)) {
98 if (!IS_STRING(x)) return 1; // not equal
120 if (IS_STRING(this)) {
121 if (IS_STRING(x)) return %_StringCompare(this, x);
137 if (IS_STRING(left) && IS_STRING(right))
    [all...]
macros.py 85 macro IS_STRING(arg) = (typeof(arg) === 'string');
107 macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
array.js 83 if (!IS_STRING(e)) e = convert(e);
121 if (IS_STRING(e)) return e;
136 if (!IS_STRING(e)) e = convert(e);
146 if (!IS_STRING(e)) e = convert(e);
364 } else if (!IS_STRING(separator)) {
    [all...]
json.js 249 } else if (IS_STRING(space)) {
v8natives.js 121 if (!IS_STRING(x)) return x;
946 if (!IS_STRING(source) || %FunctionIsBuiltin(func)) {
date.js 447 } else if (IS_STRING(year)) {
471 value = IS_STRING(time) ? DateParse(time) : TimeClip(ToNumber(time));
    [all...]
string.js 49 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this))
57 if (!IS_STRING(this) && !IS_STRING_WRAPPER(this))
debug-debugger.js     [all...]
mirror-debugger.js 79 } else if (IS_STRING(value)) {
    [all...]

Completed in 980 milliseconds