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

  /external/clang/lib/Sema/
IdentifierResolver.cpp 195 // Add the new declaration before the existing declaration.
201 // Add new declaration after the existing declaration.
293 /// existing declaration.
294 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) {
296 if (Existing == New)
300 if (Existing->getKind() != New->getKind())
304 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
306 Decl *MostRecent = Existing->getMostRecentDecl();
307 if (Existing == MostRecent)
313 // If the existing declaration is somewhere in the previous declaratio
    [all...]
SemaDeclAttr.cpp     [all...]
  /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...]
ModuleMap.cpp 339 // Try to find an existing module with this name.
    [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/chromium/base/
observer_list_unittest.cc 327 TEST(ObserverListTest, Existing) {
  /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...]
  /build/tools/droiddoc/templates-ds/
sdkpage.cs 383 $("a#next-link").html("Setting Up an Existing IDE").attr('href',toRoot + 'sdk/installing/index.html');
  /build/tools/droiddoc/templates-sac/
sdkpage.cs 382 $("a#next-link").html("Setting Up an Existing IDE").attr('href',toRoot + 'sdk/installing/index.html');
  /build/tools/droiddoc/templates-sdk/
sdkpage.cs 409 $("a#next-link").html("Setting Up an Existing IDE").attr('href',toRoot + 'sdk/installing/index.html');

Completed in 225 milliseconds