Searched refs:Impl (Results 1 - 25 of 144) sorted by relevance

123456

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DPassRegistry.cpp76 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(pImpl); local
78 for (std::vector<const PassInfo*>::iterator I = Impl->ToFree.begin(),
79 E = Impl->ToFree.end(); I != E; ++I)
82 delete Impl;
88 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI);
90 return I != Impl->PassInfoMap.end() ? I->second : 0;
95 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
97 I = Impl->PassInfoStringMap.find(Arg);
98 return I != Impl
107 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
124 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
136 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
169 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
184 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
190 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); local
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/java8/
H A DInterfaceDefaultMethodsTarget.java31 public class Impl implements InterfaceDefaultMethodsTarget { class in interface:InterfaceDefaultMethodsTarget
33 public Impl() { method in class:InterfaceDefaultMethodsTarget.Impl
H A DInterfaceDefaultMethodsTest.java29 loader.add(InterfaceDefaultMethodsTarget.Impl.class).newInstance();
/external/skia/src/core/
H A DSkRefDict.cpp12 struct SkRefDict::Impl { struct in class:SkRefDict
13 Impl* fNext;
29 Impl* rec = fImpl;
44 Impl* rec = fImpl;
45 Impl* prev = nullptr;
71 rec = new Impl;
80 Impl* rec = fImpl;
82 Impl* next = rec->fNext;
H A DSkRefDict.h49 struct Impl;
50 Impl* fImpl;
H A DSkPipe.h46 class Impl;
47 std::unique_ptr<Impl> fImpl;
79 class Impl;
80 std::unique_ptr<Impl> fImpl;
/external/skia/src/pdf/
H A DSkDeflate.h49 struct Impl;
50 std::unique_ptr<Impl> fImpl;
/external/clang/test/SemaTemplate/
H A Dqualified-id.cpp23 class Impl { class in namespace:test2
27 template <class T> class Magic : public Impl {
29 return Impl::foo();
/external/skia/tools/
H A DSkShaper.h41 struct Impl;
42 std::unique_ptr<Impl> fImpl;
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLibCallSemantics.cpp28 delete getMap(Impl);
45 StringMap<const LibCallFunctionInfo*> *Map = getMap(Impl);
50 Impl = Map = new StringMap<const LibCallFunctionInfo*>();
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h68 template <typename T> TargetTransformInfo(T Impl);
744 T Impl; member in class:llvm::final
747 Model(T Impl) : Impl(std::move(Impl)) {} argument
751 return Impl.getDataLayout();
755 return Impl.getOperationCost(Opcode, Ty, OpTy);
759 return Impl.getGEPCost(PointeeType, Ptr, Operands);
762 return Impl.getCallCost(FTy, NumArgs);
765 return Impl
984 TargetTransformInfo(T Impl) argument
[all...]
H A DTargetLibraryInfo.h196 const TargetLibraryInfoImpl *Impl; member in class:llvm::TargetLibraryInfo
199 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {} argument
202 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
203 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
205 Impl = TLI.Impl;
[all...]
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DEABContactManager.java59 public final static String COLUMN_ID = Contacts.Impl._ID;
66 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP;
73 Contacts.Impl._ID,
74 Contacts.Impl.CONTACT_NUMBER,
75 Contacts.Impl.CONTACT_NAME,
76 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP,
77 Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS,
78 Contacts.Impl.VOLTE_CALL_CAPABILITY,
79 Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP,
80 Contacts.Impl
[all...]
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h89 mutable ASTUnresolvedSet Impl; member in class:clang::LazyASTUnresolvedSet
95 if (Impl.Decls.isLazy())
97 return Impl;
100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); }
102 assert(Impl.empty() || Impl.Decls.isLazy());
103 Impl.Decls.setLazy(true);
104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS);
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
H A DBasicInliner.h51 BasicInlinerImpl *Impl; member in class:llvm::BasicInliner
/external/clang/include/clang/Basic/
H A DVirtualFileSystem.h124 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy member in class:clang::vfs::directory_iterator
128 : Impl(std::move(I)) {
129 assert(Impl.get() != nullptr && "requires non-null implementation");
130 if (!Impl->CurrentEntry.isStatusKnown())
131 Impl.reset(); // Normalize the end iterator to Impl == nullptr.
139 assert(Impl && "attempting to increment past end");
140 EC = Impl->increment();
141 if (EC || !Impl->CurrentEntry.isStatusKnown())
142 Impl
[all...]
/external/llvm/include/llvm/CodeGen/MIRParser/
H A DMIRParser.h35 std::unique_ptr<MIRParserImpl> Impl; member in class:llvm::MIRParser
38 MIRParser(std::unique_ptr<MIRParserImpl> Impl);
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DLibCallSemantics.h129 mutable void *Impl; member in class:llvm::LibCallInfo
133 LibCallInfo() : Impl(0), Locations(0), NumLocations(0) {}
/external/v8/src/parsing/
H A Dparser-base.h104 // The Impl parameter is the actual class of the parser/pre-parser,
110 // template <typename Impl>
114 // // parser behavior. The Impl parameter is the actual derived
117 // template <typename Impl>
136 // implementation class Impl, it is expected to contain the following typedefs:
139 // struct ParserTypes<Impl> {
140 // // Synonyms for ParserBase<Impl> and Impl, respectively.
142 // typedef Impl;
168 template <typename Impl>
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h409 ImplTy Impl; member in class:clang::ento::ExplodedNodeSet
414 Impl.insert(N);
420 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N);
426 unsigned size() const { return Impl.size(); }
427 bool empty() const { return Impl.empty(); }
428 bool erase(ExplodedNode *N) { return Impl.erase(N); }
430 void clear() { Impl.clear(); }
434 Impl = S.Impl;
436 Impl
[all...]
/external/clang/include/clang/Index/
H A DCodegenNameGenerator.h46 std::unique_ptr<Implementation> Impl; member in class:clang::index::CodegenNameGenerator
/external/v8/include/
H A Dv8-util.h42 typedef std::map<K, PersistentContainerValue> Impl; typedef in class:v8::StdMapTraits
43 typedef typename Impl::iterator Iterator;
45 static bool Empty(Impl* impl) { return impl->empty(); }
46 static size_t Size(Impl* impl) { return impl->size(); }
47 static void Swap(Impl& a, Impl& b) { std::swap(a, b); } // NOLINT
48 static Iterator Begin(Impl* impl) { return impl->begin(); }
49 static Iterator End(Impl* impl) { return impl->end(); }
52 static PersistentContainerValue Set(Impl* impl, K key,
62 static PersistentContainerValue Get(Impl* imp
539 typedef std::vector<PersistentContainerValue> Impl; typedef in class:v8::DefaultPersistentValueVectorTraits
[all...]
/external/googletest/googlemock/include/gmock/
H A Dgmock-actions.h426 template <typename Impl>
429 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
443 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
450 Impl impl_;
455 Impl impl_;
468 // easier to use than the PolymorphicAction<Impl> constructor as it
474 template <typename Impl>
475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
476 return PolymorphicAction<Impl>(imp
563 class Impl : public ActionInterface<F> { class in class:testing::internal::ReturnAction
575 explicit Impl(const linked_ptr<R>& value) function in class:testing::internal::ReturnAction::Impl
595 class Impl<ByMoveWrapper<R_>, F> : public ActionInterface<F> { class in class:testing::internal::ReturnAction
600 explicit Impl(const linked_ptr<R>& wrapper) function in class:testing::internal::ReturnAction::Impl
675 class Impl : public ActionInterface<F> { class in class:testing::internal::ReturnRefAction
680 explicit Impl(T& ref) : ref_(ref) {} // NOLINT function in class:testing::internal::ReturnRefAction::Impl
724 class Impl : public ActionInterface<F> { class in class:testing::internal::ReturnRefOfCopyAction
729 explicit Impl(const T& value) : value_(value) {} // NOLINT function in class:testing::internal::ReturnRefOfCopyAction::Impl
914 class Impl : public ActionInterface<F> { class in class:testing::internal::IgnoreResultAction
919 explicit Impl(const A& action) : action_(action) {} function in class:testing::internal::IgnoreResultAction::Impl
987 class Impl : public ActionInterface<F> { class in class:testing::internal::DoBothAction
993 Impl(const Action<VoidResult>& action1, const Action<F>& action2) function in class:testing::internal::DoBothAction::Impl
[all...]
/external/v8/src/base/
H A Dlogging.cc33 template std::string* Check##NAME##Impl<float, float>( \
35 template std::string* Check##NAME##Impl<double, double>( \
/external/v8/testing/gmock/include/gmock/
H A Dgmock-actions.h426 template <typename Impl>
429 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
443 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
450 Impl impl_;
455 Impl impl_;
468 // easier to use than the PolymorphicAction<Impl> constructor as it
474 template <typename Impl>
475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) {
476 return PolymorphicAction<Impl>(imp
563 class Impl : public ActionInterface<F> { class in class:testing::internal::ReturnAction
575 explicit Impl(const linked_ptr<R>& value) function in class:testing::internal::ReturnAction::Impl
595 class Impl<ByMoveWrapper<R_>, F> : public ActionInterface<F> { class in class:testing::internal::ReturnAction
600 explicit Impl(const linked_ptr<R>& wrapper) function in class:testing::internal::ReturnAction::Impl
675 class Impl : public ActionInterface<F> { class in class:testing::internal::ReturnRefAction
680 explicit Impl(T& ref) : ref_(ref) {} // NOLINT function in class:testing::internal::ReturnRefAction::Impl
724 class Impl : public ActionInterface<F> { class in class:testing::internal::ReturnRefOfCopyAction
729 explicit Impl(const T& value) : value_(value) {} // NOLINT function in class:testing::internal::ReturnRefOfCopyAction::Impl
914 class Impl : public ActionInterface<F> { class in class:testing::internal::IgnoreResultAction
919 explicit Impl(const A& action) : action_(action) {} function in class:testing::internal::IgnoreResultAction::Impl
987 class Impl : public ActionInterface<F> { class in class:testing::internal::DoBothAction
993 Impl(const Action<VoidResult>& action1, const Action<F>& action2) function in class:testing::internal::DoBothAction::Impl
[all...]

Completed in 616 milliseconds

123456