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

1 2 3 4 5 6

  /cts/libs/vogar-expect/src/vogar/
ResultValue.java 24 IGNORE,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/docs/
Makefile 2 .IGNORE: module_dependencies.svg module_dependencies.pdf
  /external/mesa3d/src/gallium/state_trackers/d3d1x/docs/
Makefile 2 .IGNORE: module_dependencies.svg module_dependencies.pdf
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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 92 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE));
93 assertSame(encoder, encoder.onUnmappableCharacter(CodingErrorAction.IGNORE));
116 assertSame(encoder, encoder.onMalformedInput(CodingErrorAction.IGNORE));
118 .onUnmappableCharacter(CodingErrorAction.IGNORE));
559 .println("Don't support GBK encoding, ignore current test");
643 encoder.onMalformedInput(CodingErrorAction.IGNORE);
668 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
844 encoder.onMalformedInput(CodingErrorAction.IGNORE);
873 encoder.onUnmappableCharacter(CodingErrorAction.IGNORE);
963 encoder.onMalformedInput(CodingErrorAction.IGNORE);
    [all...]
  /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/chromium_org/third_party/cython/src/Cython/Plex/
__init__.py 27 TEXT, IGNORE, Begin
33 from Actions import TEXT, IGNORE, Begin
Actions.py 75 class Ignore(Action):
77 IGNORE is a Plex action which causes its associated token
85 return "IGNORE"
87 IGNORE = Ignore()
88 #IGNORE.__doc__ = Ignore.__doc__
  /external/elfutils/0.153/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...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Lexicon.py 16 TEXT, IGNORE, State, Lexicon
80 (comment, IGNORE),
81 (spaces, IGNORE),
82 (escaped_newline, IGNORE),
86 (Opt(spaces) + Opt(comment) + lineterm, IGNORE),
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Configuration.java 222 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
249 mode = IGNORE; // Ignore whitespace on the next line
286 mode = IGNORE; // Ignore whitespace on the next line
314 mode = IGNORE;
316 if (buffer.length() == 0 || mode == IGNORE) {
324 if (mode == IGNORE || mode == CONTINUE) {
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 303 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
330 mode = IGNORE; // Ignore whitespace on the next line
367 mode = IGNORE; // Ignore whitespace on the next line
395 mode = IGNORE;
397 if (buffer.length() == 0 || mode == IGNORE) {
405 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 82 enum KeyAction { ENQUEUE, TOGGLE, REBOOT, IGNORE, MOUNT_SYSTEM };
  /external/chromium_org/v8/src/base/
win32-headers.h 73 #undef IGNORE
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 46 } 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/0.153/libebl/
eblauxvinfo.c 64 TYPE (IGNORE, "") \
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
FunctionReceiverChecker.java 140 receiverPresence = CheckedReceiverPresence.IGNORE;
252 if (argument.receiverPresence == CheckedReceiverPresence.IGNORE) {
275 IGNORE
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 47 IGNORE = "ignore"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkMessageBox.py 47 IGNORE = "ignore"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfiguration.java 86 return Severity.IGNORE;
  /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)
  /device/asus/fugu/recovery/
recovery_ui.cpp 251 return IGNORE;
256 return text_visible ? ENQUEUE : IGNORE;
  /frameworks/base/packages/Keyguard/scripts/
new_merge.py 56 IGNORE=["LockHotnessActivity.java", "unified_lock_activity.xml", "optionmenu.xml"]
138 # Ignore any lines containing the ignore string ("import com.android.internal.R;) and
139 # ignore any lines containing only whitespace.
154 for ignore in IGNORE:
155 if file.find(ignore) >= 0:

Completed in 2139 milliseconds

1 2 3 4 5 6