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 363 ClassTemplateSpecializationDecl *Existing
365 (void)Existing;
366 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
384 ClassTemplatePartialSpecializationDecl *Existing
386 (void)Existing;
387 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 151 /// \brief Class used to capture the result of searching for an existing
159 NamedDecl *Existing;
166 : Reader(Reader), New(nullptr), Existing(nullptr), AddResult(false) {}
168 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing)
169 : Reader(Reader), New(New), Existing(Existing), AddResult(true) { }
172 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
184 operator NamedDecl*() const { return Existing; }
187 operator T*() const { return dyn_cast_or_null<T>(Existing); }
    [all...]
ASTReader.cpp 154 /// \brief Compare the given set of language options against an existing set of
209 /// \brief Compare the given set of target options against an existing set of
452 /// against the preprocessor options in an existing preprocessor.
469 // Dig out the macro definition in the existing preprocessor options.
471 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
481 if (Existing.second) {
489 SuggestedPredefines += Existing.first.str();
497 if (Existing.second != Known->second.second) {
507 if (Existing.second || Existing.first == Known->second.first
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 762 /// node already exists, in which case transfer all its users to the existing
770 SDNode *Existing = CSEMap.GetOrInsertNode(N);
771 if (Existing != N) {
772 // If there was already an existing matching node, use ReplaceAllUsesWith
773 // to replace the dead one with the existing one. This can cause
775 ReplaceAllUsesWith(N, Existing);
779 DUL->NodeDeleted(N, Existing);
    [all...]

Completed in 190 milliseconds