Home
last modified time | relevance | path

Searched +defs:val +defs:builder (Results 26 – 50 of 1761) sorted by relevance

12345678910>>...71

/aosp_15_r20/external/aws-sdk-java-v2/core/protocols/aws-json-protocol/src/main/java/software/amazon/awssdk/protocols/json/internal/marshall/
H A DJsonMarshallerRegistry.java29 private JsonMarshallerRegistry(Builder builder) { in JsonMarshallerRegistry()
34 public <T> JsonMarshaller<T> getMarshaller(MarshallLocation marshallLocation, T val) { in getMarshaller()
41 Object val) { in getMarshaller()
49 public static Builder builder() { in builder() method in JsonMarshallerRegistry
H A DJsonMarshallerContext.java35 private JsonMarshallerContext(Builder builder) { in JsonMarshallerContext()
79 public void marshall(MarshallLocation marshallLocation, Object val) { in marshall()
90 public <T> void marshall(MarshallLocation marshallLocation, T val, String paramName) { in marshall()
97 public static Builder builder() { in builder() method in JsonMarshallerContext
/aosp_15_r20/external/aws-sdk-java-v2/core/protocols/aws-xml-protocol/src/main/java/software/amazon/awssdk/protocols/xml/internal/marshall/
H A DXmlMarshallerRegistry.java26 private XmlMarshallerRegistry(Builder builder) { in XmlMarshallerRegistry()
31 public <T> XmlMarshaller<T> getMarshaller(MarshallLocation marshallLocation, T val) { in getMarshaller()
38 Object val) { in getMarshaller()
46 public static Builder builder() { in builder() method in XmlMarshallerRegistry
H A DXmlMarshallerContext.java31 public XmlMarshallerContext(Builder builder) { in XmlMarshallerContext()
69 public void marshall(MarshallLocation marshallLocation, Object val) { in marshall()
81 …public <T> void marshall(MarshallLocation marshallLocation, T val, String paramName, SdkField<T> s… in marshall()
89 public static Builder builder() { in builder() method in XmlMarshallerContext
H A DXmlProtocolMarshaller.java62 private XmlProtocolMarshaller(Builder builder) { in XmlProtocolMarshaller()
91 Object val = field.getValueOrDefault(pojo); in doMarshall() local
125 private boolean isBinary(SdkField<?> field, Object val) { in isBinary()
208 public static Builder builder() { in builder() method in XmlProtocolMarshaller
/aosp_15_r20/external/aws-sdk-java-v2/codegen/src/main/java/software/amazon/awssdk/codegen/poet/rules/
H A DTestGeneratorUtils.java110 …private static void addEndpointAttributeBlock(CodeBlock.Builder builder, String attrName, TreeNode… in addEndpointAttributeBlock()
124 …private static void addAttributeBlock(CodeBlock.Builder builder, TreeNode attrValue, KeyTypePair k… in addAttributeBlock()
130 JrsString val = (JrsString) attrValue; in addAttributeBlock() local
135 JrsBoolean val = (JrsBoolean) attrValue; in addAttributeBlock() local
144 private static void addAuthSchemesBlock(CodeBlock.Builder builder, TreeNode attrValue) { in addAuthSchemesBlock()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio/src/
Dmetadata.rs184 let val = grpc_sys::grpcwrap_metadata_array_get_value(&self.0, index, &mut val_len); in get() localVariable
252 let mut builder = MetadataBuilder::with_capacity(self.len()); in clone() localVariable
347 let mut builder = MetadataBuilder::new(); in test_key_check() localVariable
372 let mut builder = MetadataBuilder::new(); in test_metadata() localVariable
376 let val = format!("v{i}"); in test_metadata() localVariable
382 let val = format!("v{i}"); in test_metadata() localVariable
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_parser.cc598 int64_t val; in SplitToInt64s() local
880 std::string val = lexer_.GetStrVal(); in ParseCustomCallSchedule() local
897 std::string val = lexer_.GetStrVal(); in ParseCustomCallApiVersion() local
1070 HloComputation::Builder builder(computation_name); in ParseInstructionList() local
1109 bool HloParserImpl::ParseInstruction(HloComputation::Builder* builder, in ParseInstruction()
1131 bool HloParserImpl::ParseInstructionRhs(HloComputation::Builder* builder, in ParseInstructionRhs()
1246 HloComputation::Builder* builder, absl::string_view name, in CreateInstruction()
3354 std::string StringifyValue(T val) { in StringifyValue()
3358 std::string StringifyValue(std::complex<double> val) { in StringifyValue()
3367 uint64_t GetNanPayload(T val) { in GetNanPayload()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/util/tensor_bundle/
H A Dtensor_bundle.cc212 char* GetBackingBuffer(const Tensor& val) { in GetBackingBuffer()
217 tstring* GetStringBackingBuffer(const Tensor& val) { in GetStringBackingBuffer()
234 Status WriteTensor(const Tensor& val, FileOutputBuffer* out, in WriteTensor()
249 Status WriteStringTensor(const Tensor& val, FileOutputBuffer* out, in WriteStringTensor()
301 Status WriteVariantTensor(const Tensor& val, FileOutputBuffer* out, in WriteVariantTensor()
441 Status BundleWriter::Add(StringPiece key, const Tensor& val) { in Add()
544 table::TableBuilder builder(options, file.get()); in Finish() local
731 table::TableBuilder builder(TableBuilderOptions(), merged_metadata.get()); in MergeBundles() local
856 Status BundleReader::GetValue(const BundleEntryProto& entry, Tensor* val) { in GetValue()
952 Status BundleReader::Lookup(StringPiece key, Tensor* val) { in Lookup()
[all …]
H A Dtensor_bundle_test.cc92 Tensor val(expected_val.dtype(), shape); in Expect() local
126 Tensor val; in ExpectNext() local
151 std::unique_ptr<table::TableBuilder> builder; in FlipEndiannessBit() local
522 table::TableBuilder builder(table::Options(), file.get()); in VersionTest() local
598 Tensor val(DT_FLOAT, kFullShape); in TEST() local
629 Tensor val(DT_FLOAT, TensorShape({5, 2})); in TEST() local
639 Tensor val(DT_FLOAT, TensorShape({5, 2})); in TEST() local
663 Tensor val(DT_FLOAT, TensorShape(kFullShape)); in TEST() local
672 Tensor val(DT_FLOAT, TensorShape(kFullShape)); in TEST() local
681 Tensor val(DT_FLOAT, TensorShape(kFullShape)); in TEST() local
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/
H A DSdkField.java49 private SdkField(Builder<TypeT> builder) { in SdkField()
171 TypeT val = this.get(pojo); in getValueOrDefault() local
183 public void set(Object pojo, Object val) { in set()
194 public static <TypeT> Builder<TypeT> builder(MarshallingType<? super TypeT> marshallingType) { in builder() method in SdkField
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
H A Dconvert_tensor.cc109 const auto& val = arr(i); in ConvertStringTensor() local
117 Builder* builder) { in ConvertTensor()
205 Builder* builder) { in ConvertTensorProto()
293 for (const auto& val : attr.getRawStringData()) in ConvertStringElementsAttr() local
300 for (const auto& val : attr.getValues<std::complex<T>>()) { in ConvertComplexElementsAttr() local
/aosp_15_r20/external/tensorflow/tensorflow/dtensor/mlir/
H A Ddtensor_allreduce_sum_optimization.cc42 mlir::Value GetIdentitySkippedInputs(mlir::Value val) { in GetIdentitySkippedInputs()
51 bool IsZeroConstant(mlir::Value val) { in IsZeroConstant()
152 mlir::OpBuilder builder(op); in OptimizeAllReduceAndSum() local
192 mlir::Value SkipIdentityLikeOpsOutputs(mlir::Value val) { in SkipIdentityLikeOpsOutputs()
376 mlir::OpBuilder builder(while_op); in ExtractAllReduceFromWhileOp() local
/aosp_15_r20/out/soong/.intermediates/packages/providers/DownloadProvider/ui/DownloadProviderUi/android_common/javac/
DDownloadProviderUi.jar ... $OnClickListener { final synthetic android.app.DownloadManager val$dm final synthetic long val$id final synthetic ...
/aosp_15_r20/out/soong/.intermediates/packages/providers/DownloadProvider/ui/DownloadProviderUi/android_common/repackaged-jarjar/javac/
DDownloadProviderUi.jar ... long id long size android.app.AlertDialog$Builder builder Long maxSize public void onDismiss (android.content ...
/aosp_15_r20/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/gapic/model/
H A DOperationResponse.java32 public static Builder builder() { in builder() method in OperationResponse
40 public abstract Builder setStatusFieldName(String val); in setStatusFieldName()
42 public abstract Builder setErrorCodeFieldName(String val); in setErrorCodeFieldName()
44 public abstract Builder setErrorMessageFieldName(String val); in setErrorMessageFieldName()
/aosp_15_r20/external/freetype/src/psaux/
H A Dcffdecode.c222 CFF_Builder* builder = &decoder->builder; in cff_operator_seac() local
505 CFF_Builder* builder = &decoder->builder; in cff_decoder_parse_charstrings() local
563 FT_Int32 val; in cff_decoder_parse_charstrings() local
1873 FT_Fixed val = args[0]; in cff_decoder_parse_charstrings() local
1891 FT_Fixed val = 0; in cff_decoder_parse_charstrings() local
2370 CFF_Builder *builder = &decoder->builder; in cff_decoder_prepare() local
/aosp_15_r20/external/tensorflow/tensorflow/core/ir/importexport/
H A Dconvert_tensor.cc106 const auto& val = arr(i); in ConvertStringTensor() local
114 Builder builder) { in ConvertTensor()
203 const TensorProto& input_tensor, Builder builder) { in ConvertTensorProto()
293 for (const auto& val : attr.getRawStringData()) in ConvertStringElementsAttr() local
300 for (const auto& val : attr.getValues<std::complex<T>>()) { in ConvertComplexElementsAttr() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
H A Dlower_tf.cc45 Builder *builder) { in GetI64ElementsAttr()
54 Builder *builder) { in GetI64ElementsAttrForSeq()
66 static DenseElementsAttr GetF32Scalar(OpBuilder *builder, float value) { in GetF32Scalar()
77 static Value CreateTFCastOpF32(OpBuilder *builder, Location loc, Value x, in CreateTFCastOpF32()
90 static Value CreateTFCastOpI32(OpBuilder *builder, Location loc, Value x, in CreateTFCastOpI32()
98 static APFloat ConvertToAPFloat(double val, Type type) { in ConvertToAPFloat()
123 static DenseElementsAttr DequantizeHalfRange(OpBuilder *builder, Value input) { in DequantizeHalfRange()
135 Builder *builder) { in GetBiasAddGradReductionIndices()
152 Type InferExpandDimsType(Type ty, int64_t axis, Builder *builder) { in InferExpandDimsType()
1091 for (auto val : block_shape.getValues<APInt>()) { in matchAndRewrite() local
[all …]
/aosp_15_r20/external/protobuf/conformance/
H A DConformanceJava.java82 private void writeLittleEndianIntToStdout(int val) throws Exception { in writeLittleEndianIntToStdout()
281 TestMessagesProto3.TestAllTypesProto3.Builder builder = in doTest() local
283 parser.merge(request.getJsonPayload(), builder); in doTest() local
286 TestMessagesProto2.TestAllTypesProto2.Builder builder = in doTest() local
288 parser.merge(request.getJsonPayload(), builder); in doTest() local
305 TestMessagesProto3.TestAllTypesProto3.Builder builder = in doTest() local
307 TextFormat.merge(request.getTextPayload(), builder); in doTest() local
316 TestMessagesProto2.TestAllTypesProto2.Builder builder = in doTest() local
318 TextFormat.merge(request.getTextPayload(), builder); in doTest() local
/aosp_15_r20/external/cronet/third_party/protobuf/conformance/
H A DConformanceJava.java82 private void writeLittleEndianIntToStdout(int val) throws Exception { in writeLittleEndianIntToStdout()
281 TestMessagesProto3.TestAllTypesProto3.Builder builder = in doTest() local
283 parser.merge(request.getJsonPayload(), builder); in doTest() local
286 TestMessagesProto2.TestAllTypesProto2.Builder builder = in doTest() local
288 parser.merge(request.getJsonPayload(), builder); in doTest() local
305 TestMessagesProto3.TestAllTypesProto3.Builder builder = in doTest() local
307 TextFormat.merge(request.getTextPayload(), builder); in doTest() local
316 TestMessagesProto2.TestAllTypesProto2.Builder builder = in doTest() local
318 TextFormat.merge(request.getTextPayload(), builder); in doTest() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/example/qi/compiler_tutorial/conjure3/
Dcompiler.cpp29 llvm::IRBuilder<>* builder) in value()
330 value llvm_compiler::val(unsigned int x) in val() function in client::code_gen::llvm_compiler
337 value llvm_compiler::val(int x) in val() function in client::code_gen::llvm_compiler
344 value llvm_compiler::val(bool x) in val() function in client::code_gen::llvm_compiler
351 value llvm_compiler::val(llvm::Value* v) in val() function in client::code_gen::llvm_compiler
366 llvm::IRBuilder<> builder( in make_entry_block_alloca() local
378 llvm::IRBuilder<> builder( in var() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/ops/
H A Deinsum.cc98 EinsumDimensionType val) { in CountLabels()
105 const std::vector<EinsumDimensionType>& types, EinsumDimensionType val) { in AppendMatchingIndicesToPermute()
294 Status SetDynamicSize(TRTNetworkBuilder* builder, in SetDynamicSize()
338 Status GetEinsumNewDynamicShape(TRTNetworkBuilder* builder, in GetEinsumNewDynamicShape()
407 TRTNetworkBuilder* builder, const TRT_TensorOrWeights& operand, in ConditionEinsumWeights()
429 Status ConditionEinsumTensor(TRTNetworkBuilder* builder, in ConditionEinsumTensor()
464 Status ConditionEinsumOperand(TRTNetworkBuilder* builder, in ConditionEinsumOperand()
538 auto builder = TRTNetworkBuilder::Create(params->converter->network(), in ShuffleEinsumOutput() local
698 auto builder = TRTNetworkBuilder::Create(params_->converter->network(), in Convert() local
/aosp_15_r20/external/skia/modules/jetski/src/
H A DRuntimeShaderBuilder.cpp32 if (auto* builder = reinterpret_cast<SkRuntimeShaderBuilder*>(native_instance)) { in ShaderBuilder_Release() local
37 …derBuilder_SetUniformFloat(JNIEnv* env, jobject, jlong native_instance, jstring jname, float val) { in ShaderBuilder_SetUniformFloat()
38 if (auto* builder = reinterpret_cast<SkRuntimeShaderBuilder*>(native_instance)) { in ShaderBuilder_SetUniformFloat() local
44 if (auto* builder = reinterpret_cast<SkRuntimeShaderBuilder*>(native_instance)) { in ShaderBuilder_SetUniformFloat3() local
50 if (auto* builder = reinterpret_cast<SkRuntimeShaderBuilder*>(native_instance)) { in ShaderBuilder_SetUniformMatrix() local
58 if (auto* builder = reinterpret_cast<SkRuntimeShaderBuilder*>(native_instance)) { in ShaderBuilder_MakeShader() local
/aosp_15_r20/frameworks/libs/binary_translation/heavy_optimizer/riscv64/
Dcall_intrinsic.h39 void SignExtend64(x86_64::MachineIRBuilder* builder, MachineReg dst, MachineReg src) { in SignExtend64()
64 void SignExtend64Result(x86_64::MachineIRBuilder* builder, MachineReg dst, MachineReg src) { in SignExtend64Result()
79 x86_64::CallImm::Arg GenPrepareCallImmArg(x86_64::MachineIRBuilder* builder, AssemblerType val) { in GenPrepareCallImmArg()
108 x86_64::CallImm::Arg GenPrepareCallImmArg(x86_64::MachineIRBuilder* builder, AssemblerType reg) { in GenPrepareCallImmArg()
123 void LoadCallIntrinsicResult(x86_64::MachineIRBuilder* builder, in LoadCallIntrinsicResult()
199 void CallIntrinsicImpl(x86_64::MachineIRBuilder* builder, in CallIntrinsicImpl()
222 void CallIntrinsicImpl(x86_64::MachineIRBuilder* builder, in CallIntrinsicImpl()

12345678910>>...71