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

  /external/clang/lib/AST/
DeclTemplate.cpp 331 ClassTemplateSpecializationDecl *Existing
333 (void)Existing;
334 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
354 ClassTemplatePartialSpecializationDecl *Existing
356 (void)Existing;
357 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 861 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
862 InsertNS = Existing->getIfNamespace();
889 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
890 assert(Existing && "Namespace containing handler does not exist!");
892 NS = Existing->getIfNamespace();
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 153 /// \brief Class used to capture the result of searching for an existing
161 NamedDecl *Existing;
168 : Reader(Reader), New(0), Existing(0), AddResult(false) { }
170 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing)
171 : Reader(Reader), New(New), Existing(Existing), AddResult(true) { }
174 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
186 operator NamedDecl*() const { return Existing; }
189 operator T*() const { return dyn_cast_or_null<T>(Existing); }
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 683 /// node already exists, in which case transfer all its users to the existing
692 SDNode *Existing = CSEMap.GetOrInsertNode(N);
693 if (Existing != N) {
694 // If there was already an existing matching node, use ReplaceAllUsesWith
695 // to replace the dead one with the existing one. This can cause
697 ReplaceAllUsesWith(N, Existing, UpdateListener);
701 UpdateListener->NodeDeleted(N, Existing);
    [all...]

Completed in 167 milliseconds