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

1 2

  /cts/libs/vogar-expect/src/vogar/
ResultValue.java 24 IGNORE,
Outcome.java 140 return ResultValue.IGNORE;
  /external/valgrind/unittest/
run_output_tests.sh 13 IGNORE=
14 if [ -f output_tests/${TEST}.ignore ]; then
15 IGNORE=--ignore=output_tests/${TEST}.ignore
18 CMD="$TSAN $SUPP $IGNORE -- ./${BIN}output_tests/${TEST}-${BUILD}${EXE} 2>&1 | python match_output.py output_tests/${TEST}.tmpl"
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CodingErrorActionTest.java 46 assertNotNull(CodingErrorAction.IGNORE);
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE);
50 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPORT);
58 assertTrue(CodingErrorAction.IGNORE.toString().indexOf("IGNORE") != -1);
CharsetEncoderTest.java 93 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE));
95 .onUnmappableCharacter(CodingErrorAction.IGNORE));
119 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE));
121 .onUnmappableCharacter(CodingErrorAction.IGNORE));
549 .println("Don't support GBK encoding, ignore current test");
633 encoder.onMalformedInput(CodingErrorAction.IGNORE);
658 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
834 encoder.onMalformedInput(CodingErrorAction.IGNORE);
863 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
952 encoder.onMalformedInput(CodingErrorAction.IGNORE);
    [all...]
CharsetDecoderTest.java 154 decoder.onMalformedInput(CodingErrorAction.IGNORE);
155 assertSame(CodingErrorAction.IGNORE, decoder.malformedInputAction());
169 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
170 assertSame(CodingErrorAction.IGNORE, decoder
254 decoder.onMalformedInput(CodingErrorAction.IGNORE);
278 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
420 decoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
473 decoder.onMalformedInput(CodingErrorAction.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
350 // If the action is IGNORE or REPLACE, we should continue decoding.
357 if (action != CodingErrorAction.IGNORE)
CharsetEncoder.java 58 * {@link CodingErrorAction#IGNORE ignore} the error or {@link CodingErrorAction#REPLACE replace}
441 // If the action is IGNORE or REPLACE, we should continue
449 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/src/
win32-headers.h 93 #undef IGNORE
lithium.cc 73 case LUnallocated::IGNORE:
lithium.h 92 IGNORE
149 bool HasIgnorePolicy() const { return policy() == IGNORE; }
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 221 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
248 mode = IGNORE; // Ignore whitespace on the next line
285 mode = IGNORE; // Ignore whitespace on the next line
313 mode = IGNORE;
315 if (buffer.length() == 0 || mode == IGNORE) {
323 if (mode == IGNORE || mode == CONTINUE) {
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 315 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
342 mode = IGNORE; // Ignore whitespace on the next line
379 mode = IGNORE; // Ignore whitespace on the next line
407 mode = IGNORE;
409 if (buffer.length() == 0 || mode == IGNORE) {
417 if (mode == IGNORE || mode == CONTINUE) {
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 48 } else if (action == CodingErrorAction.IGNORE) {
  /libcore/luni/src/main/java/java/util/
Properties.java 87 KEY_DONE = 4, IGNORE = 5;
323 mode = IGNORE; // Ignore whitespace on the next line
365 mode = IGNORE; // Ignore whitespace on the next line
400 mode = IGNORE;
403 if (offset == 0 || offset == keyLength || mode == IGNORE) {
411 if (mode == IGNORE || mode == CONTINUE) {
  /external/elfutils/libebl/
eblcorenote.c 77 NEW_AT (IGNORE);
  /development/build/tools/
mk_sources_zip.py 39 # IGNORE is a list of namespaces to ignore. Must be java
41 self.IGNORE = [ "sun.", "libcore.", "dalvik.",
133 # Should we ignore this package?
134 for ignore in p.IGNORE:
135 if pkg.startswith(ignore):
136 verbose("Ignore package %s [%s]", pkg, filepath)
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetEncoderTest.java 90 testCharsetEncoderSurrogatesBrokenByDesign_RI(CodingErrorAction.IGNORE);
106 // IGNORE just ignores both characters, REPORT complains that the second is
146 testCharsetEncoderSurrogatesBrokenByDesign(CodingErrorAction.IGNORE);
  /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...]
  /external/v8/test/cctest/
test-parsing.cc 53 #define IGNORE(t, s, d) /* */
54 TOKEN_LIST(IGNORE, KEYWORD, IGNORE)
61 TOKEN_LIST(IGNORE, IGNORE, FUTURE)
63 #undef IGNORE
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.c 529 SM_STATE(BE_AUTH, IGNORE)
531 SM_ENTRY_MA(BE_AUTH, IGNORE, be_auth);
558 SM_ENTER(BE_AUTH, IGNORE);

Completed in 2655 milliseconds

1 2