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

  /external/clang/lib/AST/
DeclTemplate.cpp 195 EntryType *Existing = Specializations.GetOrInsertNode(Entry);
196 (void)Existing;
197 assert(SETraits::getDecl(Existing)->isCanonicalDecl() &&
409 ClassTemplatePartialSpecializationDecl *Existing
411 (void)Existing;
412 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/Sema/
SemaDeclAttr.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 145 /// \brief Class used to capture the result of searching for an existing
153 NamedDecl *Existing;
163 : Reader(Reader), New(nullptr), Existing(nullptr), AddResult(false),
166 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing,
169 : Reader(Reader), New(New), Existing(Existing), AddResult(true),
174 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
187 operator NamedDecl*() const { return Existing; }
190 operator T*() const { return dyn_cast_or_null<T>(Existing); }
    [all...]
ASTReader.cpp 175 /// \brief Compare the given set of language options against an existing set of
247 /// \brief Compare the given set of target options against an existing set of
297 // a strict subset of the existing feature set, there is nothing to diagnose.
304 << /* is-existing-feature */ false << Feature;
307 << /* is-existing-feature */ true << Feature;
490 /// against the preprocessor options in an existing preprocessor.
507 // Dig out the macro definition in the existing preprocessor options.
509 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
519 if (Existing.second) {
527 SuggestedPredefines += Existing.first.str()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 812 /// node already exists, in which case transfer all its users to the existing
820 SDNode *Existing = CSEMap.GetOrInsertNode(N);
821 if (Existing != N) {
822 // If there was already an existing matching node, use ReplaceAllUsesWith
823 // to replace the dead one with the existing one. This can cause
825 ReplaceAllUsesWith(N, Existing);
829 DUL->NodeDeleted(N, Existing);
    [all...]

Completed in 253 milliseconds