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

<<31323334353637383940>>

  /packages/apps/Messaging/src/com/android/messaging/sms/
SmsStorageStatusManager.java 68 final NotificationCompat.Builder builder = new NotificationCompat.Builder(context); local
69 builder.setContentTitle(resources.getString(R.string.sms_storage_low_title))
78 new NotificationCompat.BigTextStyle(builder);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
EnterSelfPhoneNumberDialog.java 52 final AlertDialog.Builder builder = new AlertDialog.Builder(context); local
53 builder.setTitle(R.string.enter_phone_number_title)
81 return builder.create();
  /packages/apps/Nfc/src/com/android/nfc/handover/
ConfirmConnectActivity.java 35 AlertDialog.Builder builder = new AlertDialog.Builder(this, local
43 builder.setMessage(confirmString)
65 mAlert = builder.create();
  /packages/apps/Settings/src/com/android/settings/
CustomDialogPreference.java 57 protected void onPrepareDialogBuilder(AlertDialog.Builder builder,
89 protected void onPrepareDialogBuilder(AlertDialog.Builder builder) {
90 super.onPrepareDialogBuilder(builder);
92 getCustomizablePreference().onPrepareDialogBuilder(builder, this);
  /packages/apps/Settings/src/com/android/settings/fingerprint/
SetupSkipDialog.java 62 public AlertDialog.Builder onCreateDialogBuilder() {
64 return new AlertDialog.Builder(getContext())
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
ConfirmClearCacheFragment.java 46 actions.add(new GuidedAction.Builder(getContext())
49 actions.add(new GuidedAction.Builder(getContext())
ForgetPrivateConfirmFragment.java 49 actions.add(new GuidedAction.Builder(getContext())
52 actions.add(new GuidedAction.Builder(getContext())
FormatAsPrivateStepFragment.java 58 actions.add(new GuidedAction.Builder(getContext())
61 actions.add(new GuidedAction.Builder(getContext())
66 /* actions.add(new GuidedAction.Builder()
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/name/
DeviceNameSetFragment.java 51 actions.add(new GuidedAction.Builder()
56 actions.add(new GuidedAction.Builder()
DeviceNameSummaryFragment.java 52 actions.add(new GuidedAction.Builder(context)
56 actions.add(new GuidedAction.Builder(context)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
AdbKeysDialog.java 53 actions.add(new GuidedAction.Builder(context)
55 actions.add(new GuidedAction.Builder(context)
  /packages/services/Car/car-lib/src/android/car/media/
CarAudioManager.java 99 AudioAttributes.Builder builder = new AudioAttributes.Builder(); local
100 return builder.setContentType(AudioAttributes.CONTENT_TYPE_UNKNOWN).
  /packages/services/Telephony/src/com/android/phone/
HfaActivity.java 84 mDialog = new AlertDialog.Builder(this, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT)
111 AlertDialog errorDialog = new AlertDialog.Builder(this,
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 42 Builder(cgm, cgm.getModule().getContext(), llvm::ConstantFolder(),
82 Builder.SetFastMathFlags(FMF);
225 llvm::BasicBlock *CurBB = Builder.GetInsertBlock();
251 Builder.SetInsertPoint(BI->getParent());
294 DI->EmitLocation(Builder, LastStopPoint);
296 DI->EmitLocation(Builder, EndLoc);
312 DI->EmitLocation(Builder, EndLoc);
325 DI->EmitFunctionEnd(Builder);
340 Builder.ClearInsertionPoint();
410 llvm::CallInst *CallSite = Builder.CreateCall
    [all...]
CGDecl.cpp 292 else if (Builder.GetInsertBlock()) {
445 CGF.Builder.CreateFlagLoad(NRVOFlag, "nrvo.val");
446 CGF.Builder.CreateCondBr(DidNRVO, SkipDtorBB, RunDtorBB);
463 llvm::Value *V = CGF.Builder.CreateLoad(Stack);
465 CGF.Builder.CreateCall(F, V);
508 CGF.Builder.CreateBitCast(Addr, CGF.ConvertType(ArgTy));
627 srcAddr = CGF.Builder.CreateElementBitCast(srcAddr,
841 bool isVolatile, CGBuilderTy &Builder) {
848 Builder.CreateDefaultAlignedStore(Init, Loc, isVolatile);
860 Elt, Builder.CreateConstGEP2_32(Init->getType(), Loc, 0, i)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
BaseEmulatorActivity.java 89 AlertDialog.Builder builder = new AlertDialog.Builder(this); local
90 builder.setTitle("Note");
91 builder.setMessage(stringId);
93 builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
102 builder.show();
173 AlertDialog.Builder builder = new AlertDialog.Builder(this) local
185 AlertDialog.Builder builder = new AlertDialog.Builder(this); local
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
Camera2Focuser.java 62 private CaptureRequest.Builder mRepeatingBuilder;
215 CaptureRequest.Builder requestBuilder = createRequestBuilder();
244 CaptureRequest.Builder requestBuilder = createRequestBuilder();
267 CaptureRequest.Builder requestBuilder = createRequestBuilder();
294 * Create request builder, set the af regions.
297 private CaptureRequest.Builder createRequestBuilder() throws CameraAccessException {
298 CaptureRequest.Builder requestBuilder =
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessagingService.java 97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_REMOTE_REPLY)
108 NotificationCompat.Action actionReplyByRemoteInput = new NotificationCompat.Action.Builder(
115 UnreadConversation.Builder unreadConvBuilder =
116 new UnreadConversation.Builder(conversation.getParticipantName())
121 // Note: Add messages from oldest to newest to the UnreadConversation.Builder
133 NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()) local
150 mNotificationManager.notify(conversation.getConversationId(), builder.build());
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessagingService.java 97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_REMOTE_REPLY)
108 NotificationCompat.Action actionReplyByRemoteInput = new NotificationCompat.Action.Builder(
115 UnreadConversation.Builder unreadConvBuilder =
116 new UnreadConversation.Builder(conversation.getParticipantName())
121 // Note: Add messages from oldest to newest to the UnreadConversation.Builder
133 NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()) local
150 mNotificationManager.notify(conversation.getConversationId(), builder.build());
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessagingService.java 97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_REMOTE_REPLY)
108 NotificationCompat.Action actionReplyByRemoteInput = new NotificationCompat.Action.Builder(
115 UnreadConversation.Builder unreadConvBuilder =
116 new UnreadConversation.Builder(conversation.getParticipantName())
121 // Note: Add messages from oldest to newest to the UnreadConversation.Builder
133 NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()) local
150 mNotificationManager.notify(conversation.getConversationId(), builder.build());
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Binding.java 109 ImmutableSet.Builder<String> bindingPackagesBuilder = ImmutableSet.builder();
182 ImmutableSet.Builder<String> packages = ImmutableSet.builder();
183 typeMirror.accept(new SimpleTypeVisitor6<Void, ImmutableSet.Builder<String>>() {
185 public Void visitArray(ArrayType t, ImmutableSet.Builder<String> p) {
190 public Void visitDeclared(DeclaredType t, ImmutableSet.Builder<String> p) {
209 public Void visitWildcard(WildcardType t, ImmutableSet.Builder<String> p) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
AlertDialogTask.java 21 import android.app.AlertDialog.Builder;
171 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); local
173 builder.setTitle(mTitle);
177 builder.setMessage(mMessage);
182 builder.setSingleChoiceItems(getItemsAsCharSequenceArray(), mSelectedItems.iterator().next(),
197 builder.setMultiChoiceItems(getItemsAsCharSequenceArray(), selectedItems,
211 builder.setItems(getItemsAsCharSequenceArray(), new DialogInterface.OnClickListener() {
226 builder.setView(mEditText)
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
LogTransformer.java 58 * Builder provides a flexible way of configuring some of many options on the
62 * ://rwhansen.blogspot.com/2007/07/theres-builder-pattern-that-joshua.html}
65 public static class Builder {
69 * this Builder.
90 public Builder addEntryExit(boolean b) {
97 // private Builder addVariableAssignment(boolean b) {
112 public Builder verbose(boolean b) {
119 public Builder ignore(String[] strings) {
126 public Builder level(String level) {
142 private LogTransformer(Builder builder)
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java 85 * <p>The {@link Notification.Builder Notification.Builder} has been added to make it
151 * Maximum length of CharSequences accepted by Builder and friends.
159 * Maximum entries of reply text that are accepted by Builder and friends.
186 * {@link android.app.Notification.Builder#setShowWhen(boolean)}
198 * @deprecated Use {@link Builder#setSmallIcon(Icon)} instead.
221 * {@link Notification.Builder} has displayed the number in the expanded notification view.
259 * @see Notification.Builder#setFullScreenIntent
287 * to {@link Notification.Builder}; a custom RemoteViews can optionally be
288 * supplied with {@link Notification.Builder#setCustomContentView(RemoteViews)}
1813 SpannableStringBuilder builder = new SpannableStringBuilder(ss.toString()); local
2056 final Notification.Builder builder = new Notification.Builder(context, this); local
3643 final Builder builder = recoverBuilder(mContext, mN.publicVersion); local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
Camera2Focuser.java 65 private CaptureRequest.Builder mRepeatingBuilder;
218 CaptureRequest.Builder requestBuilder = createRequestBuilder();
247 CaptureRequest.Builder requestBuilder = createRequestBuilder();
270 CaptureRequest.Builder requestBuilder = createRequestBuilder();
297 * Create request builder, set the af regions.
300 private CaptureRequest.Builder createRequestBuilder() throws CameraAccessException {
301 CaptureRequest.Builder requestBuilder =

Completed in 1401 milliseconds

<<31323334353637383940>>