HomeSort by relevance Sort by last modified time
    Searched defs:Id (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium/chrome/browser/sync/syncable/
syncable_id.h 20 class Id;
28 std::ostream& operator<<(std::ostream& out, const Id& id);
30 // For historical reasons, 3 concepts got everloaded into the Id:
37 // 1. c<client only opaque id> for client items that have not been committed.
39 // 3. s<server provided opaque id> for items that the server knows about.
40 class Id {
44 friend std::ostream& operator<<(std::ostream& out, const Id& id);
50 inline Id() : s_("r") {
    [all...]
  /frameworks/base/core/jni/
android_nfc.h 42 uint8_t *Id;
  /external/v8/src/
v8-counters.h 265 enum Id {
frames.h 148 enum Id {
202 // Get the id of this stack frame.
203 Id id() const { return static_cast<Id>(OffsetFrom(caller_sp())); } function in class:v8::internal::BASE_EMBEDDED
702 // Skip frames until the frame with the given id is reached.
703 explicit JavaScriptFrameIteratorTemp(StackFrame::Id id) { AdvanceToId(id); }
705 inline JavaScriptFrameIteratorTemp(Isolate* isolate, StackFrame::Id id)
    [all...]
  /external/clang/lib/Driver/
Types.cpp 23 ID PreprocessedType;
27 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) \
34 static const TypeInfo &getInfo(unsigned id) {
35 assert(id > 0 && id - 1 < numTypes && "Invalid Type ID.");
36 return TypeInfos[id - 1];
39 const char *types::getTypeName(ID Id) {
40 return getInfo(Id).Name
    [all...]
OptTable.cpp 76 OptSpecifier::OptSpecifier(const Option *Opt) : ID(Opt->getID()) {}
132 Option *OptTable::CreateOption(unsigned id) const {
133 const Info &info = getInfo(id);
141 Opt = new InputOption(id); break;
143 Opt = new UnknownOption(id); break;
145 Opt = new OptionGroup(id, info.Name, Group); break;
147 Opt = new FlagOption(id, info.Name, Group, Alias); break;
149 Opt = new JoinedOption(id, info.Name, Group, Alias); break;
151 Opt = new SeparateOption(id, info.Name, Group, Alias); break;
153 Opt = new CommaJoinedOption(id, info.Name, Group, Alias); break
    [all...]
Driver.cpp 123 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
126 phases::ID FinalPhase;
717 unsigned Id = Ids.size();
718 Ids[A] = Id;
719 llvm::errs() << Id << ": " << os.str() << ", "
722 return Id;
861 types::ID InputType = types::TY_Nothing;
870 types::ID Ty = types::TY_INVALID;
906 types::ID OldTy = Ty;
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_menu_manager.cc 24 ExtensionMenuItem::ExtensionMenuItem(const Id& id,
29 : id_(id),
41 ExtensionMenuItem* ExtensionMenuItem::ReleaseChild(const Id& child_id,
45 if ((*i)->id() == child_id) {
58 std::set<ExtensionMenuItem::Id> ExtensionMenuItem::RemoveAllDescendants() {
59 std::set<Id> result;
62 result.insert(child->id());
63 std::set<Id> removed = child->RemoveAllDescendants();
90 item->parent_id_.reset(new Id(id_))
167 ExtensionMenuItem::Id* id = item->parent_id(); local
    [all...]
extension_menu_manager.h 36 // An Id uniquely identifies a context menu item registered by an extension.
37 struct Id {
38 Id();
39 Id(Profile* profile, const std::string& extension_id, int uid);
40 ~Id();
42 bool operator==(const Id& other) const;
43 bool operator!=(const Id& other) const;
44 bool operator<(const Id& other) const;
103 ExtensionMenuItem(const Id& id,
114 const Id& id() const { return id_; } function in class:ExtensionMenuItem
    [all...]
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 120 template<int n> struct Id { int k = n; };
125 return Id<m.n>().k; // expected-error {{not an integral constant expression}}
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.h 74 #define PH_FRINFC_NDEFRECORD_TNF_EMPTY ((uint8_t)0x00) /**< Empty Record, no type, ID or payload present. */
97 #define PH_FRINFC_NDEFRECORD_FLAGS_IL ((uint8_t)0x08) /**< The ID Length Field is present. */
114 #define PH_FRINFC_NDEFRECORD_BUF_TNF_VALUE ((uint8_t)0x00) /** \internal If TNF = Empty, Unknown and Unchanged, the id, type and payload length is ZERO */
182 * The length of the ID field. See \ref phFriNfc_NdefRecord_t::Flags .
184 * \li \b Extraction: If the IL flag indicates that an ID field is present this
187 * \li \b Composition: If the caller specifies via IL that an ID field is present
188 * the length of the ID has to be specified in this member.
194 * Record ID: This is a buffer holding the ID
199 * \li \b Extraction: If the record holds an ID (IL Flag) the function sets the pointer to th
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
SettingsTest.java 67 int Id = cursor.getInt(ID_INDEX);
78 Settings.System._ID + " = " + Id, null, null);
90 Settings.System._ID + " = " + Id, null, null);
138 int Id = cursor.getInt(ID_INDEX);
161 cursor = provider.query(uri, BLUETOOTH_DEVICES_PROJECTION, "_id = " + Id, null, null);
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 64 IdentifierInfo *Id = PP.getIdentifierInfo(Name);
69 PP.setMacroInfo(Id, MI);
70 return Id;
    [all...]
  /external/llvm/include/llvm/ADT/
Trie.h 57 bool operator() (Node* N, char Id) {
58 return (N->Label[0] < Id);
82 char Id = N->Label[0];
84 Id, NodeCmp());
131 inline Node* getEdge(char Id) {
134 Id, NodeCmp());
135 if (I != Children.end() && (*I)->Label[0] == Id)
165 inline Node* splitEdge(Node* N, char Id, size_t index) {
166 Node* eNode = N->getEdge(Id);
211 char Id = s1[0]
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 56 Id, StrVal, VarName, CodeFragment
70 std::string CurStrVal; // This is valid for ID, STRVAL, VARNAME, CODEFRAGMENT
94 assert((CurCode == tgtok::Id || CurCode == tgtok::StrVal ||
  /hardware/ti/omap3/dspbridge/inc/
qosregistry.h 104 data type ID */
119 ULONG Id;
209 UINT heapId; /* resource heap ID */
219 UINT group; /* scratch group ID (only for scratch memory) */
416 Finds resource(s) or component(s) that match the given Id. For
420 ID QOS_FN_ResourceUpdateInfo to
426 Id requested Id
448 DSP_STATUS DSPRegistry_Find(UINT Id, struct QOSREGISTRY *registry,
625 id type of data
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
qosregistry.h 98 data type ID */
113 ULONG Id;
203 UINT heapId; /* resource heap ID */
213 UINT group; /* scratch group ID (only for scratch memory) */
410 Finds resource(s) or component(s) that match the given Id. For
414 ID QOS_FN_ResourceUpdateInfo to
420 Id requested Id
442 DSP_STATUS DSPRegistry_Find(UINT Id, struct QOSREGISTRY *registry,
619 id type of dat
    [all...]
  /external/clang/lib/Parse/
Parser.cpp     [all...]
ParseDeclCXX.cpp 426 /// unqualified-id
427 /// 'using' :: unqualified-id
430 /// 'using' identifier = type-id ;
461 // Parse the unqualified-id. We allow parsing of both constructor and
541 // template <...> using id = type;
707 /// simple-template-id
711 // Check whether we have a template-id that names a type.
718 assert(Tok.is(tok::annot_typename) && "template-id -> type failed");
736 IdentifierInfo *Id = Tok.getIdentifierInfo();
740 // It looks the user intended to write a template-id here, but th
    [all...]
ParseExprCXX.cpp 110 /// nested-name-specifier 'template'[opt] simple-template-id '::'
174 // If the qualified-id has the form
200 // nested-name-specifier 'template'[opt] simple-template-id '::'
239 // If the next token is not '<', we have a qualified-id that refers
241 // template-id.
247 // Commit to parsing the template-id.
269 // simple-template-id '::'
271 // So we need to check whether the simple-template-id is of the
280 // Consume the template-id token.
385 // with a template-id annotation. We do not permit th
    [all...]
ParseStmt.cpp 168 UnqualifiedId Id;
169 Id.setIdentifier(Name, NameLoc);
173 SS, Id, SourceLocation(),
184 // nested-name-specifier. We don't want to leave the template-id
195 // We've annotated a template-id, so try again now.
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 163 // If 'id' does not yet refer to any declarations, make it refer to the
164 // predefined 'id'.
165 DeclarationName Id = &Context.Idents.get("id");
166 if (IdentifierResolver::begin(Id) == IdentifierResolver::end())
    [all...]
SemaTemplateInstantiate.cpp     [all...]
  /external/webkit/Source/WebCore/css/
CSSSelector.h 92 Id,
236 bool hasAttribute() const { return m_match == Id || m_match == Class || (m_hasRareData && m_data.m_rareData->m_attribute != anyQName()); }
  /external/clang/lib/AST/
StmtPrinter.cpp 769 IdentifierInfo *Id = ON.getFieldName();
770 if (!Id)
777 OS << Id->getName();
    [all...]

Completed in 1916 milliseconds

1 2