/packages/services/Telephony/src/com/android/phone/ |
PhoneDisplayMessage.java | 71 sDisplayMessageDialog = new AlertDialog.Builder(context)
|
/packages/services/Telephony/src/com/android/phone/settings/fdn/ |
EditPinPreference.java | 86 protected void onPrepareDialogBuilder(AlertDialog.Builder builder) { 87 super.onPrepareDialogBuilder(builder); 91 builder.setPositiveButton(null, this); 92 builder.setNegativeButton(null, this);
|
/packages/services/Telephony/src/com/android/services/telephony/ |
EmergencyTonePlayer.java | 44 new AudioAttributes.Builder()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/ |
FingerprintBoundKeysTest.java | 137 // and the constrains (purposes) in the constructor of the Builder 138 keyGenerator.init(new KeyGenParameterSpec.Builder(KEY_NAME, 288 AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); local 289 builder.setMessage(R.string.sec_fp_dialog_message); 290 return builder.create();
|
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/ |
AdvertiseDataTest.java | 33 private AdvertiseData.Builder mAdvertiseDataBuilder; 37 mAdvertiseDataBuilder = new AdvertiseData.Builder(); 172 AdvertiseData data = new AdvertiseData.Builder().build();
|
/cts/tests/tests/keystore/src/android/keystore/cts/ |
SecretKeyFactoryTest.java | 105 keyGenerator.init(new KeyGenParameterSpec.Builder("test1", purposes) 171 keyGenerator.init(new KeyGenParameterSpec.Builder("test1", 0).build()); 215 keyGenerator.init(new KeyGenParameterSpec.Builder("test1", 0).build());
|
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni_type.cpp | 39 Type::Builder b(mRS, e); 113 Type::Builder b(mRS, Element::F32(mRS)); 186 Type::Builder b(mRS, Element::F32(mRS));
|
/developers/build/prebuilts/gradle/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/ |
HomeListenerService.java | 67 mGoogleApiClient = new GoogleApiClient.Builder(this.getApplicationContext()) 134 Notification.Builder notificationBuilder = new Notification.Builder(this)
|
/developers/build/prebuilts/gradle/DelayedConfirmation/Wearable/src/main/java/com/example/android/wearable/delayedconfirmation/ |
MainActivity.java | 65 mGoogleApiClient = new GoogleApiClient.Builder(this) 101 Notification notification = new Notification.Builder(this) 115 Notification notification = new Notification.Builder(this)
|
/developers/samples/android/wearable/wear/AgendaData/Wearable/src/main/java/com/example/android/wearable/agendadata/ |
HomeListenerService.java | 67 mGoogleApiClient = new GoogleApiClient.Builder(this.getApplicationContext()) 134 Notification.Builder notificationBuilder = new Notification.Builder(this)
|
/developers/samples/android/wearable/wear/DelayedConfirmation/Wearable/src/main/java/com/example/android/wearable/delayedconfirmation/ |
MainActivity.java | 65 mGoogleApiClient = new GoogleApiClient.Builder(this) 101 Notification notification = new Notification.Builder(this) 115 Notification notification = new Notification.Builder(this)
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
StatusBarNotifications.java | 201 Notification.Builder notifBuidler = new Notification.Builder(this) // the context to use 258 Notification notification = new Notification.Builder(this) // the context to use
|
/development/samples/browseable/AgendaData/Wearable/src/com.example.android.wearable.agendadata/ |
HomeListenerService.java | 67 mGoogleApiClient = new GoogleApiClient.Builder(this.getApplicationContext()) 134 Notification.Builder notificationBuilder = new Notification.Builder(this)
|
/development/samples/browseable/DelayedConfirmation/Wearable/src/com.example.android.wearable.delayedconfirmation/ |
MainActivity.java | 65 mGoogleApiClient = new GoogleApiClient.Builder(this) 101 Notification notification = new Notification.Builder(this) 115 Notification notification = new Notification.Builder(this)
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
JarFinder.java | 101 private final ImmutableSet.Builder<File> jarFiles = new ImmutableSet.Builder<File>(); 173 ImmutableSet.Builder<URI> builder = ImmutableSet.builder(); local 186 builder.add(uri); 189 return builder.build();
|
/external/clang/lib/CodeGen/ |
CGCXX.cpp | 273 VTable = CGF.Builder.CreateBitCast(VTable, Ty); 281 CGF.Builder.CreateConstInBoundsGEP1_64(VTable, VTableIndex, "vfnkxt"); 282 return CGF.Builder.CreateAlignedLoad(VFuncPtr, CGF.PointerAlignInBytes);
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
ProvidesMethodValidator.java | 74 ValidationReport.Builder<ExecutableElement> builder = local 82 builder.addError( 87 builder.addError(formatErrorMessage(BINDING_METHOD_TYPE_PARAMETER), providesMethodElement); 92 builder.addError(formatErrorMessage(BINDING_METHOD_PRIVATE), providesMethodElement); 95 builder.addError(formatErrorMessage(BINDING_METHOD_ABSTRACT), providesMethodElement); 101 builder.addError( 108 builder.addError( 112 validateMethodQualifiers(builder, providesMethodElement); 117 validateKeyType(builder, returnType) [all...] |
/external/doclava/src/com/google/doclava/ |
SampleCode.java | 92 new Node.Builder().setLabel(mProjectDir).setLink(link).setChildren(filelist).build(),false); 128 new Node.Builder().setLabel(mProjectDir).setLink(link).build(), true); 154 parent.add(new Node.Builder().setLabel(name).setLink(ClearPage.toroot + link).build()); 161 parent.add(new Node.Builder().setLabel(name).setLink(ClearPage.toroot 426 Node node = new Node.Builder().setLabel("Samples").setLink(ClearPage.toroot 593 private Node(Builder builder) { 594 mLabel = builder.mLabel; 595 mLink = builder.mLink; 596 mGroup = builder.mGroup [all...] |
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
FuturesCombineBenchmark.java | 80 ImmutableList.Builder<ListenableFuture<?>> futuresBuilder = ImmutableList.builder(); 95 ImmutableList.Builder<ListenableFuture<?>> futuresBuilder = ImmutableList.builder(); 141 ImmutableList.Builder<SettableFuture<Integer>> futuresBuilder = ImmutableList.builder();
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableSetTest.java | 23 import com.google.common.collect.ImmutableSet.Builder; 197 Builder<Integer> builder = ImmutableSet.builder(); local 199 builder.add(i % setSize); 201 ImmutableSet<Integer> set = builder.build(); 218 @Override <E extends Comparable<E>> Builder<E> builder() { method in class:ImmutableSetTest 219 return ImmutableSet.builder();
|
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
Phonemetadata.java | 37 * Provides a dummy builder to 'emulate' the API of the code generated by the latest version of 41 public static final class Builder extends NumberFormat { 47 public static Builder newBuilder() { 48 return new Builder(); 195 * Provides a dummy builder. 197 * @see NumberFormat.Builder 199 public static final class Builder extends PhoneNumberDesc { 204 public static Builder newBuilder() { 205 return new Builder(); 297 * Provides a dummy builder [all...] |
/external/llvm/include/llvm/Analysis/ |
ScalarEvolutionExpander.h | 84 BuilderType Builder; 98 Builder(se.getContext(), TargetFolder(DL)) { 206 Builder.ClearInsertionPoint();
|
/external/llvm/lib/Target/AMDGPU/ |
R600TextureIntrinsicsReplacer.cpp | 124 IRBuilder<> Builder(&I); 133 Builder.CreateShuffleVector(Coord, Coord, SwizzleMask); 153 I.replaceAllUsesWith(Builder.CreateCall(F, Args));
|
/external/mesa3d/scons/ |
custom.py | 40 import SCons.Builder 70 Builder in an Environment if it is not there already. 85 convenience_lib = SCons.Builder.Builder(action = action_list,
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessageLite.java | 113 * A partial implementation of the {@link Message.Builder} interface which 118 public static abstract class Builder<BuilderType extends Builder> 119 implements MessageLite.Builder {
|