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

1 2

  /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/icu/icu4c/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/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/icu/icu4c/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/chromium_org/v8/src/
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))
    [all...]
json.js 139 if (IS_STRING(value)) {
183 } else if (IS_STRING(space)) {
206 if (IS_STRING(item) && seen_properties[item] != seen_sentinel) {