/aosp_15_r20/external/icu/icu4c/source/i18n/ |
H A D | formattedval_impl.h | 261 #define UPRV_FORMATTED_VALUE_CAPI_NO_IMPLTYPE_AUTO_IMPL(CType, ImplType, HelperType, Prefix) \ argument 267 ImplType* impl = new ImplType(); \ 276 const ImplType* result = HelperType::validate(uresult, *ec); \ 283 const ImplType* impl = HelperType::validate(uresult, localStatus); \ 297 #define UPRV_FORMATTED_VALUE_CAPI_AUTO_IMPL(CPPType, CType, ImplType, HelperType, Prefix, MagicNumb… argument 299 class ImplType; \ 300 typedef IcuCApiHelper<CType, ImplType, MagicNumber> HelperType; \ 301 class ImplType : public UFormattedValueImpl, public HelperType { \ 303 ImplType(); \ 304 ~ImplType(); \ [all …]
|
/aosp_15_r20/external/icu/libicu/cts_headers/ |
H A D | formattedval_impl.h | 261 #define UPRV_FORMATTED_VALUE_CAPI_NO_IMPLTYPE_AUTO_IMPL(CType, ImplType, HelperType, Prefix) \ argument 267 ImplType* impl = new ImplType(); \ 276 const ImplType* result = HelperType::validate(uresult, *ec); \ 283 const ImplType* impl = HelperType::validate(uresult, localStatus); \ 297 #define UPRV_FORMATTED_VALUE_CAPI_AUTO_IMPL(CPPType, CType, ImplType, HelperType, Prefix, MagicNumb… argument 299 class ImplType; \ 300 typedef IcuCApiHelper<CType, ImplType, MagicNumber> HelperType; \ 301 class ImplType : public UFormattedValueImpl, public HelperType { \ 303 ImplType(); \ 304 ~ImplType(); \ [all …]
|
/aosp_15_r20/external/cronet/third_party/icu/source/i18n/ |
H A D | formattedval_impl.h | 261 #define UPRV_FORMATTED_VALUE_CAPI_NO_IMPLTYPE_AUTO_IMPL(CType, ImplType, HelperType, Prefix) \ argument 267 ImplType* impl = new ImplType(); \ 276 const ImplType* result = HelperType::validate(uresult, *ec); \ 283 const ImplType* impl = HelperType::validate(uresult, localStatus); \ 297 #define UPRV_FORMATTED_VALUE_CAPI_AUTO_IMPL(CPPType, CType, ImplType, HelperType, Prefix, MagicNumb… argument 299 class ImplType; \ 300 typedef IcuCApiHelper<CType, ImplType, MagicNumber> HelperType; \ 301 class ImplType : public UFormattedValueImpl, public HelperType { \ 303 ImplType(); \ 304 ~ImplType(); \ [all …]
|
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/common_os/include/external/icu/icu4c/source/i18n/ |
H A D | formattedval_impl.h | 252 #define UPRV_FORMATTED_VALUE_CAPI_NO_IMPLTYPE_AUTO_IMPL(CType, ImplType, HelperType, Prefix) \ argument 258 ImplType* impl = new ImplType(); \ 267 const ImplType* result = HelperType::validate(uresult, *ec); \ 274 const ImplType* impl = HelperType::validate(uresult, localStatus); \ 288 #define UPRV_FORMATTED_VALUE_CAPI_AUTO_IMPL(CPPType, CType, ImplType, HelperType, Prefix, MagicNumb… argument 290 class ImplType; \ 291 typedef IcuCApiHelper<CType, ImplType, MagicNumber> HelperType; \ 292 class ImplType : public UFormattedValueImpl, public HelperType { \ 294 ImplType(); \ 295 ~ImplType(); \ [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/shim/ |
H A D | tf_op_shim.h | 96 using ImplType = Impl<Runtime::kTf>; 99 : OpKernel(c), impl_(std::make_unique<ImplType>()) { in TfOpKernel() 114 return ::tensorflow::FromAbslStatus(ImplType::ShapeInference(&ctx)); in ShapeInference() 118 static const char* OpName() { return ImplType::kOpName; } in OpName() 135 ::tensorflow::register_op::OpDefBuilderWrapper(Kernel::ImplType::kOpName); in CreateOpDefBuilderWrapper() 136 for (const auto& input : Kernel::ImplType::Inputs()) ret = ret.Input(input); in CreateOpDefBuilderWrapper() 137 for (const auto& output : Kernel::ImplType::Outputs()) in CreateOpDefBuilderWrapper() 139 for (const auto& attr : Kernel::ImplType::Attrs()) ret = ret.Attr(attr); in CreateOpDefBuilderWrapper() 140 ret.SetShapeFn(Kernel::ShapeInference).Doc(Kernel::ImplType::kDoc); in CreateOpDefBuilderWrapper()
|
H A D | tflite_op_shim.h | 117 using ImplType = Impl<Runtime::kTfLite>; 128 resolver->AddCustom(ImplType::kOpName, GetTfLiteRegistration()); in Add() 132 static const char* OpName() { return ImplType::kOpName; } in OpName() 138 impl = new ImplType; in UserData() 147 ImplType* impl = nullptr; 185 auto status = ImplType::ShapeInference(&ctx); in Prepare()
|
/aosp_15_r20/external/pytorch/torch/csrc/api/include/torch/nn/ |
H A D | pimpl.h | 192 #define TORCH_MODULE_IMPL(Name, ImplType) \ argument 193 class Name : public torch::nn::ModuleHolder<ImplType> { /* NOLINT */ \ 195 using torch::nn::ModuleHolder<ImplType>::ModuleHolder; \ 196 using Impl TORCH_UNUSED_EXCEPT_CUDA = ImplType; \
|
/aosp_15_r20/external/gemmlowp/internal/ |
H A D | pack.h | 415 typedef PackSideBlockImpl<SideMapType, PackedSideBlock> ImplType; in PackLhs() typedef 416 ImplType impl(dst, src_side_map); in PackLhs() 430 typedef PackSideBlockImpl<SideMapType, PackedSideBlock> ImplType; in PackRhs() typedef 431 ImplType impl(dst, src_side_map); in PackRhs()
|
/aosp_15_r20/external/llvm/include/llvm/CodeGen/ |
H A D | MachineBlockFrequencyInfo.h | 31 typedef BlockFrequencyInfoImpl<MachineBasicBlock> ImplType; typedef 32 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/external/angle/src/libANGLE/renderer/metal/ |
H A D | mtl_common.h | 192 using ImplType = OBJ##Mtl; \ in ANGLE_GL_OBJECTS_X() 201 using ImplType = DisplayMtl; in ANGLE_GL_OBJECTS_X() 207 using ImplType = ImageMtl; in ANGLE_GL_OBJECTS_X() 211 using GetImplType = typename ImplTypeHelper<T>::ImplType; in ANGLE_GL_OBJECTS_X()
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineBlockFrequencyInfo.h | 34 using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; variable 35 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/ |
H A D | MachineBlockFrequencyInfo.h | 34 using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; variable 35 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/CodeGen/ |
D | MachineBlockFrequencyInfo.h | 34 using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; variable 35 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/CodeGen/ |
D | MachineBlockFrequencyInfo.h | 34 using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; variable 35 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/CodeGen/ |
D | MachineBlockFrequencyInfo.h | 34 using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; variable 35 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/CodeGen/ |
D | MachineBlockFrequencyInfo.h | 34 using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; variable 35 std::unique_ptr<ImplType> MBFI;
|
/aosp_15_r20/external/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfo.h | 32 typedef BlockFrequencyInfoImpl<BasicBlock> ImplType; typedef 33 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/external/libchrome/mojo/public/cpp/bindings/tests/ |
H A D | bind_task_runner_unittest.cc | 193 impl_.reset(new ImplType(std::move(request), binding_task_runner_)); in SetUp() 201 using ImplType = typedef in mojo::test::__anone2ed69690111::BindTaskRunnerTest 203 std::unique_ptr<ImplType> impl_;
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfo.h | 38 using ImplType = BlockFrequencyInfoImpl<BasicBlock>; variable 40 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfo.h | 38 using ImplType = BlockFrequencyInfoImpl<BasicBlock>; variable 40 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Analysis/ |
D | BlockFrequencyInfo.h | 39 using ImplType = BlockFrequencyInfoImpl<BasicBlock>; variable 41 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Analysis/ |
D | BlockFrequencyInfo.h | 39 using ImplType = BlockFrequencyInfoImpl<BasicBlock>; variable 41 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Analysis/ |
D | BlockFrequencyInfo.h | 39 using ImplType = BlockFrequencyInfoImpl<BasicBlock>; variable 41 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Analysis/ |
D | BlockFrequencyInfo.h | 39 using ImplType = BlockFrequencyInfoImpl<BasicBlock>; variable 41 std::unique_ptr<ImplType> BFI;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | RangedConstraintManager.h | 95 using ImplType = llvm::SmallVector<Range, 4>; 97 struct ContainerType : public ImplType, public llvm::FoldingSetNode { 113 using const_iterator = ImplType::const_iterator;
|