HomeSort by relevance Sort by last modified time
    Searched defs:Existing (Results 1 - 8 of 8) sorted by null

  /external/clang/lib/AST/
DeclTemplate.cpp 189 EntryType *Existing = Specializations.GetOrInsertNode(Entry);
190 (void)Existing;
191 assert(SETraits::getDecl(Existing)->isCanonicalDecl() &&
400 ClassTemplatePartialSpecializationDecl *Existing
402 (void)Existing;
403 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 738 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
739 InsertNS = Existing->getIfNamespace();
766 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
767 assert(Existing && "Namespace containing handler does not exist!");
769 NS = Existing->getIfNamespace();
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 165 /// \brief Class used to capture the result of searching for an existing
173 NamedDecl *Existing;
183 : Reader(Reader), New(nullptr), Existing(nullptr), AddResult(false),
186 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing,
189 : Reader(Reader), New(New), Existing(Existing), AddResult(true),
194 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
207 operator NamedDecl*() const { return Existing; }
210 operator T*() const { return dyn_cast_or_null<T>(Existing); }
    [all...]
ASTReader.cpp 176 /// \brief Compare the given set of language options against an existing set of
253 /// \brief Compare the given set of target options against an existing set of
303 // a strict subset of the existing feature set, there is nothing to diagnose.
310 << /* is-existing-feature */ false << Feature;
313 << /* is-existing-feature */ true << Feature;
496 /// against the preprocessor options in an existing preprocessor.
513 // Dig out the macro definition in the existing preprocessor options.
515 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
525 if (Existing.second) {
533 SuggestedPredefines += Existing.first.str()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 665 /// node already exists, in which case transfer all its users to the existing
674 SDNode *Existing = CSEMap.GetOrInsertNode(N);
675 if (Existing != N) {
676 // If there was already an existing matching node, use ReplaceAllUsesWith
677 // to replace the dead one with the existing one. This can cause
679 ReplaceAllUsesWith(N, Existing, UpdateListener);
683 UpdateListener->NodeDeleted(N, Existing);
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 786 /// node already exists, in which case transfer all its users to the existing
794 SDNode *Existing = CSEMap.GetOrInsertNode(N);
795 if (Existing != N) {
796 // If there was already an existing matching node, use ReplaceAllUsesWith
797 // to replace the dead one with the existing one. This can cause
799 ReplaceAllUsesWith(N, Existing);
803 DUL->NodeDeleted(N, Existing);
    [all...]

Completed in 360 milliseconds