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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
void_arg.c 4 typedef void Void;
6 void foo() {
9 X = sizeof(int (void a)); // expected-error {{argument may not have 'void' type}}
10 X = sizeof(int (int, void)); // expected-error {{must be the first and only parameter}}
11 X = sizeof(int (void, ...)); // expected-error {{must be the first and only parameter}}
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}
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
RecursiveAction.java 12 * {@code Void} {@code ForkJoinTask}s. Because {@code null} is the
13 * only valid value of type {@code Void}, methods such as {@code join}
26 * protected void compute() {
38 * void sortSequentially(int lo, int hi) {
41 * void merge(int lo, int mid, int hi) {
59 * protected void compute() {
109 * protected void compute() {
136 public abstract class RecursiveAction extends ForkJoinTask<Void> {
142 protected abstract void compute();
149 public final Void getRawResult() { return null;
    [all...]
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
PrepareMusicRetrieverTask.java 26 public class PrepareMusicRetrieverTask extends AsyncTask<Void, Void, Void> {
37 protected Void doInBackground(Void... arg0) {
43 protected void onPostExecute(Void result) {
48 public void onMusicRetrieverPrepared();
  /external/guice/core/test/com/google/inject/spi/
FailingBindingScopingVisitor.java 25 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() {
FailingElementVisitor.java 21 class FailingElementVisitor extends DefaultElementVisitor<Void> {
22 @Override protected Void visitOther(Element element) {
FailingTargetVisitor.java 23 public class FailingTargetVisitor<T> extends DefaultBindingTargetVisitor<T, Void> {
24 @Override protected Void visitOther(Binding<? extends T> binding) {
  /libcore/ojluni/src/main/java/java/lang/
Void.java 33 * The {@code Void} class is an uninstantiable placeholder class to hold a
35 * void.
41 class Void {
45 * the keyword {@code void}.
47 public static final Class<Void> TYPE = lookupType();
50 private static Class<Void> lookupType() {
53 return (Class<Void>) method.getReturnType();
60 * The Void class cannot be instantiated.
62 private Void() {}
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
MusicProviderTask.java 27 public class MusicProviderTask extends AsyncTask<Void, Void, Void> {
52 protected Void doInBackground(Void... arg0) {
66 protected void onPostExecute(Void result) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
AsyncEmergencyContactNotifier.java 30 public class AsyncEmergencyContactNotifier extends AsyncTask<Void, Void, Void> {
40 protected Void doInBackground(Void... params) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AsyncRefreshTask.java 24 public class AsyncRefreshTask extends AsyncTask<Void, Void, Void> {
35 protected Void doInBackground(Void... voids) {
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternChecker.java 22 default void onEarlyMatched() {}
31 void onChecked(boolean matched, int throttleTimeoutMs);
45 void onVerified(byte[] attestation, int throttleTimeoutMs);
62 AsyncTask<Void, Void, byte[]> task = new AsyncTask<Void, Void, byte[]>() {
66 protected byte[] doInBackground(Void... args) {
76 protected void onPostExecute(byte[] result) {
96 AsyncTask<Void, Void, Boolean> task = new AsyncTask<Void, Void, Boolean>()
    [all...]
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
PropertyChangeRegistry.java 22 CallbackRegistry<Observable.OnPropertyChangedCallback, Observable, Void> {
24 private static final CallbackRegistry.NotifierCallback<Observable.OnPropertyChangedCallback, Observable, Void> NOTIFIER_CALLBACK = new CallbackRegistry.NotifierCallback<Observable.OnPropertyChangedCallback, Observable, Void>() {
26 public void onNotifyCallback(Observable.OnPropertyChangedCallback callback, Observable sender,
27 int arg, Void notUsed) {
43 public void notifyChange(Observable observable, int propertyId) {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/
Target02.java 19 public class Target02 implements Callable<Void> {
21 public Void call() throws Exception {
  /libcore/ojluni/src/main/java/sun/security/action/
LoadLibraryAction.java 47 public class LoadLibraryAction implements java.security.PrivilegedAction<Void> {
66 public Void run() {
PutAllAction.java 41 public class PutAllAction implements PrivilegedAction<Void> {
51 public Void run() {
  /packages/apps/TV/common/src/com/android/tv/common/
SharedPreferencesUtils.java 43 public static synchronized void initialize(final Context context) {
46 new AsyncTask<Void, Void, Void>() {
48 protected Void doInBackground(Void... params) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
ClearFrequentsDialog.java 39 public static void show(FragmentManager fragmentManager) {
50 public void onClick(DialogInterface dialog, int which) {
57 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
59 protected Void doInBackground(Void... params)
    [all...]
  /cts/tests/app/app/src/android/app/stubs/
ActivityManagerMemoryClassTestActivity.java 36 protected void onCreate(Bundle savedInstanceState) {
44 private class AllocateMemoryTask extends AsyncTask<Void, Void, Void> {
53 protected Void doInBackground(Void... params) {
69 protected void onPostExecute(Void result) {
  /frameworks/base/test-runner/src/android/test/
LoaderTestCase.java 40 new AsyncTask<Void, Void, Void>() {
42 protected Void doInBackground(Void... args) {return null;}
44 protected void onPostExecute(Void result) {}
63 public void onLoadComplete(Loader<T> completedLoader, T data) {
79 public void handleMessage(Message msg) {
  /hardware/ti/omap3/dspbridge/inc/
gt.h 102 Void
111 Void
120 Void
136 GT_curLine(Void)
145 Void
146 GT_exit(Void)
154 Void
155 GT_init(Void)
175 Void
186 Void
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
TypeNames.java 42 } else if (void.class.equals(clazz)) {
43 return VoidName.VOID;
52 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)
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
CallablesTest.java 34 public void testReturning() throws Exception {
44 public void testRenaming() throws Exception {
47 Callable<Void> callable = new Callable<Void>() {
48 @Override public Void call() throws Exception {
57 public void testRenaming_exceptionalReturn() throws Exception {
61 Callable<Void> callable = new Callable<Void>() {
62 @Override public Void call() throws Exception {
74 public void testRenaming_noPermissions() throws Exception
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ClearCallLogDialog.java 45 public static void show(FragmentManager fragmentManager) {
56 public void onClick(DialogInterface dialog, int which) {
61 final AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
63 protected Void doInBackground(Void... params)
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
FlipperDreamSettings.java 44 private AsyncTask<Void, Void, Void> mLoadingTask;
47 protected void onCreate(Bundle savedInstanceState){
54 protected void onResume(){
59 protected void init() {
66 mLoadingTask = new AsyncTask<Void, Void, Void>() {
68 public Void doInBackground(Void... unused)
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
ExecuteInstrumentedCodeScenario.java 29 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 {

Completed in 1084 milliseconds

1 2 3 4 5 6 7 8 91011>>