HomeSort by relevance Sort by last modified time
    Searched refs:IGNORE (Results 1 - 25 of 35) sorted by null

1 2

  /cts/libs/vogar-expect/src/vogar/
ResultValue.java 24 IGNORE,
Outcome.java 140 return ResultValue.IGNORE;
  /external/chromium/base/allocator/
prep_libc.sh 37 LIB /NOLOGO /IGNORE:4006,4014,4221 /REMOVE:${LIBCMTSRCPATHVS2005}${FILE} $OUTCMT
38 LIB /NOLOGO /IGNORE:4006,4014,4221 /REMOVE:${LIBCMTSRCPATHVS2008}${FILE} $OUTCMT
  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 21 * errors. Currently three actions are defined: {@code IGNORE}, {@code REPLACE}
27 * Denotes the action to ignore any errors.
29 public static final CodingErrorAction IGNORE = new CodingErrorAction(
30 "IGNORE");
CharsetDecoder.java 62 * alternatives are to ignore it or to replace the erroneous input with the
375 // If the action is IGNORE or REPLACE, we should continue decoding.
382 if (action != CodingErrorAction.IGNORE)
CharsetEncoder.java 59 * {@link CodingErrorAction#IGNORE ignore} the error or {@link CodingErrorAction#REPLACE replace}
452 // If the action is IGNORE or REPLACE, we should continue
460 if (action != CodingErrorAction.IGNORE) {
  /external/elfutils/src/
ldlex.l 77 %x IGNORE
89 BEGIN (IGNORE); }
92 BEGIN (IGNORE); }
95 <IGNORE>^"#"ifdef/[[:space:]\n] { eat_to_eol (false);
97 <IGNORE>^"#"else/[[:space:]\n] { eat_to_eol (true);
106 <IGNORE>^"#"elifdef/[[:space:]] { assert (prepdepth > 0);
114 <IGNORE>^"#"endif/[[:space:]\n] { eat_to_eol (true);
116 <IGNORE>.|\n { /* nothing */ }
184 {WHITE} { /* IGNORE */ }
276 return prepdepth == 0 ? INITIAL : IGNORE;
    [all...]
ldlex.c     [all...]
  /external/v8/test/cctest/
test-parsing.cc 48 #define IGNORE(t, s, d) /* */
49 TOKEN_LIST(IGNORE, KEYWORD, IGNORE)
56 TOKEN_LIST(IGNORE, IGNORE, FUTURE)
58 #undef IGNORE
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 364 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
391 mode = IGNORE; // Ignore whitespace on the next line
428 mode = IGNORE; // Ignore whitespace on the next line
456 mode = IGNORE;
458 if (buffer.length() == 0 || mode == IGNORE) {
466 if (mode == IGNORE || mode == CONTINUE) {
  /libcore/luni/src/main/java/com/ibm/icu4jni/charset/
NativeConverter.java 119 } else if (action == CodingErrorAction.IGNORE) {
  /libcore/luni/src/main/java/java/util/
Properties.java 82 KEY_DONE = 4, IGNORE = 5;
341 mode = IGNORE; // Ignore whitespace on the next line
383 mode = IGNORE; // Ignore whitespace on the next line
418 mode = IGNORE;
421 if (offset == 0 || offset == keyLength || mode == IGNORE) {
429 if (mode == IGNORE || mode == CONTINUE) {
  /external/elfutils/libebl/
eblcorenote.c 77 NEW_AT (IGNORE);
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
AbstractCharsetDecoderTestCase.java 145 decoder.onMalformedInput(CodingErrorAction.IGNORE);
146 assertSame(CodingErrorAction.IGNORE, decoder.malformedInputAction());
172 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
173 assertSame(CodingErrorAction.IGNORE, decoder
273 decoder.onMalformedInput(CodingErrorAction.IGNORE);
297 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
439 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
468 decoder.onMalformedInput(CodingErrorAction.IGNORE);
AbstractCharsetEncoderTestCase.java 609 encoder.onMalformedInput(CodingErrorAction.IGNORE);
634 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
825 encoder.onMalformedInput(CodingErrorAction.IGNORE);
854 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
    [all...]
  /external/chromium/third_party/icu/source/common/
ucnv_io.c 354 IGNORE,
372 #define GET_ASCII_TYPE(c) ((int8_t)(c) >= 0 ? asciiTypes[(uint8_t)c] : (uint8_t)IGNORE)
386 #define GET_EBCDIC_TYPE(c) ((int8_t)(c) < 0 ? ebcdicTypes[(c)&0x7f] : (uint8_t)IGNORE)
407 case IGNORE:
409 continue; /* ignore all but letters and digits */
414 continue; /* ignore leading zero before another digit */
442 case IGNORE:
444 continue; /* ignore all but letters and digits */
449 continue; /* ignore leading zero before another digit */
499 case IGNORE
    [all...]
  /external/icu4c/common/
ucnv_io.c 354 IGNORE,
372 #define GET_ASCII_TYPE(c) ((int8_t)(c) >= 0 ? asciiTypes[(uint8_t)c] : (uint8_t)IGNORE)
386 #define GET_EBCDIC_TYPE(c) ((int8_t)(c) < 0 ? ebcdicTypes[(c)&0x7f] : (uint8_t)IGNORE)
407 case IGNORE:
409 continue; /* ignore all but letters and digits */
414 continue; /* ignore leading zero before another digit */
442 case IGNORE:
444 continue; /* ignore all but letters and digits */
449 continue; /* ignore leading zero before another digit */
499 case IGNORE
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
InputStreamReaderTest.java 395 decoder2.onMalformedInput(CodingErrorAction.IGNORE);
  /libcore/luni/src/test/java/tests/api/java/io/
InputStreamReaderTest.java 197 decoder2.onMalformedInput(CodingErrorAction.IGNORE);
  /external/v8/src/
jsregexp.cc 883 // to its previous state (or not, if it's safe to ignore it).
884 enum DeferredActionUndoType { IGNORE, RESTORE, CLEAR };
885 DeferredActionUndoType undo_action = IGNORE;
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]
  /prebuilt/common/ant/
ant.jar 
  /external/libxml2/
parser.c 401 "conditional section INCLUDE or IGNORE keyword expected\n";
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 

Completed in 1644 milliseconds

1 2