/external/guice/core/test/com/google/inject/ |
BinderTestSuite.java | 50 new Builder() 60 new Builder() 71 new Builder() 82 new Builder() 87 new Builder() 92 new Builder() 98 new Builder() 106 new Builder() 114 new Builder() 122 new Builder() [all...] |
/external/clang/lib/CodeGen/ |
CGCleanup.cpp | 47 CGF.Builder.CreateStore(V, addr); 57 CGF.Builder.CreateStore(V.first, 58 CGF.Builder.CreateStructGEP(addr, 0, CharUnits())); 61 CGF.Builder.CreateStore(V.second, 62 CGF.Builder.CreateStructGEP(addr, 1, offset)); 74 CGF.Builder.CreateStore(V.getPointer(), addr); 91 return RValue::get(CGF.Builder.CreateLoad(getSavingAddress(Value))); 95 auto addr = CGF.Builder.CreateLoad(getSavingAddress(Value)); 100 llvm::Value *real = CGF.Builder.CreateLoad( 101 CGF.Builder.CreateStructGEP(address, 0, CharUnits())) [all...] |
/cts/tests/tests/print/src/android/print/cts/ |
PrinterCapabilitiesTest.java | 78 assertException(() -> new PrinterCapabilitiesInfo.Builder(null), 84 (new PrinterCapabilitiesInfo.Builder(printerId)) 91 (new PrinterCapabilitiesInfo.Builder(printerId)) 97 (new PrinterCapabilitiesInfo.Builder(printerId)) 103 (new PrinterCapabilitiesInfo.Builder(printerId)) 111 (new PrinterCapabilitiesInfo.Builder(printerId)) 120 (new PrinterCapabilitiesInfo.Builder(printerId)) 126 (new PrinterCapabilitiesInfo.Builder(printerId)) 134 (new PrinterCapabilitiesInfo.Builder(printerId)) 143 (new PrinterCapabilitiesInfo.Builder(printerId) [all...] |
PrintDocumentAdapterContractTest.java | 87 PrintDocumentInfo info = new PrintDocumentInfo.Builder(PRINT_JOB_NAME) 144 PrintAttributes firstOldAttributes = new PrintAttributes.Builder().build(); 145 PrintAttributes firstNewAttributes = new PrintAttributes.Builder() 164 PrintAttributes secondNewAttributes = new PrintAttributes.Builder() 216 PrintAttributes firstOldAttributes = new PrintAttributes.Builder().build(); 217 PrintAttributes firstNewAttributes = new PrintAttributes.Builder() 252 callback.onLayoutFinished(new PrintDocumentInfo.Builder(PRINT_JOB_NAME) 323 callback.onLayoutFinished(new PrintDocumentInfo.Builder(PRINT_JOB_NAME) 391 PrintDocumentInfo info = new PrintDocumentInfo.Builder(PRINT_JOB_NAME) 475 PrintAttributes firstOldAttributes = new PrintAttributes.Builder().build() [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
ConnectionSpecTest.java | 35 new ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS) 46 new ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS) 56 ConnectionSpec cleartextSpec = new ConnectionSpec.Builder(false).build(); 61 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(true) 72 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(true) 82 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(true) 110 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(true) 141 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(true) 172 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS) 179 ConnectionSpec tlsSpec = new ConnectionSpec.Builder(true [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/job/ |
JobStoreTest.java | 7 import android.app.job.JobInfo.Builder; 53 final JobInfo task = new Builder(taskId, mComponent) 81 final JobInfo task1 = new Builder(8, mComponent) 87 final JobInfo task2 = new Builder(12, mComponent) 131 JobInfo.Builder b = new Builder(8, mComponent) 155 JobInfo.Builder b = new Builder(8, mComponent) 177 JobInfo.Builder b = new Builder(8, mComponent [all...] |
/packages/apps/TV/src/com/android/tv/parental/ |
ContentRatingSystem.java | 170 public static class Builder { 177 private final List<Rating.Builder> mRatingBuilders = new ArrayList<>(); 178 private final List<SubRating.Builder> mSubRatingBuilders = new ArrayList<>(); 179 private final List<Order.Builder> mOrderBuilders = new ArrayList<>(); 182 public Builder(Context context) { 209 public void addRatingBuilder(Rating.Builder ratingBuilder) { 218 public void addSubRatingBuilder(SubRating.Builder subRatingBuilder) { 223 public void addOrderBuilder(Order.Builder orderBuilder) { 268 for (SubRating.Builder builder : mSubRatingBuilders) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy-jit.cpp | 627 static IRBuilder<> Builder(TheContext); 651 return Builder.CreateLoad(V, Name.c_str()); 665 return Builder.CreateCall(F, OperandV, "unop"); 686 Builder.CreateStore(Val, Variable); 695 case '+': return Builder.CreateFAdd(L, R, "addtmp"); 696 case '-': return Builder.CreateFSub(L, R, "subtmp"); 697 case '*': return Builder.CreateFMul(L, R, "multmp"); 698 case '/': return Builder.CreateFDiv(L, R, "divtmp"); 700 L = Builder.CreateFCmpULT(L, R, "cmptmp"); 702 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp") [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 856 static IRBuilder<> Builder(TheContext); 882 return Builder.CreateLoad(V, Name.c_str()); 893 return Builder.CreateCall(F, OperandV, "unop"); 911 Builder.CreateStore(Val, Variable); 920 case '+': return Builder.CreateFAdd(L, R, "addtmp"); 921 case '-': return Builder.CreateFSub(L, R, "subtmp"); 922 case '*': return Builder.CreateFMul(L, R, "multmp"); 923 case '/': return Builder.CreateFDiv(L, R, "divtmp"); 925 L = Builder.CreateFCmpULT(L, R, "cmptmp"); 927 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp") [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy-jit.cpp | 612 static IRBuilder<> Builder(TheContext); 636 return Builder.CreateLoad(V, Name.c_str()); 650 return Builder.CreateCall(F, OperandV, "unop"); 668 Builder.CreateStore(Val, Variable); 677 case '+': return Builder.CreateFAdd(L, R, "addtmp"); 678 case '-': return Builder.CreateFSub(L, R, "subtmp"); 679 case '*': return Builder.CreateFMul(L, R, "multmp"); 680 case '/': return Builder.CreateFDiv(L, R, "divtmp"); 682 L = Builder.CreateFCmpULT(L, R, "cmptmp"); 684 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp") [all...] |
toy.cpp | 896 static IRBuilder<> Builder(TheContext); 922 return Builder.CreateLoad(V, Name.c_str()); 933 return Builder.CreateCall(F, OperandV, "unop"); 951 Builder.CreateStore(Val, Variable); 960 case '+': return Builder.CreateFAdd(L, R, "addtmp"); 961 case '-': return Builder.CreateFSub(L, R, "subtmp"); 962 case '*': return Builder.CreateFMul(L, R, "multmp"); 963 case '/': return Builder.CreateFDiv(L, R, "divtmp"); 965 L = Builder.CreateFCmpULT(L, R, "cmptmp"); 967 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp") [all...] |
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUPromoteAlloca.cpp | 45 std::pair<Value *, Value *> getLocalSizeYZ(IRBuilder<> &Builder); 46 Value *getWorkitemID(IRBuilder<> &Builder, unsigned N); 231 AMDGPUPromoteAlloca::getLocalSizeYZ(IRBuilder<> &Builder) { 238 CallInst *LocalSizeY = Builder.CreateCall(LocalSizeYFn, {}); 239 CallInst *LocalSizeZ = Builder.CreateCall(LocalSizeZFn, {}); 284 CallInst *DispatchPtr = Builder.CreateCall(DispatchPtrFn, {}); 292 Value *CastDispatchPtr = Builder.CreateBitCast( 298 Value *GEPXY = Builder.CreateConstInBoundsGEP1_64(CastDispatchPtr, 1); 299 LoadInst *LoadXY = Builder.CreateAlignedLoad(GEPXY, 4); 301 Value *GEPZU = Builder.CreateConstInBoundsGEP1_64(CastDispatchPtr, 2) [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
InstCombineAndOrXor.cpp | 142 InstCombiner::BuilderTy *Builder) { 157 return Builder->CreateICmp(Pred, LHS, RHS); 165 InstCombiner::BuilderTy *Builder) { 180 return Builder->CreateFCmp(Pred, LHS, RHS); 207 Value *And = Builder->CreateAnd(X, AndRHS); 216 Value *Or = Builder->CreateOr(X, Together); 227 Value *And = Builder->CreateAnd(X, Together); 259 Value *NewAnd = Builder->CreateAnd(X, AndRHS); 323 ShVal = Builder->CreateLShr(ShVal, OpRHS, Op->getName()); 352 return Builder->CreateICmp(pred, V, Hi) [all...] |
/frameworks/base/core/java/android/os/ |
StrictMode.java | 84 * StrictMode.setThreadPolicy(new {@link ThreadPolicy.Builder StrictMode.ThreadPolicy.Builder}() 90 * StrictMode.setVmPolicy(new {@link VmPolicy.Builder StrictMode.VmPolicy.Builder}() 102 * For example, using {@link ThreadPolicy.Builder#penaltyLog} you can 147 * in {@link VmPolicy.Builder#detectAll()}. Apps can still always opt-into 148 * detection using {@link VmPolicy.Builder#detectCleartextNetwork()}. 405 * StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder() 412 public static final class Builder { 416 * Create a Builder that detects nothing and has n [all...] |
/developers/build/prebuilts/gradle/WearNotifications/Application/src/main/java/com/example/android/wearable/wear/wearnotifications/handlers/ |
BigPictureSocialIntentService.java | 82 * Notification (and updates) and pass it to the builder. This is the approach used in 86 * approach requires you to store a reference to the original builder. The benefit is 92 * to update, retain the Builder as option 2 outlines. 95 // Retrieves NotificationCompat.Builder used to create initial Notification 96 NotificationCompat.Builder notificationCompatBuilder = 99 // Recreate builder from persistent state if app process is killed 101 // Note: New builder set globally in the method 133 private NotificationCompat.Builder recreateBuilderWithBigPictureStyle() { 174 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT) 191 new NotificationCompat.Action.Builder( [all...] |
BigTextIntentService.java | 87 // builder globally and get the notification back to recreate it later. 89 NotificationCompat.Builder notificationCompatBuilder = 92 // Recreate builder from persistent state if app process is killed 94 // Note: New builder set globally in the method 122 private NotificationCompat.Builder recreateBuilderWithBigTextStyle() { 163 new NotificationCompat.Action.Builder( 176 new NotificationCompat.Action.Builder( 183 NotificationCompat.Builder notificationCompatBuilder = 184 new NotificationCompat.Builder(getApplicationContext());
|
/developers/build/prebuilts/gradle/WearNotifications/Wearable/src/main/java/com/example/android/wearable/wear/wearnotifications/handlers/ |
BigPictureSocialIntentService.java | 80 * Notification (and updates) and pass it to the builder. This is the approach used in 84 * approach requires you to store a reference to the original builder. The benefit is 90 * to update, retain the Builder as option 2 outlines. 93 // Retrieves NotificationCompat.Builder used to create initial Notification 94 NotificationCompat.Builder notificationCompatBuilder = 97 // Recreate builder from persistent state if app process is killed 99 // Note: New builder set globally in the method 133 private NotificationCompat.Builder recreateBuilderWithBigPictureStyle() { 171 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT) 188 new NotificationCompat.Action.Builder( [all...] |
/developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/ |
Message.java | 37 private Message(Builder builder) { 38 id = builder.id; 39 senderId = builder.senderId; 40 text = builder.text; 75 /** Message Builder */ 76 public static final class Builder { 81 public Builder() {} 83 public Builder id(String val) { 88 public Builder senderId(String val) [all...] |
/developers/samples/android/wearable/wear/WearNotifications/Application/src/main/java/com/example/android/wearable/wear/wearnotifications/handlers/ |
BigPictureSocialIntentService.java | 82 * Notification (and updates) and pass it to the builder. This is the approach used in 86 * approach requires you to store a reference to the original builder. The benefit is 92 * to update, retain the Builder as option 2 outlines. 95 // Retrieves NotificationCompat.Builder used to create initial Notification 96 NotificationCompat.Builder notificationCompatBuilder = 99 // Recreate builder from persistent state if app process is killed 101 // Note: New builder set globally in the method 133 private NotificationCompat.Builder recreateBuilderWithBigPictureStyle() { 174 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT) 191 new NotificationCompat.Action.Builder( [all...] |
BigTextIntentService.java | 87 // builder globally and get the notification back to recreate it later. 89 NotificationCompat.Builder notificationCompatBuilder = 92 // Recreate builder from persistent state if app process is killed 94 // Note: New builder set globally in the method 122 private NotificationCompat.Builder recreateBuilderWithBigTextStyle() { 163 new NotificationCompat.Action.Builder( 176 new NotificationCompat.Action.Builder( 183 NotificationCompat.Builder notificationCompatBuilder = 184 new NotificationCompat.Builder(getApplicationContext());
|
/developers/samples/android/wearable/wear/WearNotifications/Wearable/src/main/java/com/example/android/wearable/wear/wearnotifications/handlers/ |
BigPictureSocialIntentService.java | 80 * Notification (and updates) and pass it to the builder. This is the approach used in 84 * approach requires you to store a reference to the original builder. The benefit is 90 * to update, retain the Builder as option 2 outlines. 93 // Retrieves NotificationCompat.Builder used to create initial Notification 94 NotificationCompat.Builder notificationCompatBuilder = 97 // Recreate builder from persistent state if app process is killed 99 // Note: New builder set globally in the method 133 private NotificationCompat.Builder recreateBuilderWithBigPictureStyle() { 171 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT) 188 new NotificationCompat.Action.Builder( [all...] |
/development/samples/browseable/WearNotifications/Application/src/com.example.android.wearable.wear.wearnotifications/handlers/ |
BigPictureSocialIntentService.java | 82 * Notification (and updates) and pass it to the builder. This is the approach used in 86 * approach requires you to store a reference to the original builder. The benefit is 92 * to update, retain the Builder as option 2 outlines. 95 // Retrieves NotificationCompat.Builder used to create initial Notification 96 NotificationCompat.Builder notificationCompatBuilder = 99 // Recreate builder from persistent state if app process is killed 101 // Note: New builder set globally in the method 133 private NotificationCompat.Builder recreateBuilderWithBigPictureStyle() { 174 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT) 191 new NotificationCompat.Action.Builder( [all...] |
BigTextIntentService.java | 87 // builder globally and get the notification back to recreate it later. 89 NotificationCompat.Builder notificationCompatBuilder = 92 // Recreate builder from persistent state if app process is killed 94 // Note: New builder set globally in the method 122 private NotificationCompat.Builder recreateBuilderWithBigTextStyle() { 163 new NotificationCompat.Action.Builder( 176 new NotificationCompat.Action.Builder( 183 NotificationCompat.Builder notificationCompatBuilder = 184 new NotificationCompat.Builder(getApplicationContext());
|
/development/samples/browseable/WearNotifications/Wearable/src/com.example.android.wearable.wear.wearnotifications/handlers/ |
BigPictureSocialIntentService.java | 80 * Notification (and updates) and pass it to the builder. This is the approach used in 84 * approach requires you to store a reference to the original builder. The benefit is 90 * to update, retain the Builder as option 2 outlines. 93 // Retrieves NotificationCompat.Builder used to create initial Notification 94 NotificationCompat.Builder notificationCompatBuilder = 97 // Recreate builder from persistent state if app process is killed 99 // Note: New builder set globally in the method 133 private NotificationCompat.Builder recreateBuilderWithBigPictureStyle() { 171 new RemoteInput.Builder(BigPictureSocialIntentService.EXTRA_COMMENT) 188 new NotificationCompat.Action.Builder( [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
BenchmarkSpec.java | 55 private BenchmarkSpec(Builder builder) { 56 this.className = builder.className; 57 this.methodName = builder.methodName; 58 this.parameters = Maps.newTreeMap(builder.parameters); 116 public static final class Builder { 121 public Builder className(String className) { 126 public Builder methodName(String methodName) { 131 public Builder addParameter(String parameterName, String value) { 136 public Builder addAllParameters(Map<String, String> parameters) [all...] |