/external/guice/core/test/com/google/inject/spi/ |
D | ElementsTest.java | 87 @Override public Void visit(Message command) { in testAddMessageErrorCommand() 109 @Override public Void visit(Message command) { in testAddThrowableErrorCommand() 135 @Override public Void visit(Message command) { in testErrorsAddedWhenExceptionsAreThrown() 143 @Override public Void visit(Message command) { in testErrorsAddedWhenExceptionsAreThrown() 166 @Override public <T> Void visit(Binding<T> command) { in testBindConstantAnnotations() 175 @Override public <T> Void visit(Binding<T> command) { in testBindConstantAnnotations() 204 @Override public <T> Void visit(Binding<T> command) { in testBindConstantTypes() 213 @Override public <T> Void visit(Binding<T> command) { in testBindConstantTypes() 222 @Override public <T> Void visit(Binding<T> command) { in testBindConstantTypes() 231 @Override public <T> Void visit(Binding<T> command) { in testBindConstantTypes() [all …]
|
D | SpiBindingsTest.java | 64 @Override public <T> Void visit(Binding<T> binding) { in testBindConstant() 82 @Override public <T> Void visit(Binding<T> binding) { in testToInstanceBinding() 87 @Override public Void visit(InstanceBinding<? extends T> binding) { in testToInstanceBinding() 93 public Void visitEagerSingleton() { in testToInstanceBinding() 114 @Override public <T> Void visit(Binding<T> binding) { in testToProviderBinding() 119 @Override public Void visit( in testToProviderBinding() 140 @Override public <T> Void visit(Binding<T> binding) { in testToProviderKeyBinding() 145 @Override public Void visit(ProviderKeyBinding<? extends T> binding) { in testToProviderKeyBinding() 169 @Override public <T> Void visit(Binding<T> binding) { in testToKeyBinding() 174 @Override public Void visit(LinkedKeyBinding<? extends T> binding) { in testToKeyBinding() [all …]
|
D | FailingBindingScopingVisitor.java | 25 public class FailingBindingScopingVisitor implements BindingScopingVisitor<Void> { 27 public Void visitEagerSingleton() { in visitEagerSingleton() 31 public Void visitScope(Scope scope) { in visitScope() 35 public Void visitScopeAnnotation(Class<? extends Annotation> scopeAnnotation) { in visitScopeAnnotation() 39 public Void visitNoScoping() { in visitNoScoping()
|
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/ |
D | TcpConnectionTest.java | 90 final Future<Void> f = executor.submit(new Callable<Void>() { in testRemoteClose() 91 public Void call() throws Exception { in testRemoteClose() 110 final Future<Void> f = executor.submit(new Callable<Void>() { in testRemoteCloseWithoutHeader() 111 public Void call() throws Exception { in testRemoteCloseWithoutHeader() 138 final Future<Void> f = executor.submit(new Callable<Void>() { in testLocalClose() 139 public Void call() throws Exception { in testLocalClose() 163 final Future<Void> f = executor.submit(new Callable<Void>() { in testRemoteDump() 164 public Void call() throws Exception { in testRemoteDump() 190 final Future<Void> f = executor.submit(new Callable<Void>() { in testLocalDump() 191 public Void call() throws Exception { in testLocalDump() [all …]
|
/external/clang/test/Sema/ |
D | void_arg.c | 4 typedef void Void; typedef 13 X = sizeof(int (Void a)); // expected-error {{argument may not have 'void' type}} in foo() 14 X = sizeof(int (int, Void)); // expected-error {{must be the first and only parameter}} in foo() 15 X = sizeof(int (Void, ...)); // expected-error {{must be the first and only parameter}} in foo() 19 X = sizeof(int (Void)); in foo() 23 void bar(Void) { in bar() argument
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | CallablesTest.java | 47 Callable<Void> callable = new Callable<Void>() { in testRenaming() 48 @Override public Void call() throws Exception { in testRenaming() 61 Callable<Void> callable = new Callable<Void>() { in testRenaming_exceptionalReturn() 62 @Override public Void call() throws Exception { in testRenaming_exceptionalReturn() 86 Callable<Void> callable = new Callable<Void>() { in testRenaming_noPermissions() 87 @Override public Void call() throws Exception { in testRenaming_noPermissions()
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
D | TypeNames.java | 52 return mirror.accept(new SimpleTypeVisitor6<TypeName, Void>() { in forTypeMirror() 54 protected TypeName defaultAction(TypeMirror e, Void p) { in forTypeMirror() 59 public TypeName visitTypeVariable(TypeVariable t, Void p) { in forTypeMirror() 64 public ArrayTypeName visitArray(ArrayType t, Void p) { in forTypeMirror() 69 public TypeName visitDeclared(DeclaredType t, Void p) { in forTypeMirror() 78 public PrimitiveName visitPrimitive(PrimitiveType t, Void p) { in forTypeMirror() 83 public WildcardName visitWildcard(WildcardType t, Void p) { in forTypeMirror() 88 public NullName visitNull(NullType t, Void p) { in forTypeMirror() 93 public TypeName visitNoType(NoType t, Void p) { in forTypeMirror()
|
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/ |
D | InterpreterInstaller.java | 44 public abstract class InterpreterInstaller extends AsyncTask<Void, Void, Boolean> { 54 protected volatile AsyncTask<Void, Integer, Long> mTaskHolder; 69 AsyncTask<Void, Integer, Long> newTask = null; 195 protected Boolean doInBackground(Void... params) { in doInBackground() 245 protected AsyncTask<Void, Integer, Long> download(String in) throws MalformedURLException { in download() 250 protected AsyncTask<Void, Integer, Long> downloadInterpreter() throws MalformedURLException { in downloadInterpreter() 254 …protected AsyncTask<Void, Integer, Long> downloadInterpreterExtras() throws MalformedURLException { in downloadInterpreterExtras() 258 protected AsyncTask<Void, Integer, Long> downloadScripts() throws MalformedURLException { in downloadScripts() 262 protected AsyncTask<Void, Integer, Long> extract(String in, String out, boolean replaceAll) in extract() 267 protected AsyncTask<Void, Integer, Long> extractInterpreter() throws Sl4aException { in extractInterpreter() [all …]
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | Binding.java | 139 private static final ElementVisitor<TypeElement, Void> BINDING_TYPE_ELEMENT = 140 new SimpleElementVisitor6<TypeElement, Void>() { 142 protected TypeElement defaultAction(Element e, Void p) { 147 public TypeElement visitType(TypeElement e, Void p) { 183 typeMirror.accept(new SimpleTypeVisitor6<Void, ImmutableSet.Builder<String>>() { in nonPublicPackageUse() 185 public Void visitArray(ArrayType t, ImmutableSet.Builder<String> p) { in nonPublicPackageUse() 190 public Void visitDeclared(DeclaredType t, ImmutableSet.Builder<String> p) { in nonPublicPackageUse() 209 public Void visitWildcard(WildcardType t, ImmutableSet.Builder<String> p) { in nonPublicPackageUse() 249 new SimpleTypeVisitor6<List<TypeMirror>, Void>() { in hasNonDefaultTypeParameters() 251 protected List<TypeMirror> defaultAction(TypeMirror e, Void p) { in hasNonDefaultTypeParameters() [all …]
|
D | InjectProcessingStep.java | 87 new ElementKindVisitor6<Void, Void>() { in process() 89 public Void visitExecutableAsConstructor( in process() 90 ExecutableElement constructorElement, Void v) { in process() 111 public Void visitVariableAsField(VariableElement fieldElement, Void p) { in process() 125 public Void visitExecutableAsMethod(ExecutableElement methodElement, Void p) { in process()
|
D | ProductionComponentValidator.java | 58 new SimpleTypeVisitor6<Void, Void>() { in validate() 60 protected Void defaultAction(TypeMirror mirror, Void p) { in validate() 66 public Void visitDeclared(DeclaredType t, Void p) { in validate()
|
D | MapKeys.java | 113 SimpleTypeVisitor6<DeclaredType, Void> keyTypeElementVisitor = in getUnwrappedMapKeyType() 114 new SimpleTypeVisitor6<DeclaredType, Void>() { in getUnwrappedMapKeyType() 117 public DeclaredType visitArray(ArrayType t, Void p) { in getUnwrappedMapKeyType() 123 public DeclaredType visitPrimitive(PrimitiveType t, Void p) { in getUnwrappedMapKeyType() 128 public DeclaredType visitDeclared(DeclaredType t, Void p) { in getUnwrappedMapKeyType() 320 private static final SimpleTypeVisitor6<TypeName, Void> RAW_TYPE_NAME = 321 new SimpleTypeVisitor6<TypeName, Void>() { 323 public TypeName visitDeclared(DeclaredType t, Void p) { 328 protected TypeName defaultAction(TypeMirror e, Void p) {
|
D | FrameworkField.java | 129 private static final ElementVisitor<String, Void> BINDING_ELEMENT_NAME = 130 new ElementKindVisitor6<String, Void>() { 132 public String visitExecutableAsConstructor(ExecutableElement e, Void p) { 137 public String visitExecutableAsMethod(ExecutableElement e, Void p) { 142 public String visitType(TypeElement e, Void p) {
|
D | ConfigurationAnnotations.java | 142 private static final AnnotationValueVisitor<TypeMirror, Void> TO_TYPE = 143 new SimpleAnnotationValueVisitor6<TypeMirror, Void>() { 145 public TypeMirror visitType(TypeMirror t, Void p) { 150 protected TypeMirror defaultAction(Object o, Void p) { 211 extends SimpleTypeVisitor6<Optional<AnnotationMirror>, Void> { 213 protected Optional<AnnotationMirror> defaultAction(TypeMirror e, Void p) { in defaultAction() 218 public Optional<AnnotationMirror> visitDeclared(DeclaredType t, Void p) { in visitDeclared()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/ |
D | TimedScenario.java | 31 final Callable<Void> refRunnable = getReferenceCallable(); in run() 49 private long getMinimumTime(final Callable<Void> subject) throws Exception { in getMinimumTime() 58 private long getTime(final Callable<Void> subject) throws Exception { in getTime() 64 protected abstract Callable<Void> getInstrumentedCallable() in getInstrumentedCallable() 67 protected Callable<Void> getReferenceCallable() throws Exception { in getReferenceCallable()
|
D | ExecuteInstrumentedCodeScenario.java | 29 private final Class<? extends Callable<Void>> target; 32 Class<? extends Callable<Void>> target) { in ExecuteInstrumentedCodeScenario() 39 protected Callable<Void> getInstrumentedCallable() throws Exception { in getInstrumentedCallable() 47 return (Callable<Void>) loader.add(target, instrumentedBuffer) in getInstrumentedCallable() 52 protected Callable<Void> getReferenceCallable() throws Exception { in getReferenceCallable()
|
D | InstrumentationTimeScenario.java | 36 protected Callable<Void> getInstrumentedCallable() throws Exception { in getInstrumentedCallable() 39 return new Callable<Void>() { in getInstrumentedCallable() 40 public Void call() throws Exception { in getInstrumentedCallable()
|
D | AnalysisTimeScenario.java | 38 protected Callable<Void> getInstrumentedCallable() throws Exception { in getInstrumentedCallable() 46 return new Callable<Void>() { in getInstrumentedCallable() 47 public Void call() throws Exception { in getInstrumentedCallable()
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
D | ServletModuleTest.java | 76 private static class Visitor extends DefaultBindingTargetVisitor<Object, Void> implements 77 ServletModuleTargetVisitor<Object, Void> { 83 public Void visit(LinkedFilterBinding binding) { in visit() 88 public Void visit(InstanceFilterBinding binding) { in visit() 93 public Void visit(LinkedServletBinding binding) { in visit() 98 public Void visit(InstanceServletBinding binding) { in visit()
|
/external/guice/core/src/com/google/inject/util/ |
D | Modules.java | 207 @Override public <T> Void visit(Binding<T> binding) { in configure() 212 @Override public Void visit(ScopeBinding scopeBinding) { in configure() 217 @Override public Void visit(PrivateElements privateElements) { in configure() 229 @Override public <T> Void visit(Binding<T> binding) { in configure() 275 @Override public Void visit(PrivateElements privateElements) { in configure() 280 @Override public Void visit(ScopeBinding scopeBinding) { in configure() 289 @Override public Void visit(ScopeBinding scopeBinding) { in configure() 321 private static class ModuleWriter extends DefaultElementVisitor<Void> { 328 @Override protected Void visitOther(Element element) { 342 ElementVisitor<Void> visitor = new DefaultElementVisitor<Void>() { [all …]
|
/external/guice/core/test/com/google/inject/internal/ |
D | CycleDetectingLockTest.java | 72 Future<Void> firstThreadResult = Executors.newSingleThreadExecutor().submit( in testSingletonThreadsRuntimeCircularDependency() 73 new Callable<Void>() { in testSingletonThreadsRuntimeCircularDependency() 74 public Void call() throws Exception { in testSingletonThreadsRuntimeCircularDependency() 84 Future<Void> secondThreadResult = Executors.newSingleThreadExecutor().submit( in testSingletonThreadsRuntimeCircularDependency() 85 new Callable<Void>() { in testSingletonThreadsRuntimeCircularDependency() 86 public Void call() throws Exception { in testSingletonThreadsRuntimeCircularDependency()
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
D | FakeTickerTest.java | 110 new Callable<Void>() { in testConcurrentAdvance() 112 public Void call() throws Exception { in testConcurrentAdvance() 133 new Callable<Void>() { in testConcurrentAutoIncrementStep() 135 public Void call() throws Exception { in testConcurrentAutoIncrementStep() 148 private void runConcurrentTest(int numberOfThreads, final Callable<Void> callable) in runConcurrentTest() 154 executorService.submit(new Callable<Void>() { in runConcurrentTest() 156 public Void call() throws Exception { in runConcurrentTest()
|
/external/opencv3/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/ |
D | CameraCalibrationActivity.java | 154 new AsyncTask<Void, Void, Void>() { in onOptionsItemSelected() 168 protected Void doInBackground(Void... arg0) { in onOptionsItemSelected() 174 protected void onPostExecute(Void result) { in onOptionsItemSelected()
|
/external/droiddriver/src/io/appium/droiddriver/util/ |
D | InstrumentationUtils.java | 114 FutureTask<Void> emptyTask = new FutureTask<Void>(EMPTY_RUNNABLE, null); in tryWaitForIdleSync() 130 runOnMainSyncWithTimeout(new Callable<Void>() { in runOnMainSyncWithTimeout() 132 public Void call() throws Exception { in runOnMainSyncWithTimeout()
|
/external/droiddriver/src/io/appium/droiddriver/ |
D | Poller.java | 106 ConditionChecker<Void> GONE = new ConditionChecker<Void>() { 108 public Void check(DroidDriver driver, Finder finder) throws UnsatisfiedConditionException {
|