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

1 2 3

  /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");
  /external/elfutils/src/
ldlex.l 94 %x IGNORE
106 BEGIN (IGNORE); }
109 BEGIN (IGNORE); }
112 <IGNORE>^"#"ifdef/[[:space:]\n] { eat_to_eol (false);
114 <IGNORE>^"#"else/[[:space:]\n] { eat_to_eol (true);
123 <IGNORE>^"#"elifdef/[[:space:]] { assert (prepdepth > 0);
131 <IGNORE>^"#"endif/[[:space:]\n] { eat_to_eol (true);
133 <IGNORE>.|\n { /* nothing */ }
202 {WHITE} { /* IGNORE */ }
294 return prepdepth == 0 ? INITIAL : IGNORE;
    [all...]
ldlex.c     [all...]
  /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 305 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
332 mode = IGNORE; // Ignore whitespace on the next line
369 mode = IGNORE; // Ignore whitespace on the next line
397 mode = IGNORE;
399 if (buffer.length() == 0 || mode == IGNORE) {
407 if (mode == IGNORE || mode == CONTINUE) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfigurationTest.java 59 config.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
95 otherConfig.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
104 otherConfig.setSeverity(usuallyDisabledIssue, Severity.IGNORE);
110 config.setSeverity(usuallyDisabledIssue, Severity.IGNORE);
115 otherConfig.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
146 config.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
  /bootable/recovery/
ui.h 80 enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE };
ui.cpp 137 case RecoveryUI::IGNORE:
  /external/v8/src/
win32-headers.h 97 #undef IGNORE
  /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/
eblauxvinfo.c 64 TYPE (IGNORE, "") \
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfiguration.java 86 return Severity.IGNORE;
GlobalLintConfiguration.java 86 return Severity.IGNORE;
98 public void ignore(@NonNull Context context, @NonNull Issue issue, method in class:GlobalLintConfiguration
102 "Can't ignore() in global configurations"); //$NON-NLS-1$
  /development/build/tools/
mk_sources_zip.py 43 # IGNORE is a list of namespaces to ignore. Must be java
45 self.IGNORE = [ "sun.", "libcore.", "dalvik.",
144 # Should we ignore this package?
148 for ignore in p.IGNORE:
149 if pkg2.startswith(ignore):
150 verbose("Ignore package %s [%s]", pkg, filepath)
190 verbose("Ignore duplicate archive path %s", arc_path)
  /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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 223 IGNORE, BUFFER, STORE, END
254 case IGNORE:
376 action = NALActions.IGNORE;
386 action = NALActions.IGNORE;
396 action = NALActions.IGNORE;
  /external/icu4c/common/
ucnv_io.cpp 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...]

Completed in 5107 milliseconds

1 2 3