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

  /external/clang/lib/AST/
DeclTemplate.cpp 346 ClassTemplateSpecializationDecl *Existing
348 (void)Existing;
349 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
369 ClassTemplatePartialSpecializationDecl *Existing
371 (void)Existing;
372 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 849 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
850 InsertNS = Existing->getIfNamespace();
877 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
878 assert(Existing && "Namespace containing handler does not exist!");
880 NS = Existing->getIfNamespace();
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 148 /// \brief Class used to capture the result of searching for an existing
156 NamedDecl *Existing;
163 : Reader(Reader), New(0), Existing(0), AddResult(false) { }
165 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing)
166 : Reader(Reader), New(New), Existing(Existing), AddResult(true) { }
169 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
181 operator NamedDecl*() const { return Existing; }
184 operator T*() const { return dyn_cast_or_null<T>(Existing); }
    [all...]
ASTReader.cpp 68 /// \brief Compare the given set of language options against an existing set of
123 /// \brief Compare the given set of target options against an existing set of
253 /// against the preprocessor options in an existing preprocessor.
269 // Dig out the macro definition in the existing preprocessor options.
271 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
281 if (Existing.second) {
289 SuggestedPredefines += Existing.first.str();
297 if (Existing.second != Known->second.second) {
307 if (Existing.second || Existing.first == Known->second.first
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 705 /// node already exists, in which case transfer all its users to the existing
713 SDNode *Existing = CSEMap.GetOrInsertNode(N);
714 if (Existing != N) {
715 // If there was already an existing matching node, use ReplaceAllUsesWith
716 // to replace the dead one with the existing one. This can cause
718 ReplaceAllUsesWith(N, Existing);
722 DUL->NodeDeleted(N, Existing);
    [all...]

Completed in 1290 milliseconds