Home
last modified time | relevance | path

Searched refs:GetRecord (Results 1 – 9 of 9) sorted by relevance

/external/clang/include/clang/Basic/
DBuiltins.h84 return GetRecord(ID).Name; in GetName()
89 return GetRecord(ID).Type; in GetTypeString()
95 return strchr(GetRecord(ID).Attributes, 'c') != 0; in isConst()
100 return strchr(GetRecord(ID).Attributes, 'n') != 0; in isNoThrow()
105 return strchr(GetRecord(ID).Attributes, 'r') != 0; in isNoReturn()
110 return strchr(GetRecord(ID).Attributes, 'j') != 0; in isReturnsTwice()
116 return strchr(GetRecord(ID).Attributes, 'u') != 0; in isUnevaluated()
122 return strchr(GetRecord(ID).Attributes, 'F') != 0; in isLibFunction()
129 return strchr(GetRecord(ID).Attributes, 'f') != 0; in isPredefinedLibFunction()
136 return strchr(GetRecord(ID).Attributes, 'i') != 0; in isPredefinedRuntimeFunction()
[all …]
/external/chromium_org/tools/gn/
Dbuilder_unittest.cc104 builder_->GetRecord(settings_.toolchain_label()); in TEST_F()
126 BuilderRecord* a_record = builder_->GetRecord(a_label); in TEST_F()
132 BuilderRecord* b_record = builder_->GetRecord(b_label); in TEST_F()
173 BuilderRecord* c_record = builder_->GetRecord(c_label); in TEST_F()
211 BuilderRecord* b_record = builder_->GetRecord(b_label); in TEST_F()
221 BuilderRecord* a_record = builder_->GetRecord(a_label); in TEST_F()
Dbuilder.cc115 const BuilderRecord* record = GetRecord(label); in GetItem()
122 const BuilderRecord* record = GetRecord(label); in GetToolchain()
151 const BuilderRecord* Builder::GetRecord(const Label& label) const { in GetRecord() function in Builder
153 return const_cast<Builder*>(this)->GetRecord(label); in GetRecord()
156 BuilderRecord* Builder::GetRecord(const Label& label) { in GetRecord() function in Builder
250 BuilderRecord* record = GetRecord(label); in GetOrCreateRecordOfType()
278 BuilderRecord* record = GetRecord(label); in GetResolvedRecordOfType()
Dbuilder.h48 const BuilderRecord* GetRecord(const Label& label) const;
49 BuilderRecord* GetRecord(const Label& label);
/external/clang/lib/Basic/
DBuiltins.cpp30 const Builtin::Info &Builtin::Context::GetRecord(unsigned ID) const { in GetRecord() function in Builtin::Context
94 Table.get(GetRecord(ID).Name).setBuiltinID(0); in ForgetBuiltin()
100 const char *Printf = strpbrk(GetRecord(ID).Attributes, "pP"); in isPrintfLike()
119 const char *Scanf = strpbrk(GetRecord(ID).Attributes, "sS"); in isScanfLike()
/external/chromium_org/content/browser/indexed_db/
Dindexed_db_backing_store_unittest.cc65 backing_store_->GetRecord(&transaction2, 1, 1, m_key1, &result_value); in TEST_F()
121 bool ok = backing_store_->GetRecord(&transaction2, in TEST_F()
187 ok = backing_store_->GetRecord( in TEST_F()
190 ok = backing_store_->GetRecord( in TEST_F()
193 ok = backing_store_->GetRecord(&transaction1, in TEST_F()
199 ok = backing_store_->GetRecord( in TEST_F()
Dindexed_db_backing_store.h122 virtual bool GetRecord(IndexedDBBackingStore::Transaction* transaction,
Dindexed_db_database.cc580 ok = backing_store_->GetRecord(transaction->BackingStoreTransaction(), in GetOperation()
633 ok = backing_store_->GetRecord(transaction->BackingStoreTransaction(), in GetOperation()
Dindexed_db_backing_store.cc1142 bool IndexedDBBackingStore::GetRecord( in GetRecord() function in content::IndexedDBBackingStore