HomeSort by relevance Sort by last modified time
    Searched refs:Builder (Results 276 - 300 of 4612) sorted by null

<<11121314151617181920>>

  /external/protobuf/java/core/src/test/java/com/google/protobuf/
FieldPresenceTest.java 89 UnittestProto.TestAllTypes.Builder.class,
90 TestAllTypes.Builder.class,
93 UnittestProto.TestAllTypes.Builder.class,
94 TestAllTypes.Builder.class,
97 UnittestProto.TestAllTypes.Builder.class,
98 TestAllTypes.Builder.class,
101 UnittestProto.TestAllTypes.Builder.class,
102 TestAllTypes.Builder.class,
128 UnittestProto.TestAllTypes.Builder.class,
129 TestAllTypes.Builder.class
146 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
160 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
237 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
261 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
287 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
312 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
346 TestAllTypes.Builder builder = TestAllTypes.newBuilder(); local
    [all...]
  /external/clang/lib/CodeGen/
CGVTT.cpp 45 VTTBuilder Builder(CGM.getContext(), RD, /*GenerateDefinition=*/true);
49 llvm::ArrayType::get(Int8PtrTy, Builder.getVTTComponents().size());
53 for (const VTTVTable *i = Builder.getVTTVTables().begin(),
54 *e = Builder.getVTTVTables().end(); i != e; ++i) {
61 for (const VTTComponent *i = Builder.getVTTComponents().begin(),
62 *e = Builder.getVTTComponents().end(); i != e; ++i) {
63 const VTTVTable &VTTVT = Builder.getVTTVTables()[i->VTableIndex];
116 VTTBuilder Builder(CGM.getContext(), RD, /*GenerateDefinition=*/false);
119 llvm::ArrayType::get(CGM.Int8PtrTy, Builder.getVTTComponents().size());
136 VTTBuilder Builder(CGM.getContext(), RD, /*GenerateDefinition=*/false)
    [all...]
CGBuiltin.cpp 67 return CGF.Builder.CreatePtrToInt(V, IntType);
78 return CGF.Builder.CreateIntToPtr(V, ResultType);
104 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
109 llvm::Value *Result = CGF.Builder.CreateAtomicRMW(
120 Value *BC = CGF.Builder.CreateBitCast(
168 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
170 llvm::Value *Result = CGF.Builder.CreateAtomicRMW(
172 Result = CGF.Builder.CreateBinOp(Op, Result, Args[1]);
174 Result = CGF.Builder.CreateBinOp(llvm::Instruction::Xor, Result,
202 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocalePriorityList.java 84 * @return internal builder, for chaining
86 public static Builder add(ULocale... languageCode) {
87 return new Builder().add(languageCode);
95 * @return internal builder, for chaining
97 public static Builder add(ULocale languageCode, final double weight) {
98 return new Builder().add(languageCode, weight);
105 * @return internal builder, for chaining
107 public static Builder add(LocalePriorityList languagePriorityList) {
108 return new Builder().add(languagePriorityList);
116 * @return internal builder, for chainin
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocalePriorityList.java 83 * @return internal builder, for chaining
86 public static Builder add(ULocale... languageCode) {
87 return new Builder().add(languageCode);
95 * @return internal builder, for chaining
98 public static Builder add(ULocale languageCode, final double weight) {
99 return new Builder().add(languageCode, weight);
106 * @return internal builder, for chaining
109 public static Builder add(LocalePriorityList languagePriorityList) {
110 return new Builder().add(languagePriorityList);
118 * @return internal builder, for chainin
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
ConnectionSpec.java 35 * <p>Use {@link Builder#allEnabledTlsVersions()} and {@link Builder#allEnabledCipherSuites} to
64 public static final ConnectionSpec MODERN_TLS = new Builder(true)
71 public static final ConnectionSpec COMPATIBLE_TLS = new Builder(MODERN_TLS)
77 public static final ConnectionSpec CLEARTEXT = new Builder(false).build();
84 private ConnectionSpec(Builder builder) {
85 this.tls = builder.tls;
86 this.cipherSuites = builder.cipherSuites;
87 this.tlsVersions = builder.tlsVersions
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ProgramStore.java 237 ProgramStore.Builder builder = new ProgramStore.Builder(rs); local
238 builder.setDepthFunc(ProgramStore.DepthFunc.LESS);
239 builder.setBlendFunc(BlendSrcFunc.ONE, BlendDstFunc.ZERO);
240 builder.setDitherEnabled(false);
241 builder.setDepthMaskEnabled(true);
242 rs.mProgramStore_BLEND_NONE_DEPTH_TEST = builder.create();
258 ProgramStore.Builder builder = new ProgramStore.Builder(rs) local
282 ProgramStore.Builder builder = new ProgramStore.Builder(rs); local
304 ProgramStore.Builder builder = new ProgramStore.Builder(rs); local
    [all...]
ProgramFragmentFixedFunction.java 46 * of the builder
84 public static class Builder {
227 * Creates a builder for fixed function fragment program
231 public Builder(RenderScript rs) {
251 public Builder setTexture(EnvMode env, Format fmt, int slot)
267 public Builder setPointSpriteTexCoordinateReplacement(boolean enable) {
280 public Builder setVaryingColor(boolean enable) {
288 * state of the builder.
304 Element.Builder b = new Element.Builder(mRS)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripItemData.java 180 public static class Builder {
196 public Builder(Uri uri) {
216 public static Builder from(FilmstripItemData data) {
217 Builder builder = new Builder(data.getUri()); local
218 builder.mContentId = data.getContentId();
219 builder.mTitle = data.getTitle();
220 builder.mMimeType = data.getMimeType();
221 builder.mCreationDate = data.getCreationDate()
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
WifiInfo.java 105 private static Builder createBuilderFromPersistableBundle(PersistableBundle bundle) {
106 Builder builder = new Builder(); local
107 builder.setSsid(bundle.getString(EXTRA_PROVISIONING_WIFI_SSID));
108 builder.setHidden(bundle.getBoolean(EXTRA_PROVISIONING_WIFI_HIDDEN));
109 builder.setSecurityType(bundle.getString(EXTRA_PROVISIONING_WIFI_SECURITY_TYPE));
110 builder.setPassword(bundle.getString(EXTRA_PROVISIONING_WIFI_PASSWORD));
111 builder.setProxyHost(bundle.getString(EXTRA_PROVISIONING_WIFI_PROXY_HOST));
112 builder.setProxyPort(bundle.getInt(EXTRA_PROVISIONING_WIFI_PROXY_PORT))
196 public static Builder builder() { method in class:WifiInfo.Builder
    [all...]
  /cts/tests/pdf/src/android/graphics/pdf/cts/
PdfDocumentTest.java 85 verifyException(() -> doc.startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create()),
94 .startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create());
106 .startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create());
129 .startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create());
145 .startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create());
146 verifyException(() -> doc.startPage(new PdfDocument.PageInfo.Builder(100, 100, 1).create()),
159 .startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create());
163 .startPage(new PdfDocument.PageInfo.Builder(100, 100, 0).create());
177 .startPage(new PdfDocument.PageInfo.Builder(101, 100, 0).create());
180 .startPage(new PdfDocument.PageInfo.Builder(201, 200, 0).create())
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 25 ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder,
30 BoundNodesTreeBuilder *Builder,
35 BoundNodesTreeBuilder *Builder,
40 BoundNodesTreeBuilder *Builder,
56 BoundNodesTreeBuilder *Builder, ArrayRef<DynTypedMatcher> InnerMatchers);
66 BoundNodesTreeBuilder *Builder) const override {
67 return Func(DynNode, Finder, Builder, InnerMatchers);
82 BoundNodesTreeBuilder *Builder) const override {
83 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder);
84 if (Result) Builder->setBinding(ID, DynNode)
    [all...]
  /frameworks/support/tv-provider/src/android/support/media/tv/
Channel.java 44 * Channel channel = new Channel.Builder()
66 * Channel updatedChannel = new Channel.Builder(channel)
97 private Channel(Builder builder) {
98 mValues = builder.mValues;
399 Builder builder = new Builder(); local
402 builder.setId(cursor.getLong(index));
406 builder.setDescription(cursor.getString(index))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 62 static Value *generateMinMaxSelectPattern(InstCombiner::BuilderTy *Builder,
67 return Builder->CreateSelect(Builder->CreateICmp(Pred, A, B), A, B);
157 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
202 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
250 Value *NewSel = Builder->CreateSelect(SI.getCondition(), OOp, C);
280 Value *NewSel = Builder->CreateSelect(SI.getCondition(), C, OOp);
311 InstCombiner::BuilderTy *Builder) {
342 V = Builder->CreateZExtOrTrunc(V, Y->getType());
343 V = Builder->CreateShl(V, C2Log - C1Log)
    [all...]
  /frameworks/support/recommendation/src/android/support/app/recommendation/
ContentRecommendation.java 63 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
69 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
75 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
81 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
88 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
94 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
100 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
106 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
112 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referred
118 * Value to be used with {@link Builder#setContentTypes} to indicate that the content referre
1081 Notification.Builder builder = new Notification.Builder(context); local
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyPairGeneratorSpecTest.java 43 KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(getContext())
65 KeyPairGeneratorSpec spec = new KeyPairGeneratorSpec.Builder(getContext())
89 new KeyPairGeneratorSpec.Builder(null);
97 new KeyPairGeneratorSpec.Builder(getContext())
110 new KeyPairGeneratorSpec.Builder(getContext())
123 new KeyPairGeneratorSpec.Builder(getContext())
136 new KeyPairGeneratorSpec.Builder(getContext())
149 new KeyPairGeneratorSpec.Builder(getContext())
162 new KeyPairGeneratorSpec.Builder(getContext())
  /external/llvm/tools/bugpoint/
bugpoint.cpp 170 PassManagerBuilder Builder;
171 Builder.Inliner = createFunctionInliningPass();
172 Builder.populateLTOPassManager(PM);
176 PassManagerBuilder Builder;
178 Builder.Inliner = createAlwaysInlinerPass();
180 Builder.Inliner = createFunctionInliningPass(225);
182 Builder.Inliner = createFunctionInliningPass(275);
183 Builder.populateFunctionPassManager(PM);
184 Builder.populateModulePassManager(PM);
  /frameworks/base/core/java/android/bluetooth/le/
ScanSettings.java 259 * Builder for {@link ScanSettings}.
261 public static final class Builder {
279 public Builder setScanMode(int scanMode) {
293 public Builder setCallbackType(int callbackType) {
322 public Builder setScanResultType(int scanResultType) {
340 public Builder setReportDelay(long reportDelayMillis) {
357 public Builder setNumOfMatches(int numOfMatches) {
374 public Builder setMatchMode(int matchMode) {
391 public Builder setLegacy(boolean legacy) {
398 * This is used only if {@link ScanSettings.Builder#setLegacy
    [all...]
  /frameworks/base/core/java/android/view/textclassifier/
TextClassification.java 41 static final TextClassification EMPTY = new TextClassification.Builder().build();
170 * Builder for building {@link TextClassification} objects.
172 public static final class Builder {
186 public Builder setText(@NonNull String text) {
198 public Builder setEntityType(
208 public Builder setIcon(@Nullable Drawable icon) {
216 public Builder setLabel(@Nullable String label) {
224 public Builder setIntent(@Nullable Intent intent) {
233 public Builder setLogType(int type) {
241 public Builder setOnClickListener(@Nullable OnClickListener onClickListener)
    [all...]
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapWorkerOptions.java 52 public static class Builder {
64 public Builder(Context context) {
100 public Builder resource(String packageName, String resourceName) {
106 public Builder resource(ShortcutIconResource iconResource) {
112 public Builder resource(Uri resourceUri) {
117 public Builder width(int width) {
126 public Builder height(int height) {
135 public Builder cacheFlag(int flag) {
140 public Builder bitmapConfig(Bitmap.Config config) {
150 * Use a {@link Builder} to create
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
PKIXExtendedParameters.java 50 * Builder for a PKIXExtendedParameters object.
52 public static class Builder
67 public Builder(PKIXParameters baseParameters)
73 this.targetConstraints = new PKIXCertStoreSelector.Builder(constraints).build();
81 public Builder(PKIXExtendedParameters baseParameters)
96 public Builder addCertificateStore(PKIXCertStore store)
103 public Builder addNamedCertificateStore(GeneralName issuerAltName, PKIXCertStore store)
110 public Builder addCRLStore(PKIXCRLStore store)
117 public Builder addNamedCRLStore(GeneralName issuerAltName, PKIXCRLStore store)
124 public Builder setTargetConstraints(PKIXCertStoreSelector selector
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 58 BuilderTy *Builder;
80 IRBuilder<>::InsertPointGuard Guard(*Builder);
82 Builder->SetInsertPoint(TrapBB);
85 CallInst *TrapCall = Builder->CreateCall(F, {});
89 Builder->CreateUnreachable();
109 BasicBlock::iterator Inst = Builder->GetInsertPoint();
153 Value *ObjSize = Builder->CreateSub(Size, Offset);
154 Value *Cmp2 = Builder->CreateICmpULT(Size, Offset);
155 Value *Cmp3 = Builder->CreateICmpULT(ObjSize, NeededSizeVal);
156 Value *Or = Builder->CreateOr(Cmp2, Cmp3)
    [all...]
  /external/skia/include/gpu/
GrResourceKey.h 83 class Builder {
85 Builder(GrResourceKey* key, uint32_t domain, int data32Count) : fKey(key) {
95 ~Builder() { this->finish(); }
179 /** Creates an invalid scratch key. It must be initialized using a Builder object before use. */
201 class Builder : public INHERITED::Builder {
203 Builder(GrScratchKey* key, ResourceType type, int data32Count)
204 : INHERITED::Builder(key, type, data32Count) {}
231 /** Creates an invalid unique key. It must be initialized using a Builder object before use. */
262 class Builder : public INHERITED::Builder
    [all...]
  /frameworks/base/core/java/android/security/net/config/
NetworkSecurityConfig.java 162 * Return a {@link Builder} for the default {@code NetworkSecurityConfig}.
178 public static final Builder getDefaultBuilder(int targetSdkVersion, int targetSandboxVesrsion) {
179 Builder builder = new Builder() local
185 builder.setCleartextTrafficPermitted(cleartextTrafficPermitted);
190 builder.addCertificatesEntryRef(
193 return builder;
197 * Builder for creating {@code NetworkSecurityConfig} objects.
200 public static final class Builder {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/voicemail/error/
VoicemailStatus.java 139 private VoicemailStatus(Builder builder) {
140 sourcePackage = builder.sourcePackage;
141 phoneAccountComponentName = builder.phoneAccountComponentName;
142 phoneAccountId = builder.phoneAccountId;
143 type = builder.type;
144 settingsUri = builder.settingsUri;
145 voicemailAccessUri = builder.voicemailAccessUri;
146 configurationState = builder.configurationState;
147 dataChannelState = builder.dataChannelState
    [all...]

Completed in 492 milliseconds

<<11121314151617181920>>