Searched defs:Id (Results 1 - 25 of 98) sorted by relevance

1234

/external/clang/lib/Driver/
H A DPhases.cpp16 const char *phases::getPhaseName(ID Id) { argument
17 switch (Id) {
H A DTypes.cpp39 const char *types::getTypeName(ID Id) { argument
40 return getInfo(Id).Name;
43 types::ID types::getPreprocessedType(ID Id) { argument
44 return getInfo(Id).PreprocessedType;
47 const char *types::getTypeTempSuffix(ID Id, bool CLMode) { argument
48 if (Id == TY_Object && CLMode)
50 return getInfo(Id).TempSuffix;
53 bool types::onlyAssembleType(ID Id) { argument
54 return strchr(getInfo(Id).Flags, 'a');
57 bool types::onlyPrecompileType(ID Id) { argument
61 canTypeBeUserSpecified(ID Id) argument
65 appendSuffixForType(ID Id) argument
69 canLipoType(ID Id) argument
76 isAcceptedByClang(ID Id) argument
99 isObjC(ID Id) argument
112 isCXX(ID Id) argument
177 types::ID Id = (types::ID) (i + 1); local
187 getCompilationPhases(ID Id, llvm::SmallVectorImpl<phases::ID> &P) argument
210 lookupCXXTypeForCType(ID Id) argument
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dfake_var_interface.h27 typedef uint64_t Id; typedef in class:FakeVarInterface
34 typedef std::map<Id, FakeStringVar> VarMap;
35 Id next_id_;
/external/clang/include/clang/Frontend/
H A DUtils.h115 llvm::opt::OptSpecifier Id, int Default,
119 llvm::opt::OptSpecifier Id, int Default,
121 return getLastArgIntValue(Args, Id, Default, &Diags);
118 getLastArgIntValue(const llvm::opt::ArgList &Args, llvm::opt::OptSpecifier Id, int Default, DiagnosticsEngine &Diags) argument
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor_table.h42 typedef std::string Id; typedef in struct:predictors::AutocompleteActionPredictorTable::Row
47 Row(const Id& id,
55 Id id;
65 void GetRow(const Row::Id& id, Row* row);
70 void DeleteRows(const std::vector<Row::Id>& id_list);
/external/chromium_org/content/public/browser/
H A Ddesktop_media_id.h31 typedef intptr_t Id; typedef in struct:content::DesktopMediaID
49 DesktopMediaID(Type type, Id id)
67 Id id;
/external/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h74 /// \brief Replace an if-statement bound to \c Id with the outdented text of its
79 ReplaceIfStmtWithItsBody(StringRef Id, bool PickTrueBranch);
83 std::string Id; member in class:clang::tooling::ReplaceIfStmtWithItsBody
/external/lzma/CPP/7zip/Common/
H A DMethodProps.h14 PROPID Id; member in struct:CProp
20 CMethodId Id; member in struct:CMethod
H A DRegisterCodec.h13 CMethodId Id; member in struct:CCodecInfo
H A DCreateCoder.h17 CMethodId Id; member in struct:CCodecInfoEx
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternLexer.cs41 public const int Id = 3; field in class:Antlr.Runtime.Tree.TreePatternLexer
91 return Id;
/external/chromium/chrome/browser/sync/syncable/
H A Dsyncable_id.h20 class Id;
28 std::ostream& operator<<(std::ostream& out, const Id& id);
30 // For historical reasons, 3 concepts got everloaded into the Id:
40 class Id { class in namespace:syncable
44 friend std::ostream& operator<<(std::ostream& out, const Id& id);
50 inline Id() : s_("r") { } function in class:syncable::Id
51 inline Id(const Id& that) { function in class:syncable::Id
54 inline Id& operator = (const Id
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp47 static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) { argument
55 SymName += Id;
/external/v8/src/
H A Dv8-counters.h267 enum Id { enum in class:v8::internal::Counters
/external/chromium_org/sync/syncable/
H A Dsyncable_id.h30 class Id;
32 SYNC_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& out, const Id& id);
34 // For historical reasons, 3 concepts got everloaded into the Id:
44 class SYNC_EXPORT Id { class in namespace:syncer::syncable
48 inline Id() : s_("r") { } function in class:syncer::syncable::Id
49 inline Id(const Id& that) { function in class:syncer::syncable::Id
52 inline Id& operator = (const Id& that) {
56 inline void Copy(const Id
[all...]
/external/chromium_org/ui/surface/
H A Dtransport_dib.h34 // the wire so that the remote side can map the transport DIB. The Id typedef
39 // On Windows, the Id type includes a sequence number (epoch) to solve an ABA
72 typedef HandleAndSequenceNum Id; typedef in class:TransportDIB
86 struct Id { struct in class:TransportDIB
88 Id() : shmkey(-1) { function in struct:TransportDIB::Id
91 bool operator<(const Id& other) const {
95 bool operator==(const Id& other) const {
116 typedef base::SharedMemoryHandle Id; typedef in class:TransportDIB
118 typedef base::SharedMemoryId Id; typedef in class:TransportDIB
156 static bool is_valid_id(Id i
[all...]
/external/chromium_org/v8/src/
H A Dv8-counters.h351 enum Id { enum in class:v8::internal::Counters
/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp62 ReplaceIfStmtWithItsBody::ReplaceIfStmtWithItsBody(StringRef Id, argument
64 : Id(Id), PickTrueBranch(PickTrueBranch) {}
68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
/external/llvm/utils/TableGen/
H A DCTagsEmitter.cpp34 const std::string *Id; member in class:__anon22834::Tag
38 : Id(&Name), Loc(Location) {}
39 int operator<(const Tag &B) const { return *Id < *B.Id; }
45 OS << *Id << "\t" << BufferName << "\t" << LineAndColumn.first << "\n";
/external/chromium_org/cc/quads/
H A Drender_pass.h46 struct Id { struct in class:cc::RenderPass
50 Id(int layer_id, int index) : layer_id(layer_id), index(index) {} function in struct:cc::RenderPass::Id
53 bool operator==(const Id& other) const {
56 bool operator!=(const Id& other) const {
59 bool operator<(const Id& other) const {
72 scoped_ptr<RenderPass> Copy(Id new_id) const;
78 void SetNew(Id id,
83 void SetAll(Id id,
92 Id id;
126 inline size_t hash_value(const cc::RenderPass::Id
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.h65 Id, enumerator in enum:WebCore::FINAL::ParseState
H A DVTTRegion.h108 Id, enumerator in enum:WebCore::VTTRegion::RegionSetting
/external/libnfc-nxp/src/
H A DphFriNfc_NdefRecord.h206 uint8_t *Id; member in struct:phFriNfc_NdefRecord
/external/chromium/chrome/browser/extensions/
H A Dextension_menu_manager.cc24 ExtensionMenuItem::ExtensionMenuItem(const Id& id,
41 ExtensionMenuItem* ExtensionMenuItem::ReleaseChild(const Id& child_id,
58 std::set<ExtensionMenuItem::Id> ExtensionMenuItem::RemoveAllDescendants() {
59 std::set<Id> result;
63 std::set<Id> removed = child->RemoveAllDescendants();
90 item->parent_id_.reset(new Id(id_));
151 bool ExtensionMenuManager::AddChildItem(const ExtensionMenuItem::Id& parent_id,
165 const ExtensionMenuItem::Id& ancestor_id) {
167 ExtensionMenuItem::Id* id = item->parent_id();
183 const ExtensionMenuItem::Id
477 ExtensionMenuItem::Id::Id() function in class:ExtensionMenuItem::Id
481 ExtensionMenuItem::Id::Id(Profile* profile, function in class:ExtensionMenuItem::Id
[all...]
/external/chromium_org/cc/resources/
H A Dtile.h29 typedef uint64 Id; typedef in class:cc::Tile
31 Id id() const {
163 Id id_;
164 static Id s_next_id_;

Completed in 815 milliseconds

1234