HomeSort by relevance Sort by last modified time
    Searched defs:WHITESPACE (Results 1 - 18 of 18) sorted by null

  /external/e2fsprogs/lib/ss/
parse.c 24 enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
30 * Parses line, dividing at whitespace, into tokens, returns
64 parse_mode = WHITESPACE; /* flushing whitespace */
72 while (parse_mode == WHITESPACE) {
104 parse_mode = WHITESPACE;
  /build/tools/droiddoc/src/
Proofread.java 25 static final Pattern WHITESPACE = Pattern.compile("\\r?\\n");
76 Matcher m = WHITESPACE.matcher(s);
  /external/webkit/WebKitTools/simplejson/
decoder.py 116 WHITESPACE = re.compile(r'\s*', FLAGS)
118 def JSONObject(match, context, _w=WHITESPACE.match):
160 def JSONArray(match, context, _w=WHITESPACE.match):
246 def decode(self, s, _w=WHITESPACE.match):
  /external/guava/src/com/google/common/base/
CharMatcher.java 60 * Determines whether a character is whitespace according to the latest
64 * of several definitions of "whitespace" at
70 public static final CharMatcher WHITESPACE =
75 * Determines whether a character is a breaking whitespace (that is,
76 * a whitespace which can be interpreted as a break between words
77 * for formatting purposes). See {@link #WHITESPACE} for a discussion
112 * Determines whether a character is whitespace according to {@link
114 * to use {@link #WHITESPACE}. See a comparison of several definitions of
115 * "whitespace" at <a href="http://go/white+space">go/white+space</a>.
    [all...]
  /cts/tools/dasm/src/dasm/
Scanner.java 86 * Whitespace characters
88 protected static final String WHITESPACE = " \n\t\r";
93 protected static final String SEPARATORS = WHITESPACE + ":=" + ",";
117 * Checks if a character code is a whitespace character
120 return (WHITESPACE.indexOf(c) != -1);
211 // interspersed with whitespace or comments)
219 case ',': // whitespace
  /frameworks/base/tools/aidl/
aidl_language.h 10 WHITESPACE
116 // strips off the leading whitespace, the "import" text
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 246 private static final String WHITESPACE = " \t";
466 if (WHITESPACE.indexOf(input.charAt(pos)) == -1) {
495 String ntrim = name.trim(); // erase leading and trailing whitespace
513 // whitespace
  /external/quake/quake/src/QW/gas2masm/
gas2masm.c 32 typedef enum {NOT_WHITESPACE, WHITESPACE, TOKEN_AVAILABLE, LINE_DONE, FILE_DONE, PARSED_OKAY} tokenstat;
766 tokenstat whitespace (char c) function
775 return WHITESPACE;
793 if ((stat = whitespace (c)) == LINE_DONE)
795 } while (stat == WHITESPACE);
832 if (whitespace (c) == LINE_DONE)
844 if (whitespace (c) == WHITESPACE)
  /external/quake/quake/src/WinQuake/gas2masm/
gas2masm.c 32 typedef enum {NOT_WHITESPACE, WHITESPACE, TOKEN_AVAILABLE, LINE_DONE, FILE_DONE, PARSED_OKAY} tokenstat;
766 tokenstat whitespace (char c) function
775 return WHITESPACE;
793 if ((stat = whitespace (c)) == LINE_DONE)
795 } while (stat == WHITESPACE);
832 if (whitespace (c) == LINE_DONE)
844 if (whitespace (c) == WHITESPACE)
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 47 public static final int WHITESPACE = END + 1;
  /external/chromium/third_party/icu/source/tools/gencnval/
gencnval.c 377 It removes the newlines, comments and trailing whitespace (not preceding whitespace).
407 /* There is no whitespace at the beginning anymore */
471 /* skip whitespace */
569 static const char WHITESPACE[] = " \t";
589 tag = strtok(tag, WHITESPACE);
602 tag = strtok(NULL, WHITESPACE);
    [all...]
  /external/icu4c/tools/gencnval/
gencnval.c 377 It removes the newlines, comments and trailing whitespace (not preceding whitespace).
407 /* There is no whitespace at the beginning anymore */
471 /* skip whitespace */
569 static const char WHITESPACE[] = " \t";
589 tag = strtok(tag, WHITESPACE);
602 tag = strtok(NULL, WHITESPACE);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 173 public static final int WHITESPACE = LexerCore.WHITESPACE;
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 426 private static final Pattern WHITESPACE =
448 this.matcher = WHITESPACE.matcher(text);
494 * Skip over any whitespace so that the matcher region starts at the next
498 matcher.usePattern(WHITESPACE);
    [all...]
  /development/apps/Term/src/com/android/term/
Term.java 267 final int WHITESPACE = 1;
269 int state = WHITESPACE;
279 state = WHITESPACE;
285 } else if (state == WHITESPACE) {
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /cts/tools/dx-tests/lib/
jasmin.jar 
  /dalvik/dx/etc/
jasmin.jar 

Completed in 872 milliseconds