Searched refs:Void (Results 1 - 25 of 209) sorted by relevance

123456789

/external/clang/test/Sema/
H A Dvoid_arg.c4 typedef void Void; typedef
13 X = sizeof(int (Void a)); // expected-error {{argument may not have 'void' type}}
14 X = sizeof(int (int, Void)); // expected-error {{must be the first and only parameter}}
15 X = sizeof(int (Void, ...)); // expected-error {{must be the first and only parameter}}
19 X = sizeof(int (Void));
23 void bar(Void) {
/external/guice/core/test/com/google/inject/spi/
H A DFailingBindingScopingVisitor.java25 public class FailingBindingScopingVisitor implements BindingScopingVisitor<Void> {
27 public Void visitEagerSingleton() {
31 public Void visitScope(Scope scope) {
35 public Void visitScopeAnnotation(Class<? extends Annotation> scopeAnnotation) {
39 public Void visitNoScoping() {
H A DFailingElementVisitor.java21 class FailingElementVisitor extends DefaultElementVisitor<Void> {
22 @Override protected Void visitOther(Element element) {
H A DFailingTargetVisitor.java23 public class FailingTargetVisitor<T> extends DefaultBindingTargetVisitor<T, Void> {
24 @Override protected Void visitOther(Binding<? extends T> binding) {
H A DElementsTest.java87 @Override public Void visit(Message command) {
109 @Override public Void visit(Message command) {
135 @Override public Void visit(Message command) {
143 @Override public Void visit(Message command) {
166 @Override public <T> Void visit(Binding<T> command) {
175 @Override public <T> Void visit(Binding<T> command) {
204 @Override public <T> Void visit(Binding<T> command) {
213 @Override public <T> Void visit(Binding<T> command) {
222 @Override public <T> Void visit(Binding<T> command) {
231 @Override public <T> Void visi
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
H A DTarget02.java19 public class Target02 implements Callable<Void> {
21 public Void call() throws Exception {
/external/junit-params/src/main/java/junitparams/
H A DParameters.java35 Class<?> source() default Void.class;
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DTypeNames.java52 return mirror.accept(new SimpleTypeVisitor6<TypeName, Void>() {
54 protected TypeName defaultAction(TypeMirror e, Void p) {
59 public TypeName visitTypeVariable(TypeVariable t, Void p) {
64 public ArrayTypeName visitArray(ArrayType t, Void p) {
69 public TypeName visitDeclared(DeclaredType t, Void p) {
78 public PrimitiveName visitPrimitive(PrimitiveType t, Void p) {
83 public WildcardName visitWildcard(WildcardType t, Void p) {
88 public NullName visitNull(NullType t, Void p) {
93 public TypeName visitNoType(NoType t, Void p) {
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DCallablesTest.java47 Callable<Void> callable = new Callable<Void>() {
48 @Override public Void call() throws Exception {
61 Callable<Void> callable = new Callable<Void>() {
62 @Override public Void call() throws Exception {
86 Callable<Void> callable = new Callable<Void>() {
87 @Override public Void call() throws Exception {
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
H A DExecuteInstrumentedCodeScenario.java29 private final Class<? extends Callable<Void>> target;
32 Class<? extends Callable<Void>> target) {
39 protected Callable<Void> getInstrumentedCallable() throws Exception {
47 return (Callable<Void>) loader.add(target, instrumentedBuffer)
52 protected Callable<Void> getReferenceCallable() throws Exception {
H A DTimedScenario.java31 final Callable<Void> refRunnable = getReferenceCallable();
49 private long getMinimumTime(final Callable<Void> subject) throws Exception {
58 private long getTime(final Callable<Void> subject) throws Exception {
64 protected abstract Callable<Void> getInstrumentedCallable()
67 protected Callable<Void> getReferenceCallable() throws Exception {
H A DInstrumentationTimeScenario.java36 protected Callable<Void> getInstrumentedCallable() throws Exception {
39 return new Callable<Void>() {
40 public Void call() throws Exception {
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DPatchApplyPlan.java47 private final List<TypedRange<Void>> oldFileUncompressionPlan;
76 List<TypedRange<Void>> oldFileUncompressionPlan,
90 public List<TypedRange<Void>> getOldFileUncompressionPlan() {
H A DDeltaDescriptor.java36 private final TypedRange<Void> deltaFriendlyOldFileRange;
41 private final TypedRange<Void> deltaFriendlyNewFileRange;
57 TypedRange<Void> deltaFriendlyOldFileRange,
58 TypedRange<Void> deltaFriendlyNewFileRange,
78 public TypedRange<Void> getDeltaFriendlyOldFileRange() {
86 public TypedRange<Void> getDeltaFriendlyNewFileRange() {
/external/guice/extensions/servlet/test/com/google/inject/servlet/
H A DServletModuleTest.java76 private static class Visitor extends DefaultBindingTargetVisitor<Object, Void> implements
77 ServletModuleTargetVisitor<Object, Void> {
83 public Void visit(LinkedFilterBinding binding) {
88 public Void visit(InstanceFilterBinding binding) {
93 public Void visit(LinkedServletBinding binding) {
98 public Void visit(InstanceServletBinding binding) {
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ProviderJCE.java51 AccessController.doPrivileged(new PrivilegedAction<Void>() {
52 public Void run() {
H A DSupport_ProviderRSA.java51 AccessController.doPrivileged(new PrivilegedAction<Void>() {
52 public Void run() {
H A DSupport_ProviderTrust.java51 AccessController.doPrivileged(new PrivilegedAction<Void>() {
52 public Void run() {
H A DSupport_TestProvider.java52 AccessController.doPrivileged(new PrivilegedAction<Void>() {
53 public Void run() {
/external/swiftshader/src/Renderer/
H A DRasterizer.hpp25 class Rasterizer : public Function<Void(Pointer<Byte>, Int, Int, Pointer<Byte>)>
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
H A DTcpConnectionTest.java89 final Future<Void> f = executor.submit(new Callable<Void>() {
90 public Void call() throws Exception {
118 final Future<Void> f = executor.submit(new Callable<Void>() {
119 public Void call() throws Exception {
144 final Future<Void> f = executor.submit(new Callable<Void>() {
145 public Void call() throws Exception {
172 final Future<Void>
[all...]
/external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
H A DAnswerFunctionalInterfaces.java54 public static <A> Answer<Void> toAnswer(final VoidAnswer1<A> answer) {
55 return new Answer<Void>() {
57 public Void answer(InvocationOnMock invocation) throws Throwable {
90 public static <A, B> Answer<Void> toAnswer(final VoidAnswer2<A, B> answer) {
91 return new Answer<Void>() {
93 public Void answer(InvocationOnMock invocation) throws Throwable {
131 public static <A, B, C> Answer<Void> toAnswer(final VoidAnswer3<A, B, C> answer) {
132 return new Answer<Void>() {
134 public Void answer(InvocationOnMock invocation) throws Throwable {
176 public static <A, B, C, D> Answer<Void> toAnswe
[all...]
/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
H A DTestSSLSocketPair.java69 Future<Void> s = executor.submit(new Callable<Void>() {
71 public Void call() throws Exception {
79 Future<Void> c = executor.submit(new Callable<Void>() {
81 public Void call() throws Exception {
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DProductionComponentValidator.java58 new SimpleTypeVisitor6<Void, Void>() {
60 protected Void defaultAction(TypeMirror mirror, Void p) {
66 public Void visitDeclared(DeclaredType t, Void p) {
/external/guice/core/test/com/google/inject/internal/
H A DCycleDetectingLockTest.java72 Future<Void> firstThreadResult = Executors.newSingleThreadExecutor().submit(
73 new Callable<Void>() {
74 public Void call() throws Exception {
84 Future<Void> secondThreadResult = Executors.newSingleThreadExecutor().submit(
85 new Callable<Void>() {
86 public Void call() throws Exception {

Completed in 788 milliseconds

123456789