HomeSort by relevance Sort by last modified time
    Searched refs:Builder (Results 451 - 475 of 3411) sorted by null

<<11121314151617181920>>

  /cts/tests/app/src/android/app/cts/
AlertDialog_BuilderTest.java 20 import android.app.AlertDialog.Builder;
50 private Builder mBuilder;
96 new AlertDialog.Builder(mContext);
100 mBuilder = new AlertDialog.Builder(mContext, R.style.DialogTheme_Test);
102 // Get the context from the builder and attempt to resolve a custom attribute
104 // builder.
115 mBuilder = new AlertDialog.Builder(mContext);
127 mBuilder = new AlertDialog.Builder(mContext);
139 mBuilder = new AlertDialog.Builder(mContext);
150 mBuilder = new AlertDialog.Builder(mContext)
    [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 270 return CGF.MakeAddrLValue(Address(CGF.Builder.CreateLoad(PtrAddr), Align),
336 return CGF.Builder.CreateStructGEP(Addr, Field, Offset, Name);
429 CGBuilderTy::InsertPointGuard IPG(CGF.Builder);
430 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
431 CGF.Builder.CreateMemCpy(LocValue, getOrCreateDefaultLocation(Flags),
450 OMPDebugLoc = CGF.Builder.CreateGlobalStringPtr(OS2.str());
454 CGF.Builder.CreateStore(OMPDebugLoc, PSource);
482 if (CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) {
494 CGBuilderTy::InsertPointGuard IPG(CGF.Builder);
495 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt)
    [all...]
  /cts/tests/tests/print/src/android/print/cts/
PrinterCapabilitiesTest.java 79 PrinterCapabilitiesInfo.Builder builder = new PrinterCapabilitiesInfo.Builder( local
81 builder.setMinMargins(DEFAULT_MARGINS)
88 cap = builder.build();
93 printers.add(new PrinterInfo.Builder(printerId, PRINTER_NAME, status).setCapabilities(cap)
194 PrintDocumentInfo info = new PrintDocumentInfo.Builder(PRINT_JOB_NAME)
379 assertException(() -> new PrinterCapabilitiesInfo.Builder(null),
385 (new PrinterCapabilitiesInfo.Builder(printerId))
392 (new PrinterCapabilitiesInfo.Builder(printerId)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpUrl.java 39 * HttpUrl url = new HttpUrl.Builder()
304 private HttpUrl(Builder builder) {
305 this.scheme = builder.scheme;
306 this.username = percentDecode(builder.encodedUsername, false);
307 this.password = percentDecode(builder.encodedPassword, false);
308 this.host = builder.host;
309 this.port = builder.effectivePort();
310 this.pathSegments = percentDecode(builder.encodedPathSegments, false);
311 this.queryNamesAndValues = builder.encodedQueryNamesAndValues != nul
608 Builder builder = new Builder(false); local
639 Builder builder = new Builder(false); local
663 Builder builder = new Builder(false); local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 141 Value *Src = Builder->CreateBitCast(MI->getArgOperand(1), NewSrcPtrTy);
142 Value *Dest = Builder->CreateBitCast(MI->getArgOperand(0), NewDstPtrTy);
143 LoadInst *L = Builder->CreateLoad(Src, MI->isVolatile());
147 StoreInst *S = Builder->CreateStore(L, Dest, MI->isVolatile());
181 Dest = Builder->CreateBitCast(Dest, NewDstPtrTy);
188 StoreInst *S = Builder->CreateStore(ConstantInt::get(ITy, Fill), Dest,
201 InstCombiner::BuilderTy &Builder) {
299 auto ShiftVec = Builder.CreateVectorSplat(VWidth, ShiftAmt);
302 return Builder.CreateShl(Vec, ShiftVec);
305 return Builder.CreateLShr(Vec, ShiftVec)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioAttributesTest.java 35 final AudioAttributes aa = new AudioAttributes.Builder()
44 final AudioAttributes srcAttr = new AudioAttributes.Builder()
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationCopy2DRangeTest.java 43 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
DebugContext.java 48 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
ScriptTest.java 50 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS));
  /developers/build/prebuilts/gradle/BasicNotifications/Application/src/main/java/com/example/android/basicnotifications/
MainActivity.java 47 * Use NotificationCompat.Builder to set up our notification.
49 NotificationCompat.Builder builder = new NotificationCompat.Builder(this); local
59 builder.setSmallIcon(R.drawable.ic_stat_notification);
62 builder.setContentIntent(pendingIntent);
66 builder.setAutoCancel(true);
74 builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
85 builder.setContentTitle("BasicNotifications Sample");
86 builder.setContentText("Time to learn about notifications!")
    [all...]
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmIntentService.java 50 NotificationCompat.Builder builder = local
51 new NotificationCompat.Builder(context)
57 notificationManager.notify(alarm.id, builder.build());
  /developers/build/prebuilts/gradle/HdrViewfinder/Application/src/main/java/com/example/android/hdrviewfinder/
MessageDialogFragment.java 47 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); local
48 builder.setPositiveButton(android.R.string.ok, null);
51 builder.setMessage(args.getInt(ARG_MESSAGE_INT));
53 builder.setMessage(args.getString(ARG_MESSAGE_STRING));
55 return builder.create();
  /developers/samples/android/media/HdrViewfinder/Application/src/main/java/com/example/android/hdrviewfinder/
MessageDialogFragment.java 47 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); local
48 builder.setPositiveButton(android.R.string.ok, null);
51 builder.setMessage(args.getInt(ARG_MESSAGE_INT));
53 builder.setMessage(args.getString(ARG_MESSAGE_STRING));
55 return builder.create();
  /developers/samples/android/notification/BasicNotifications/Application/src/main/java/com/example/android/basicnotifications/
MainActivity.java 47 * Use NotificationCompat.Builder to set up our notification.
49 NotificationCompat.Builder builder = new NotificationCompat.Builder(this); local
59 builder.setSmallIcon(R.drawable.ic_stat_notification);
62 builder.setContentIntent(pendingIntent);
66 builder.setAutoCancel(true);
74 builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
85 builder.setContentTitle("BasicNotifications Sample");
86 builder.setContentText("Time to learn about notifications!")
    [all...]
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmIntentService.java 50 NotificationCompat.Builder builder = local
51 new NotificationCompat.Builder(context)
57 notificationManager.notify(alarm.id, builder.build());
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ShareContent.java 44 Uri.Builder b = new Uri.Builder();
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
AppCompatNightModeAlertDialog.java 58 AlertDialog.Builder b = new AlertDialog.Builder(this,
  /development/samples/browseable/BasicNotifications/src/com.example.android.basicnotifications/
MainActivity.java 47 * Use NotificationCompat.Builder to set up our notification.
49 NotificationCompat.Builder builder = new NotificationCompat.Builder(this); local
59 builder.setSmallIcon(R.drawable.ic_stat_notification);
62 builder.setContentIntent(pendingIntent);
66 builder.setAutoCancel(true);
74 builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
85 builder.setContentTitle("BasicNotifications Sample");
86 builder.setContentText("Time to learn about notifications!")
    [all...]
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
AlarmIntentService.java 50 NotificationCompat.Builder builder = local
51 new NotificationCompat.Builder(context)
57 notificationManager.notify(alarm.id, builder.build());
  /development/samples/browseable/HdrViewfinder/src/com.example.android.hdrviewfinder/
MessageDialogFragment.java 47 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); local
48 builder.setPositiveButton(android.R.string.ok, null);
51 builder.setMessage(args.getInt(ARG_MESSAGE_INT));
53 builder.setMessage(args.getString(ARG_MESSAGE_STRING));
55 return builder.create();
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
VmDataCollectingVisitor.java 34 private final ImmutableMap.Builder<String, String> vmOptionsBuilder = ImmutableMap.builder();
50 return new VmSpec.Builder()
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/staticprovides/
StaticProvidesTest.java 38 {DaggerStaticTestComponentWithBuilder.builder().build()},
39 {DaggerStaticTestComponentWithBuilder.builder()
56 for (Field field : DaggerStaticTestComponent.Builder.class.getDeclaredFields()) {
63 for (Method method : DaggerStaticTestComponent.Builder.class.getDeclaredMethods()) {
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/subcomponent/repeat/
RepeatedModuleTest.java 32 this.parentComponent = DaggerParentComponent.builder().build();
53 SubcomponentWithRepeatedModule.Builder childComponentBuilder =
70 SubcomponentWithRepeatedModule.Builder grandchildComponentBuilder =
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MethodSignature.java 20 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> parameters = ImmutableList.builder();
21 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> thrownTypes = ImmutableList.builder();
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
WildcardName.java 44 ImmutableSet.Builder<ClassName> builder = new ImmutableSet.Builder<ClassName>(); local
46 builder.addAll(extendsBound.get().referencedClasses());
49 builder.addAll(superBound.get().referencedClasses());
51 return builder.build();

Completed in 646 milliseconds

<<11121314151617181920>>