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

1 2

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
incpath.h 36 enum { QUOTE = 0, BRACKET, SYSTEM, AFTER };
  /external/nist-sip/java/gov/nist/core/
Separators.java 57 public static final String QUOTE = "\'";
GenericObjectList.java 88 protected static final String QUOTE = Separators.QUOTE;
GenericObject.java 69 protected static final String QUOTE = Separators.QUOTE;
LexerCore.java 51 public static final int QUOTE = (int) '\'';
523 * closing quote.
533 // Got to the terminating quote.
  /external/chromium_org/chrome/test/perf/
memory_test.cc 508 #define QUOTE(x) #x
514 RunTest(QUOTE(_##tabs##t), tabs); \
519 RunTest(QUOTE(_##tabs##t), tabs); \
522 RunTest(QUOTE(_##tabs##t_ref), tabs); \
  /external/chromium_org/third_party/icu/source/tools/genrb/
read.c 26 #define QUOTE 0x0022
107 not a whitespace character (but may be a QUOTE or ESCAPE). This
148 if (c == QUOTE) {
172 if (c == QUOTE && !isFollowingCharEscaped) {
269 if (c == QUOTE
parse.c 49 #define QUOTE 0x0027
354 if(c == QUOTE) {
    [all...]
  /external/icu4c/tools/genrb/
read.c 27 #define QUOTE 0x0022
109 not a whitespace character (but may be a QUOTE or ESCAPE). This
150 if (c == QUOTE) {
174 if (c == QUOTE && !isFollowingCharEscaped) {
271 if (c == QUOTE
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimify.py 27 QUOTE = '> ' # string replies are quoted with
128 if ifile.boundary and ifile.boundary[:2] == QUOTE:
129 prefix = QUOTE
174 ## if is_repl and len(line) >= 4 and line[:4] == QUOTE+'--' and line[-3:] != '--\n':
197 if newline[:len(QUOTE)] == QUOTE:
198 newline = newline[len(QUOTE):]
225 mime_char = re.compile('[=\177-\377]') # quote these chars in body
226 mime_header_char = re.compile('[=?\177-\377]') # quote these in header
230 If header is set, quote some extra characters.""
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
dtitv_impl.h 26 #define QUOTE ((UChar)0x0027)
rbnf.cpp 285 QUOTE = 0x0022,
337 QUOTE, 0
345 SPACE, COMMA, CLOSE_ANGLE, OPEN_ANGLE, TICK, QUOTE, 0
495 UBool haveQuote = c == QUOTE || c == TICK;
498 terminators = c == QUOTE ? DQUOTE_STOPLIST : SQUOTE_STOPLIST;
516 ERROR("Missing matching quote");
521 } else if (x == OPEN_ANGLE || x == TICK || x == QUOTE) {
    [all...]
rbt_pars.cpp 48 #define QUOTE ((UChar)0x0027) /*'*/
451 if (c == QUOTE) {
452 int32_t iq = rule.indexOf(QUOTE, pos);
461 * reaches the final quote it breaks.
472 if (pos < limit && rule.charAt(pos) == QUOTE) {
474 iq = rule.indexOf(QUOTE, pos+1);
649 // The */+ follows an isolated character or quote
    [all...]
  /external/icu4c/i18n/
dtitv_impl.h 26 #define QUOTE ((UChar)0x0027)
rbnf.cpp 283 QUOTE = 0x0022,
335 QUOTE, 0
343 SPACE, COMMA, CLOSE_ANGLE, OPEN_ANGLE, TICK, QUOTE, 0
493 UBool haveQuote = c == QUOTE || c == TICK;
496 terminators = c == QUOTE ? DQUOTE_STOPLIST : SQUOTE_STOPLIST;
514 ERROR("Missing matching quote");
519 } else if (x == OPEN_ANGLE || x == TICK || x == QUOTE) {
    [all...]
rbt_pars.cpp 50 #define QUOTE ((UChar)0x0027) /*'*/
457 if (c == QUOTE) {
458 int32_t iq = rule.indexOf(QUOTE, pos);
467 * reaches the final quote it breaks.
478 if (pos < limit && rule.charAt(pos) == QUOTE) {
480 iq = rule.indexOf(QUOTE, pos+1);
655 // The */+ follows an isolated character or quote
    [all...]
  /frameworks/base/core/java/com/android/internal/http/multipart/
Part.java 82 protected static final String QUOTE = "\"";
86 EncodingUtils.getAsciiBytes(QUOTE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CsvUtils.java 62 private static final char QUOTE = '"';
129 final boolean isQuoted = (length - fromIndex > 0 && text.charAt(fromIndex) == QUOTE);
135 if (c == QUOTE) {
137 if (nextIndex < length && text.charAt(nextIndex) == QUOTE) {
138 // Quoted quote.
142 // Closing quote.
152 * one QUOTE.
154 * @param text the CSV field text that may have enclosing QUOTEs and escaped QUOTE character.
156 * into one QUOTE.
162 final boolean isQuoted = (length > 0 && text.charAt(0) == QUOTE);
    [all...]
  /frameworks/base/core/java/android/text/format/
DateFormat.java 65 public static final char QUOTE = '\'';
385 if (c == QUOTE) {
396 if (i + 1 < len && s.charAt(i + 1) == QUOTE) {
401 // skip leading quote
407 if (c == QUOTE) {
409 // QUOTEQUOTE -> QUOTE
410 if (i + 1 < len && s.charAt(i + 1) == QUOTE) {
443 if (c == QUOTE) {
588 if (i + 1 < len && s.charAt(i + 1) == QUOTE) {
595 // delete leading quote
    [all...]
  /external/openssh/
misc.c 159 #define QUOTE "\""
173 *s = strpbrk(*s, WHITESPACE QUOTE "=");
179 /* Find matching quote */
180 if ((*s = strpbrk(*s, QUOTE)) == NULL) {
181 return (NULL); /* no matching quote */
  /external/openssh/openbsd-compat/
glob.c 87 #define QUOTE '\\'
200 if (c == QUOTE) {
202 c = QUOTE;

Completed in 2027 milliseconds

1 2