/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | EABContactManager.java | 60 public final static String COLUMN_ID = Contacts.Impl._ID; 67 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP; 74 Contacts.Impl._ID, 75 Contacts.Impl.CONTACT_NUMBER, 76 Contacts.Impl.CONTACT_NAME, 77 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP, 78 Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS, 79 Contacts.Impl.VOLTE_CALL_CAPABILITY, 80 Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP, 81 Contacts.Impl.VOLTE_CALL_AVAILABILITY, [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 118 template <typename T> TargetTransformInfo(T Impl); 1403 T Impl; variable 1406 Model(T Impl) : Impl(std::move(Impl)) {} in Model() argument 1410 return Impl.getDataLayout(); in getDataLayout() 1414 return Impl.getOperationCost(Opcode, Ty, OpTy); in getOperationCost() 1418 return Impl.getGEPCost(PointeeType, Ptr, Operands); in getGEPCost() 1421 return Impl.getExtCost(I, Src); in getExtCost() 1424 return Impl.getCallCost(FTy, NumArgs, U); in getCallCost() 1427 return Impl.getCallCost(F, NumArgs, U); in getCallCost() 1431 return Impl.getCallCost(F, Arguments, U); in getCallCost() [all …]
|
D | TargetLibraryInfo.h | 217 const TargetLibraryInfoImpl *Impl; variable 224 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl, 226 : Impl(&Impl), OverrideAsUnavailable(NumLibFuncs) { 249 : Impl(TLI.Impl), OverrideAsUnavailable(TLI.OverrideAsUnavailable) {} in TargetLibraryInfo() 251 : Impl(TLI.Impl), OverrideAsUnavailable(TLI.OverrideAsUnavailable) {} in TargetLibraryInfo() 253 Impl = TLI.Impl; 258 Impl = TLI.Impl; 268 return Impl->getLibFunc(funcName, F); in getLibFunc() 272 return Impl->getLibFunc(FDecl, F); in getLibFunc() 297 return Impl->getState(F); in getState() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 68 template <typename T> TargetTransformInfo(T Impl); 744 T Impl; variable 747 Model(T Impl) : Impl(std::move(Impl)) {} in Model() argument 751 return Impl.getDataLayout(); in getDataLayout() 755 return Impl.getOperationCost(Opcode, Ty, OpTy); in getOperationCost() 759 return Impl.getGEPCost(PointeeType, Ptr, Operands); in getGEPCost() 762 return Impl.getCallCost(FTy, NumArgs); in getCallCost() 765 return Impl.getCallCost(F, NumArgs); in getCallCost() 769 return Impl.getCallCost(F, Arguments); in getCallCost() 772 return Impl.getInliningThresholdMultiplier(); in getInliningThresholdMultiplier() [all …]
|
D | TargetLibraryInfo.h | 211 const TargetLibraryInfoImpl *Impl; variable 214 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {} in TargetLibraryInfo() argument 217 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo() 218 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo() 220 Impl = TLI.Impl; 224 Impl = TLI.Impl; 233 return Impl->getLibFunc(funcName, F); in getLibFunc() 237 return Impl->getLibFunc(FDecl, F); in getLibFunc() 242 return Impl->getState(F) != TargetLibraryInfoImpl::Unavailable; in has() 245 return Impl->isFunctionVectorizable(F, VF); in isFunctionVectorizable() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | optimizer.cpp | 35 struct Optimizer::PassToken::Impl { struct in spvtools::Optimizer::PassToken 36 Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {} in Impl() argument 42 std::unique_ptr<Optimizer::PassToken::Impl> impl) in PassToken() 46 : impl_(MakeUnique<Optimizer::PassToken::Impl>(std::move(pass))) {} in PassToken() 58 struct Optimizer::Impl { struct in spvtools::Optimizer 59 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() function 65 Optimizer::Optimizer(spv_target_env env) : impl_(new Impl(env)) { in Optimizer() 663 return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::NullPass>()); in CreateNullPass() 667 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripDebugInfoPass() 676 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripNonSemanticInfoPass() [all …]
|
/external/angle/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl() : name_("UTC"), zone_(TimeZoneIf::UTC()) {} in Impl() function in absl::time_internal::cctz::time_zone::Impl 104 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl [all …]
|
/external/tensorflow/tensorflow/cc/framework/ |
D | scope.cc | 27 Scope::Scope(Impl* impl) : impl_(impl) {} in Scope() 29 Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {} in Scope() 35 impl_.reset(new Impl(*other.impl_)); in operator =() 44 Scope::Impl::Impl(Graph* graph, Status* status, NameMap* name_map, in Impl() function in tensorflow::Scope::Impl 54 Scope::Impl::Impl(const std::shared_ptr<Graph>& graph, in Impl() function in tensorflow::Scope::Impl 70 return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner, in NewRootScope() 78 return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner, in DisabledShapeInferenceScope() 82 Scope::Impl::Impl(const Scope& other, Tags::ScopeName, const string& name, in Impl() function in tensorflow::Scope::Impl 101 Scope::Impl::Impl(const Scope& other, Tags::OpName, const string& name, in Impl() function in tensorflow::Scope::Impl 119 Scope::Impl::Impl(const Scope& other, Tags::ControlDeps, in Impl() function in tensorflow::Scope::Impl [all …]
|
D | scope_internal.h | 33 class Scope::Impl { 42 Impl(const std::shared_ptr<Graph>& graph, 67 Impl(Graph* graph, Status* status, NameMap* name_map, ShapeRefiner* refiner, 69 Impl(const Scope& other, Tags::ScopeName, const string& name, 71 Impl(const Scope& other, Tags::OpName, const string& name, 73 Impl(const Scope& other, Tags::ControlDeps, 75 Impl(const Scope& other, Tags::Device, const string& device); 76 Impl(const Scope& other, Tags::SingleUseScope, const string& op_name); 77 Impl(const Scope& other, Tags::ExitOnError); 78 Impl(const Scope& other, Tags::KernelLabel, const string& kernel_label); [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | optimizer.cpp | 35 struct Optimizer::PassToken::Impl { struct in spvtools::Optimizer::PassToken 36 Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {} in Impl() function 42 std::unique_ptr<Optimizer::PassToken::Impl> impl) in PassToken() 46 : impl_(MakeUnique<Optimizer::PassToken::Impl>(std::move(pass))) {} in PassToken() 58 struct Optimizer::Impl { struct in spvtools::Optimizer 59 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() function 66 Optimizer::Optimizer(spv_target_env env) : impl_(new Impl(env)) { in Optimizer() 665 return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::NullPass>()); in CreateNullPass() 669 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripDebugInfoPass() 678 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripNonSemanticInfoPass() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | optimizer.cpp | 35 struct Optimizer::PassToken::Impl { struct in spvtools::Optimizer::PassToken 36 Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {} in Impl() argument 42 std::unique_ptr<Optimizer::PassToken::Impl> impl) in PassToken() 46 : impl_(MakeUnique<Optimizer::PassToken::Impl>(std::move(pass))) {} in PassToken() 58 struct Optimizer::Impl { struct in spvtools::Optimizer 59 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() argument 66 Optimizer::Optimizer(spv_target_env env) : impl_(new Impl(env)) { in Optimizer() 664 return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::NullPass>()); in CreateNullPass() 668 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripDebugInfoPass() 677 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripNonSemanticInfoPass() [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/tensorflow/third_party/absl/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/openscreen/third_party/abseil/src/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/libtextclassifier/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/cronet/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_impl.cc | 36 std::unordered_map<std::string, const time_zone::Impl*>; 49 time_zone time_zone::Impl::UTC() { return time_zone(UTCImpl()); } in UTC() 51 bool time_zone::Impl::LoadTimeZone(const std::string& name, time_zone* tz) { in LoadTimeZone() 52 const Impl* const utc_impl = UTCImpl(); in LoadTimeZone() 74 std::unique_ptr<const Impl> new_impl(new Impl(name)); in LoadTimeZone() 79 const Impl*& impl = (*time_zone_map)[name]; in LoadTimeZone() 87 void time_zone::Impl::ClearTimeZoneMapTestOnly() { in ClearTimeZoneMapTestOnly() 94 static auto* cleared = new std::deque<const time_zone::Impl*>; in ClearTimeZoneMapTestOnly() 102 time_zone::Impl::Impl(const std::string& name) in Impl() function in absl::time_internal::cctz::time_zone::Impl 105 const time_zone::Impl* time_zone::Impl::UTCImpl() { in UTCImpl() [all …]
|
/external/rust/crates/protobuf/src/reflect/optional/ |
D | mod.rs | 8 enum Impl<'a> { enum 14 pub struct ReflectOptionalRef<'a>(Impl<'a>); 25 (Impl::None(at), Impl::None(bt)) => at == bt, in reflect_eq() 26 (Impl::Some(a), Impl::Some(b)) => a.reflect_eq(b, mode), in reflect_eq() 27 (Impl::None(_), Impl::Some(_)) | (Impl::Some(_), Impl::None(_)) => false, in reflect_eq() 35 ReflectOptionalRef(Impl::None(elem)) in none() 40 ReflectOptionalRef(Impl::Some(value)) in some() 70 Impl::None(_) => None, in value() 71 Impl::Some(v) => Some(v.clone()), in value()
|
/external/pigweed/pw_containers/public/pw_containers/ |
D | wrapped_iterator.h | 28 template <typename Impl, typename Iterator, typename ValueType> 40 Impl& operator++() { 42 return static_cast<Impl&>(*this); 45 Impl operator++(int) { 46 Impl original = static_cast<const Impl&>(*this); 51 Impl& operator--() { 53 return static_cast<Impl&>(*this); 56 Impl operator--(int) { 57 Impl original = static_cast<const Impl&>(*this);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | ImmutableClassToInstanceMapTest.java | 54 public Map<Class, Impl> create(Object... elements) { in suite() 55 ImmutableClassToInstanceMap.Builder<Impl> builder = in suite() 58 Entry<Class, Impl> entry = (Entry<Class, Impl>) object; in suite() 164 abstract static class TestClassToInstanceMapGenerator implements TestMapGenerator<Class, Impl> { 172 public Impl[] createValueArray(int length) { in createValueArray() 173 return new Impl[length]; in createValueArray() 177 public SampleElements<Entry<Class, Impl>> samples() { in samples() 179 immutableEntry((Class) One.class, new Impl(1)), in samples() 180 immutableEntry((Class) Two.class, new Impl(2)), in samples() 181 immutableEntry((Class) Three.class, new Impl(3)), in samples() [all …]
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | ImmutableClassToInstanceMapTest.java | 54 public Map<Class, Impl> create(Object... elements) { in suite() 55 ImmutableClassToInstanceMap.Builder<Impl> builder = in suite() 58 Entry<Class, Impl> entry = (Entry<Class, Impl>) object; in suite() 164 abstract static class TestClassToInstanceMapGenerator implements TestMapGenerator<Class, Impl> { 172 public Impl[] createValueArray(int length) { in createValueArray() 173 return new Impl[length]; in createValueArray() 177 public SampleElements<Entry<Class, Impl>> samples() { in samples() 179 immutableEntry((Class) One.class, new Impl(1)), in samples() 180 immutableEntry((Class) Two.class, new Impl(2)), in samples() 181 immutableEntry((Class) Three.class, new Impl(3)), in samples() [all …]
|
/external/cronet/buildtools/third_party/libc++abi/trunk/test/ |
D | guard_threaded_test.pass.cpp | 88 template <class Impl, class GuardType, class Init> 92 Impl impl(g); in check_guard() 113 template <class GuardType, class Impl> 120 auto res = check_guard<Impl>(&guard_object, init); in access() 189 template <class GuardType, class Impl> 191 FunctionLocalStatic<GuardType, Impl> test_obj; in test_free_for_all() 210 template <class GuardType, class Impl> 212 FunctionLocalStatic<GuardType, Impl> test_obj; in test_waiting_for_init() 246 template <class GuardType, class Impl> 248 FunctionLocalStatic<GuardType, Impl> test_obj; in test_aborted_init() [all …]
|
/external/libcxxabi/test/ |
D | guard_threaded_test.pass.cpp | 37 template <class Impl, class GuardType, class Init> 41 Impl impl(g); in check_guard() 62 template <class GuardType, class Impl> 70 auto res = check_guard<Impl>(&guard_object, init); in access() 204 template <class GuardType, class Impl> 208 FunctionLocalStatic<GuardType, Impl> test_obj; in test_free_for_all() 230 template <class GuardType, class Impl> 236 FunctionLocalStatic<GuardType, Impl> test_obj; in test_waiting_for_init() 267 template <class GuardType, class Impl> 273 FunctionLocalStatic<GuardType, Impl> test_obj; in test_aborted_init() [all …]
|
/external/ComputeLibrary/arm_compute/runtime/CL/functions/ |
D | CLElementwiseUnaryLayer.h | 90 struct Impl; 91 std::unique_ptr<Impl> _impl; 145 struct Impl; 146 std::unique_ptr<Impl> _impl; 201 struct Impl; 202 std::unique_ptr<Impl> _impl; 256 struct Impl; 257 std::unique_ptr<Impl> _impl; 311 struct Impl; 312 std::unique_ptr<Impl> _impl; [all …]
|