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

  /external/clang/lib/Sema/
IdentifierResolver.cpp 182 // Add the new declaration before the existing declaration.
188 // Add new declaration after the existing declaration.
256 /// existing declaration.
257 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) {
259 if (Existing == New)
263 if (Existing->getKind() != New->getKind())
267 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
269 Decl *MostRecent = Existing->getMostRecentDecl();
270 if (Existing == MostRecent)
276 // If the existing declaration is somewhere in the previous declaratio
    [all...]
SemaDeclAttr.cpp     [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 362 ClassTemplateSpecializationDecl *Existing
364 (void)Existing;
365 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
385 ClassTemplatePartialSpecializationDecl *Existing
387 (void)Existing;
388 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
index_test.js 85 debug('Existing index triggered on error as expected.');
  /external/clang/lib/Lex/
Pragma.cpp 735 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
736 InsertNS = Existing->getIfNamespace();
763 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
764 assert(Existing && "Namespace containing handler does not exist!");
766 NS = Existing->getIfNamespace();
    [all...]
ModuleMap.cpp 154 /// header, supplied by Clang to replace, override, or augment existing system
383 // Try to find an existing module with this name.
    [all...]
  /external/chromium_org/base/
observer_list_unittest.cc 434 TEST(ObserverListTest, Existing) {
455 TEST(ObserverListThreadSafeTest, Existing) {
  /external/chromium_org/remoting/webapp/
host_settings.js 41 * Save the settings for the specified hosts. Existing settings with the same
  /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
255 /// against the preprocessor options in an existing preprocessor.
272 // Dig out the macro definition in the existing preprocessor options.
274 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
284 if (Existing.second) {
292 SuggestedPredefines += Existing.first.str();
300 if (Existing.second != Known->second.second) {
310 if (Existing.second || Existing.first == Known->second.first
    [all...]
  /external/chromium/base/
observer_list_unittest.cc 327 TEST(ObserverListTest, Existing) {
  /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');
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 701 /// node already exists, in which case transfer all its users to the existing
709 SDNode *Existing = CSEMap.GetOrInsertNode(N);
710 if (Existing != N) {
711 // If there was already an existing matching node, use ReplaceAllUsesWith
712 // to replace the dead one with the existing one. This can cause
714 ReplaceAllUsesWith(N, Existing);
718 DUL->NodeDeleted(N, Existing);
    [all...]
  /build/tools/droiddoc/templates-sdk/
sdkpage.cs 458 $("a#next-link").html("Setting Up an Existing IDE").attr('href',toRoot + 'sdk/installing/index.html');

Completed in 583 milliseconds