/external/clang/lib/AST/ |
H A D | CommentBriefParser.cpp | 18 inline bool isWhitespace(char C) { function in namespace:clang::comments::__anon1137 31 if (isWhitespace(C)) { 48 bool isWhitespace(StringRef Text) { function in namespace:clang::comments::__anon1137 51 if (!isWhitespace(*I)) 119 if (isWhitespace(Tok.getText())) 132 if (InFirstParagraph && !isWhitespace(FirstParagraphOrBrief))
|
H A D | CommentLexer.cpp | 204 if (!isWhitespace(*BufferPtr)) 210 bool isWhitespace(const char *BufferPtr, const char *BufferEnd) { function in namespace:clang::comments::__anon1139 498 if (isWhitespace(BufferPtr, TextEnd)) {
|
H A D | CommentParser.cpp | 20 static inline bool isWhitespace(llvm::StringRef S) { function in namespace:clang 22 if (!isWhitespace(*I)) 124 if (isWhitespace(peek())) 166 if (!isWhitespace(C)) { 608 if (Tok.is(tok::text) && isWhitespace(Tok.getText())) {
|
/external/skia/src/xml/ |
H A D | SkXMLPullParser.cpp | 107 bool SkXMLPullParser::isWhitespace() function in class:SkXMLPullParser
|
/external/apache-http/src/org/apache/http/message/ |
H A D | BasicTokenIterator.java | 248 if (isTokenSeparator(ch) || isWhitespace(ch)) { 303 } else if (isWhitespace(ch)) { 374 protected boolean isWhitespace(char ch) { method in class:BasicTokenIterator
|
/external/apache-http/src/org/apache/http/protocol/ |
H A D | HTTP.java | 97 public static boolean isWhitespace(char ch) { method in class:HTTP
|
/external/caliper/examples/src/main/java/examples/ |
H A D | CharacterBenchmark.java | 248 @Benchmark void isWhitespace(int reps) { method in class:CharacterBenchmark 252 Character.isWhitespace(chars[ch]); 258 Character.isWhitespace((int) chars[ch]);
|
/external/clang/include/clang/Basic/ |
H A D | CharInfo.h | 88 LLVM_READONLY static inline bool isWhitespace(unsigned char c) { function in namespace:clang
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | FastStringBuffer.java | 824 public boolean isWhitespace(int start, int length) method in class:FastStringBuffer 837 chunkOK = m_innerFSB.isWhitespace(sourcecolumn, runlength);
|
/external/icu/icu4c/source/tools/genrb/ |
H A D | read.c | 48 static UBool isWhitespace (UChar32 c); 280 if (isWhitespace(c)) { 336 if (skipwhite && isWhitespace(c)) { 445 static UBool isWhitespace(UChar32 c) { function
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
H A D | DOM2DTM.java | 868 public boolean isWhitespace(int nodeHandle) method in class:DOM2DTM 887 boolean b = buf.isWhitespace(0, buf.length());
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
H A D | SAX2DTM.java | 1323 public boolean isWhitespace(int nodeHandle) method in class:SAX2DTM 1338 return m_chars.isWhitespace(offset, length); 1523 doStrip = m_chars.isWhitespace(m_textPendingStart, length);
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/ |
H A D | tokenizer.js | 96 function isWhitespace(cp) { function 409 if (isWhitespace(cp)) 508 if (this.disableEntitiesDecoding || isWhitespace(startCp) || startCp === $.GREATER_THAN_SIGN || 727 if (isWhitespace(cp)) 805 if (isWhitespace(cp)) { 883 if (isWhitespace(cp)) { 967 if (isWhitespace(cp)) { 1164 if (isWhitespace(cp)) { 1192 if (isWhitespace(cp) || cp === $.SOLIDUS || cp === $.GREATER_THAN_SIGN) { 1312 if (isWhitespace(c [all...] |
/external/clang/include/clang/AST/ |
H A D | Comment.h | 289 bool isWhitespace() const { function in class:clang::comments::TextComment 586 bool isWhitespace() const { function in class:clang::comments::ParagraphComment 700 return Paragraph && !Paragraph->isWhitespace();
|
/external/deqp/framework/opengl/ |
H A D | gluShaderLibrary.cpp | 240 DE_INLINE deBool isWhitespace (char c) function in namespace:glu::sl 496 for (int ndx = 0; ndx < (int)source.length() && isWhitespace(source[ndx]); ndx++) 580 while (isWhitespace(*m_curPtr))
|
/external/llvm/lib/Support/ |
H A D | CommandLine.cpp | 517 static bool isWhitespace(char C) { return strchr(" \t\n\r\f\v", C); } function 530 while (I != E && isWhitespace(Src[I])) { 564 if (isWhitespace(Src[I])) { 633 if (isWhitespace(Src[I])) { 657 if (isWhitespace(Src[I])) {
|
/external/vogar/lib/ |
H A D | kxml-libcore-20110123.jar | org/kxml2/ org/kxml2/kdom/ org/kxml2/kdom/Element.class Element.java package org.kxml2. ... |
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
H A D | UCharacter.java | 141 * <li> isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces 3258 * java.lang.Character.isWhitespace(), but it may not return 3262 * to a Format Control (Cf). Since then, isWhitespace(0x200b) returns false. 3267 public static boolean isWhitespace(int ch) method in class:UCharacter 5084 * UCharacter.isWhitespace(ch)!
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
H A D | UCharacter.java | 147 * <li> isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces 3828 * java.lang.Character.isWhitespace(), but it may not return 3832 * to a Format Control (Cf). Since then, isWhitespace(0x200b) returns false. 3838 public static boolean isWhitespace(int ch) method in class:UCharacter 5711 * UCharacter.isWhitespace(ch)!
|
/external/v8/benchmarks/ |
H A D | earley-boyer.js | 2211 function isWhitespace(c) { 2215 return isWhitespace(c) || c === SC_EOF_OBJECT; 2288 while (isWhitespace(port.peekChar())) 2304 if (isWhitespace(port.peekChar())) 2312 if (isWhitespace(c)) 2369 else if (isWhitespace(c) || needing == "")
|
/external/robolectric/v1/lib/main/ |
H A D | xpp3-1.1.4c.jar | META-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ... |
H A D | httpcore-4.0.1.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ... |
/external/robolectric/v3/ |
H A D | robolectric-resources-3.1-SNAPSHOT.jar | META-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/shadows/ org/robolectric/manifest/ org/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |