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

  /external/chromium_org/third_party/skia/src/core/
SkRecord.h 105 // You must show proof that you've already adopted the existing command.
106 template <typename T, typename Existing>
107 T* replace(unsigned i, const SkRecords::Adopted<Existing>& proofOfAdoption) {
110 SkASSERT(Existing::kType == fTypes[i]);
111 SkASSERT(proofOfAdoption == fRecords[i].ptr<Existing>());
  /external/skia/src/core/
SkRecord.h 101 // You must show proof that you've already adopted the existing command.
102 template <typename T, typename Existing>
103 T* replace(unsigned i, const SkRecords::Adopted<Existing>& proofOfAdoption) {
106 SkASSERT(Existing::kType == fTypes[i]);
107 SkASSERT(proofOfAdoption == fRecords[i].ptr<Existing>());
  /external/clang/lib/Sema/
IdentifierResolver.cpp 180 // Add the new declaration before the existing declaration.
186 // Add new declaration after the existing declaration.
254 /// existing declaration.
255 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) {
257 if (Existing == New)
261 if (Existing->getKind() != New->getKind())
265 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
267 Decl *MostRecent = Existing->getMostRecentDecl();
268 if (Existing == MostRecent)
274 // If the existing declaration is somewhere in the previous declaratio
    [all...]
SemaDeclAttr.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /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/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/chromium_org/content/test/data/indexeddb/
index_test.js 85 debug('Existing index triggered on error as expected.');
  /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...]
ModuleMap.cpp 145 /// header, supplied by Clang to replace, override, or augment existing system
541 // 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
  /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 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...]
  /build/tools/droiddoc/templates-sdk-dyn/
sdkpage.cs 471 $("a#next-link").html("Setting Up an Existing IDE").attr('href',toRoot + 'sdk/installing/index.html');
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
object.js 376 * already in use. Use set if you want to change an existing pair.
531 * @param {Object} target The object to modify. Existing properties will be
  /external/chromium_org/tools/binary_size/template/
D3SymbolTreeMap.js 228 // Existing symbol type, increment.
    [all...]

Completed in 1257 milliseconds