Searched defs:isWhitespace (Results 1 - 25 of 49) sorted by relevance

12

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
H A DTokenTypes.java10 public static boolean isWhitespace(int kind) { method in class:TokenTypes
11 return getCategory(kind).isWhitespace();
H A DJavaToken.java117 } else if (TokenTypes.isWhitespace(kind)) {
208 return isWhitespace() || this == COMMENT;
211 public boolean isWhitespace() { method in class:JavaToken.Category
/external/clang/lib/AST/
H A DCommentBriefParser.cpp18 inline bool isWhitespace(char C) { function in namespace:clang::comments::__anon1426
31 if (isWhitespace(C)) {
48 bool isWhitespace(StringRef Text) { function in namespace:clang::comments::__anon1426
51 if (!isWhitespace(*I))
119 if (isWhitespace(Tok.getText()))
132 if (InFirstParagraph && !isWhitespace(FirstParagraphOrBrief))
H A DCommentLexer.cpp213 if (!isWhitespace(*BufferPtr))
219 bool isWhitespace(const char *BufferPtr, const char *BufferEnd) { function in namespace:clang::comments::__anon1428
506 if (isWhitespace(BufferPtr, TextEnd)) {
H A DCommentParser.cpp20 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/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java248 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 DHTTP.java97 public static boolean isWhitespace(char ch) { method in class:HTTP
/external/caliper/examples/src/main/java/examples/
H A DCharacterBenchmark.java248 @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 DCharInfo.h88 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 DFastStringBuffer.java824 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 Dread.c50 static UBool isWhitespace (UChar32 c);
282 if (isWhitespace(c)) {
338 if (skipwhite && isWhitespace(c)) {
447 static UBool isWhitespace(UChar32 c) { function
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java868 public boolean isWhitespace(int nodeHandle) method in class:DOM2DTM
887 boolean b = buf.isWhitespace(0, buf.length());
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
H A DXmlResourceParserImpl.java187 public boolean isWhitespace(String text) method in class:XmlResourceParserImpl
196 public boolean isWhitespace() method in class:XmlResourceParserImpl
200 return isWhitespace(getText());
494 if (isWhitespace(node.getNodeValue())) {
583 if (eventType == TEXT && isWhitespace()) { // skip whitespace
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java1323 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/deqp/external/openglcts/modules/common/
H A DglcShaderLibrary.cpp60 DE_INLINE deBool isWhitespace(char c) function in namespace:deqp::sl
258 for (int ndx = 0; isWhitespace(source[ndx]) && ndx < (int)source.length(); ndx++)
351 while (isWhitespace(*m_curPtr))
/external/clang/include/clang/AST/
H A DComment.h289 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 DgluShaderLibrary.cpp240 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 DCommandLine.cpp682 static bool isWhitespace(char C) { return strchr(" \t\n\r\f\v", C); } function
693 while (I != E && isWhitespace(Src[I])) {
726 if (isWhitespace(Src[I])) {
795 if (isWhitespace(Src[I])) {
819 if (isWhitespace(Src[I])) {
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DCommandLine.cpp701 static bool isWhitespace(char C) { return strchr(" \t\n\r\f\v", C); } function
712 while (I != E && isWhitespace(Src[I])) {
745 if (isWhitespace(Src[I])) {
814 if (isWhitespace(Src[I])) {
838 if (isWhitespace(Src[I])) {
/external/vogar/lib/
H A Dkxml-libcore-20110123.jarorg/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 DUCharacter.java136 * <li> isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
3463 * java.lang.Character.isWhitespace(), but it may not return
3467 * to a Format Control (Cf). Since then, isWhitespace(0x200b) returns false.
3472 public static boolean isWhitespace(int ch) method in class:UCharacter
4975 * UCharacter.isWhitespace(ch)!
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUCharacter.java150 * <li> isWhitespace: Java isWhitespace; Z + whitespace ISO controls but excluding no-break spaces
4029 * java.lang.Character.isWhitespace(), but it may not return
4033 * to a Format Control (Cf). Since then, isWhitespace(0x200b) returns false.
4039 public static boolean isWhitespace(int ch) method in class:UCharacter
5598 * UCharacter.isWhitespace(ch)!
/external/v8/benchmarks/
H A Dearley-boyer.js2211 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 Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/robolectric/v3/
H A Drobolectric-resources-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/shadows/ org/robolectric/manifest/ org/ ...

Completed in 780 milliseconds

12