Searched refs:isString (Results 1 - 25 of 107) sorted by relevance

12345

/external/chromium_org/gin/test/
H A Dfile_unittests.js10 function isString(x) {
15 expect(isString(rootDir)).toBeTruthy();
27 expect(isString(owners)).toBeTruthy();
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteCardinalityException.js11 if ( org.antlr.lang.isString(this.elementDescription) ) {
H A DCommonTreeNodeStream.js378 if ( !org.antlr.lang.isString(text) ) {
387 if ( !org.antlr.lang.isString(text) ) {
/external/clang/unittests/ASTMatchers/Dynamic/
H A DVariantValueTest.cpp30 EXPECT_FALSE(Value.isString());
38 EXPECT_TRUE(Value.isString());
52 EXPECT_FALSE(Value.isString());
78 EXPECT_TRUE(Value.isString());
88 EXPECT_FALSE(Value.isString());
99 EXPECT_FALSE(Value.isString());
104 EXPECT_FALSE(Value.isString());
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dusetiter.h51 * if (it.isString()) {
138 inline UBool isString() const;
141 * Returns the current code point, if <tt>isString()</tt> returned
149 * <tt>isString()</tt> returned false and <tt>nextRange()</tt> was
156 * Returns the current string, if <tt>isString()</tt> returned
174 * If <tt>isString() == TRUE</tt>, the value is a
195 * false. If <tt>isString() == TRUE</tt>, the value is a
203 * is undefined unless <tt>isString() == TRUE</tt>. Do not mix calls to
303 inline UBool UnicodeSetIterator::isString() const { function in class:UnicodeSetIterator
/external/icu/icu4c/source/common/unicode/
H A Dusetiter.h51 * if (it.isString()) {
138 inline UBool isString() const;
141 * Returns the current code point, if <tt>isString()</tt> returned
149 * <tt>isString()</tt> returned false and <tt>nextRange()</tt> was
156 * Returns the current string, if <tt>isString()</tt> returned
174 * If <tt>isString() == TRUE</tt>, the value is a
195 * false. If <tt>isString() == TRUE</tt>, the value is a
203 * is undefined unless <tt>isString() == TRUE</tt>. Do not mix calls to
303 inline UBool UnicodeSetIterator::isString() const { function in class:UnicodeSetIterator
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DNPV8Object.h66 bool isString; member in struct:blink::PrivateIdentifier
H A Dnpruntime.cpp178 identifier->isString = true;
207 id->isString = false;
221 identifier->isString = false;
230 return privateIdentifier->isString;
236 if (!privateIdentifier->isString || !privateIdentifier->value.string)
245 if (privateIdentifier->isString)
/external/chromium_org/third_party/markdown/
H A Dtreeprocessors.py48 def isString(s): function
213 if not isString(node): # it's Element
269 if not isString(node):
273 if not isString(node):
336 if element.text and isString(element.text):
344 if newChild.tail and isString(newChild.tail):
348 if newChild.text and isString(newChild.text):
/external/chromium_org/v8/test/mjsunit/
H A Dmirror-string.js45 assertTrue(mirror.isString());
/external/markdown/markdown/
H A Dtreeprocessors.py4 def isString(s): function
171 if not isString(node): # it's Element
224 if not isString(node):
228 if not isString(node):
/external/smack/src/org/xbill/DNS/
H A DISDNRecord.java58 if (t.isString()) {
H A DNXTRecord.java62 if (!t.isString())
H A DTokenizer.java115 isString() { method in class:Tokenizer.Token
373 if (!next.isString()) {
565 if (!t.isString())
H A DTXTBase.java66 if (!t.isString())
/external/chromium_org/third_party/webrtc/base/
H A Djson.cc20 if (!in.isString()) {
42 if (!in.isString()) {
62 if (!in.isString()) {
82 if (!in.isString()) {
103 if (!in.isString()) {
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
H A Dtrieset.cpp48 while(iter.nextRange() && !iter.isString()) {
/external/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dtrieset.cpp48 while(iter.nextRange() && !iter.isString()) {
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebBindings.cpp194 void WebBindings::extractIdentifierData(const NPIdentifier& identifier, const NPUTF8*& string, int32_t& number, bool& isString) argument
198 isString = false;
203 isString = data->isString;
204 if (isString)
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DCommonToken.js49 if ( org.antlr.lang.isString(this.text) ) {
H A DDFA.js47 } else if (org.antlr.lang.isString(c)) {
H A DLexer.js127 if (org.antlr.lang.isString(s)) {
192 if ( org.antlr.lang.isString(this.state.text) ) {
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathValue.h87 bool isString() const { return m_type == StringValue; } function in class:blink::XPath::Value
/external/chromium_org/v8/test/webkit/
H A Dtypeof-constant-string.js78 function isString(a) function
83 shouldBeTrue("isString('string')");
84 shouldBeFalse("isString(1)");
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js325 isString: function(o) {
482 return (l.isObject(o) || l.isString(o) || l.isNumber(o) || l.isBoolean(o));

Completed in 6086 milliseconds

12345