OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IS_STRING
(Results
1 - 12
of
12
) sorted by null
/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/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);
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))
[
all
...]
macros.py
98
macro
IS_STRING
(arg) = (typeof(arg) === 'string');
128
macro TO_STRING_INLINE(arg) = (
IS_STRING
(%IS_VAR(arg)) ? arg : NonStringToString(arg));
json.js
153
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)) {
array.js
83
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)) {
[
all
...]
string.js
49
if (!
IS_STRING
(this) && !IS_STRING_WRAPPER(this))
57
if (!
IS_STRING
(this) && !IS_STRING_WRAPPER(this))
471
if (
IS_STRING
(re)) {
date.js
414
} else if (
IS_STRING
(year)) {
438
value =
IS_STRING
(time) ? DateParse(time) : TimeClip(ToNumber(time));
v8natives.js
132
if (!
IS_STRING
(x)) return x;
[
all
...]
debug-debugger.js
[
all
...]
messages.js
107
if (!constructorName || !
IS_STRING
(constructorName)) {
[
all
...]
mirror-debugger.js
79
} else if (
IS_STRING
(value)) {
[
all
...]
Completed in 2405 milliseconds