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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15646.go 9 package ignore package
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15646.go 9 package ignore package
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/tagtest/
file2.go 9 func ignore() { func
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/tagtest/
file2.go 9 func ignore() { func
  /external/skia/tools/
check-headers-self-sufficient 80 ignore = [ variable
145 if path.endswith('.h') and not any(fnmatch.fnmatch(path, pattern) for pattern in ignore):
  /build/make/tools/releasetools/
target_files_diff.py 32 def ignore(name): function
34 Files to ignore when diffing
167 if ignore(name):
209 if ignore(name):
  /external/mockito/src/test/java/org/mockitousage/
CompilationWarningsTest.java 26 doAnswer(ignore()).doReturn(null).when(mock(IMethods.class)).objectReturningMethodNoArgs();
27 doAnswer(ignore()).doReturn("a", 12).when(mock(IMethods.class)).objectReturningMethodNoArgs();
28 doAnswer(ignore()).doReturn(1000).when(mock(IMethods.class)).objectReturningMethodNoArgs();
29 doAnswer(ignore()).doThrow(new NullPointerException()).when(mock(IMethods.class)).objectReturningMethodNoArgs();
30 doAnswer(ignore()).doThrow(new NullPointerException(), new IllegalArgumentException()).when(mock(IMethods.class)).objectReturningMethodNoArgs();
31 doAnswer(ignore()).doThrow(NullPointerException.class).when(mock(IMethods.class)).objectReturningMethodNoArgs();
40 when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenReturn(null);
41 when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenReturn("a", 12L);
42 when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenReturn(1000);
43 when(mock(IMethods.class).objectReturningMethodNoArgs()).then(ignore()).thenThrow(new NullPointerException())
100 private static Answer<?> ignore() { method in class:CompilationWarningsTest
    [all...]
  /frameworks/base/core/java/android/webkit/
ClientCertRequest.java 72 * Ignore the request for now. Do not remember user's choice.
74 public abstract void ignore(); method in class:ClientCertRequest
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 34 MsgHandler ignore(unsigned int pID);
65 inline mcld::MsgHandler mcld::ignore(unsigned int pID) { function in class:mcld
66 return getDiagnosticEngine().report(pID, DiagnosticEngine::Ignore);
  /development/ide/emacs/
android-compile.el 43 (defvar android-compile-ignore-re
129 (while (search-forward-regexp android-compile-ignore-re end t)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
objgraph.py 31 ignore = 'Nntrgdsbavuc' variable
82 elif not type in ignore:
xxci.py 46 ignore = [] variable
49 ignore[:] = badnames
51 ignore.append(p + '*')
53 ignore.append('*' + p)
58 ignore[:] = ignore + f.read().split()
61 for p in ignore:
  /external/clang/test/Sema/
warn-tautological-compare.c 11 void ignore() { function
  /external/libedit/src/
prompt.c 87 int ignore = 0; local
102 ignore = !ignore;
105 if (ignore)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 71 private static boolean ignore( method in class:HexEncoder
97 if (!ignore((char)data[end - 1]))
108 while (i < end && ignore((char)data[i]))
115 while (i < end && ignore((char)data[i]))
153 if (!ignore(data.charAt(end - 1)))
164 while (i < end && ignore(data.charAt(i)))
171 while (i < end && ignore(data.charAt(i)))
Base64Encoder.java 119 private boolean ignore( method in class:Base64Encoder
145 if (!ignore((char)data[end - 1]))
195 while ((i < finish) && ignore((char)data[i]))
220 if (!ignore(data.charAt(end - 1)))
325 while ((i < finish) && ignore(data.charAt(i)))
  /external/chromium-trace/
update.py 65 ignore=shutil.ignore_patterns(*IGNORE_PATTERNS)) variable
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 78 void ignore() { function in namespace:Array
warn-tautological-compare.cpp 37 void ignore() { function in namespace:ArrayCompare
73 void ignore() { function in namespace:FunctionCompare
  /external/emma/core/java12/com/vladium/emma/rt/
RTExitHook.java 69 if (in != null) try { in.close (); } catch (IOException ignore) { ignore.printStackTrace (); }
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c 197 uint ignore = 0; local
203 /* Ignore x */
204 ignore |= (0xf << UREG_CHANNEL_X_SHIFT);
206 /* Ignore y */
207 ignore |= (0xf << UREG_CHANNEL_Y_SHIFT);
209 /* Ignore z */
210 ignore |= (0xf << UREG_CHANNEL_Z_SHIFT);
212 /* Ignore w */
213 ignore |= (0xf << UREG_CHANNEL_W_SHIFT);
216 if ( (coord & ~ignore ) != (k & ~ignore) )
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/agent/
AgentPremain.java 71 if (args.containsKey(AgentOptions.IGNORE)) {
72 String ignore = args.getProperty(AgentOptions.IGNORE); local
73 builder = builder.ignore(ignore.split(":"));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
mactoolboxglue.c 145 char *ignore; local
146 PyArg_ParseTuple(args, "is", &err, &ignore);
  /external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/
network_3GRecoverFromGobiDesync.py 234 def ignore(self, *args, **kwargs): member in class:DataConnectTest
243 {}, reply_handler=self.ignore, error_handler=self.ignore)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 86 return Severity.IGNORE;
98 public void ignore(@NonNull Context context, @NonNull Issue issue, method in class:GlobalLintConfiguration
101 "Can't ignore() in global configurations"); //$NON-NLS-1$

Completed in 1772 milliseconds

1 2 3 4 5 6 7 8 91011>>