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

1 2 3

  /sdk/emulator/opengl/host/tools/emugen/
strUtils.h 22 #define WHITESPACE " \t\n"
  /external/e2fsprogs/lib/ss/
parse.c 24 enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
30 * Parses line, dividing at whitespace, into tokens, returns
61 parse_mode = WHITESPACE; /* flushing whitespace */
69 while (parse_mode == WHITESPACE) {
105 parse_mode = WHITESPACE;
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
tokens.py 26 WHITESPACE = 'whitespace'
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
tokens.py 26 WHITESPACE = 'whitespace'
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 25 /** marker for accepted whitespace bytes */
26 private static final byte WHITESPACE = -2;
64 ascii[0x09] = WHITESPACE;
65 ascii[0x0A] = WHITESPACE;
66 ascii[0x0D] = WHITESPACE;
67 ascii[0x20] = WHITESPACE;
  /external/chromium_org/third_party/simplejson/
decoder.py 177 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
182 _w=WHITESPACE.match, _ws=WHITESPACE_STR):
276 def JSONArray((s, end), scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
401 def decode(self, s, _w=WHITESPACE.match):
412 def raw_decode(self, s, idx=0, _w=WHITESPACE.match):
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 37 static const char* WHITESPACE = " \t\r";
101 mTokenizer->skipDelimiters(WHITESPACE);
148 mTokenizer->skipDelimiters(WHITESPACE);
151 mTokenizer->skipDelimiters(WHITESPACE);
KeyLayoutMap.cpp 42 static const char* WHITESPACE = " \t\r";
205 mTokenizer->skipDelimiters(WHITESPACE);
208 String8 keywordToken = mTokenizer->nextToken(WHITESPACE);
210 mTokenizer->skipDelimiters(WHITESPACE);
214 mTokenizer->skipDelimiters(WHITESPACE);
218 mTokenizer->skipDelimiters(WHITESPACE);
227 mTokenizer->skipDelimiters(WHITESPACE);
242 String8 codeToken = mTokenizer->nextToken(WHITESPACE);
246 mTokenizer->skipDelimiters(WHITESPACE);
247 codeToken = mTokenizer->nextToken(WHITESPACE);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
150 object_pairs_hook, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
237 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
360 def decode(self, s, _w=WHITESPACE.match):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
150 object_pairs_hook, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
237 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
360 def decode(self, s, _w=WHITESPACE.match):
  /external/doclava/src/com/google/doclava/
Proofread.java 28 static final Pattern WHITESPACE = Pattern.compile("\\r?\\n");
68 Matcher m = WHITESPACE.matcher(s);
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 45 * String trimmed = {@link #WHITESPACE WHITESPACE}.{@link #trimFrom trimFrom}(userInput);
65 * Determines whether a character is whitespace according to the latest Unicode standard, as
70 * definitions of "whitespace"</a>.)
75 public static final CharMatcher WHITESPACE =
81 * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
82 * interpreted as a break between words for formatting purposes). See {@link #WHITESPACE} for a
    [all...]
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 214 private static final String WHITESPACE = " \t";
432 if (WHITESPACE.indexOf(input.charAt(pos)) == -1) {
462 String ntrim = name.trim(); // erase leading and trailing whitespace
481 // whitespace
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
CharMatcher.java 58 * Determines whether a character is whitespace according to the latest
62 * of several definitions of "whitespace" at
68 public static final CharMatcher WHITESPACE =
73 * Determines whether a character is a breaking whitespace (that is,
74 * a whitespace which can be interpreted as a break between words
75 * for formatting purposes). See {@link #WHITESPACE} for a discussion
110 * Determines whether a character is whitespace according to {@link
112 * to use {@link #WHITESPACE}. See a comparison of several definitions of
113 * "whitespace" at <a href="http://go/white+space">go/white+space</a>.
228 * Determines whether a character is whitespace according to an arbitrary definition used b
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 58 * Determines whether a character is whitespace according to the latest
62 * of several definitions of "whitespace" at
68 public static final CharMatcher WHITESPACE =
73 * Determines whether a character is a breaking whitespace (that is,
74 * a whitespace which can be interpreted as a break between words
75 * for formatting purposes). See {@link #WHITESPACE} for a discussion
110 * Determines whether a character is whitespace according to {@link
112 * to use {@link #WHITESPACE}. See a comparison of several definitions of
113 * "whitespace" at <a href="http://go/white+space">go/white+space</a>.
228 * Determines whether a character is whitespace according to an arbitrary definition used b
    [all...]
  /system/core/libutils/
PropertyMap.cpp 34 static const char* WHITESPACE = " \t\r";
170 mTokenizer->skipDelimiters(WHITESPACE);
179 mTokenizer->skipDelimiters(WHITESPACE);
187 mTokenizer->skipDelimiters(WHITESPACE);
189 String8 valueToken = mTokenizer->nextToken(WHITESPACE);
196 mTokenizer->skipDelimiters(WHITESPACE);
  /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
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascripttokenizer.py 166 WHITESPACE = re.compile(r'\s+')
175 (?=\s* # optional whitespace
181 # beginning of the line, after whitespace, or after a '{'. The look-behind
184 # To properly parse parameter names, we need to tokenize whitespace into a
264 # Find key words and whitespace.
266 Matcher(WHITESPACE, Type.WHITESPACE),
300 Matcher(WHITESPACE, Type.COMMENT),
315 Matcher(WHITESPACE, Type.WHITESPACE),
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
javascripttokenizer.py 166 WHITESPACE = re.compile(r'\s+')
175 (?=\s* # optional whitespace
181 # beginning of the line, after whitespace, or after a '{'. The look-behind
184 # To properly parse parameter names, we need to tokenize whitespace into a
264 # Find key words and whitespace.
266 Matcher(WHITESPACE, Type.WHITESPACE),
300 Matcher(WHITESPACE, Type.COMMENT),
315 Matcher(WHITESPACE, Type.WHITESPACE),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 28 WHITESPACE = set(" \t\n\r\v\f")
403 # skip whitespace and comments
404 if this in WHITESPACE:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 28 WHITESPACE = set(" \t\n\r\v\f")
403 # skip whitespace and comments
404 if this in WHITESPACE:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 39 200 whitespace
116 WHITESPACE = ' \t'
168 JCR: Trailing whitespace is superfluous.
178 return len(stripped), "W291 trailing whitespace"
263 Avoid extraneous whitespace in the following situations:
285 return found + 1, "E201 whitespace after '%s'" % char
289 return found, "E202 whitespace before '%s'" % char
293 return found, "E203 whitespace before '%s'" % char
298 JCR: Each comma, semicolon or colon should be followed by whitespace.
312 if char in ',;:' and line[index + 1] not in WHITESPACE
    [all...]
  /external/smack/src/org/xbill/DNS/
Tokenizer.java 43 /** Whitespace; only returned when wantWhitespace is set */
44 public static final int WHITESPACE = 2;
100 case WHITESPACE:
101 return "<whitespace>";
226 * @param wantWhitespace If true, leading whitespace will be returned as a
240 if (current.type == WHITESPACE) {
254 return current.set(WHITESPACE, null);
339 * Gets the next token from a tokenizer, ignoring whitespace and comments.
  /frameworks/base/tools/aidl/
aidl_language.h 10 WHITESPACE
129 // strips off the leading whitespace, the "import" text
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 47 public static final int WHITESPACE = END + 1;

Completed in 655 milliseconds

1 2 3