HomeSort by relevance Sort by last modified time
    Searched refs:Id (Results 101 - 125 of 171) sorted by null

1 2 3 45 6 7

  /packages/apps/Browser/src/com/android/browser/
AddBookmarkPage.java 129 long Id;
130 Folder(String name, long id) {
132 Id = id;
162 long folder = folderData.Id;
209 mCurrentFolder = folder.Id;
229 if (data != null && ((Folder) data).Id == mCurrentFolder) {
288 long id = mMap.getLong(BrowserContract.Bookmarks._ID); local
291 BookmarkUtils.displayRemoveBookmarkDialog(id,
299 public void onSetSelection(long id) {
335 long id = addFolderToCurrent(mFolderNamer.getText().toString()); local
545 descendInto(tv.getText().toString(), id); local
903 Long id = mMap.getLong(BrowserContract.Bookmarks._ID); local
1053 long id = -1; field in class:AddBookmarkPage.EditBookmarkInfo
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 372 #define BUILTIN_TYPE(Id, SingletonId)
373 #define PLACEHOLDER_TYPE(Id, SingletonId) \
374 case BuiltinType::Id:
CGRTTI.cpp 199 #define BUILTIN_TYPE(Id, SingletonId)
200 #define PLACEHOLDER_TYPE(Id, SingletonId) \
201 case BuiltinType::Id:
453 // Handle id and Class.
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 62 virtual void MacroDefined(const Token &Id, const MacroInfo *MI) {
72 Id.getIdentifierInfo()->getName(),
CIndexUSRs.cpp 293 ObjCInterfaceDecl *ID = D->getClassInterface();
294 if (!ID) {
298 Visit(ID);
330 ObjCInterfaceDecl *ID = CD->getClassInterface();
331 if (!ID) {
341 GenObjCClass(ID->getName());
344 GenObjCCategory(ID->getName(), CD->getName());
350 ObjCInterfaceDecl *ID = CD->getClassInterface();
351 if (!ID) {
359 GenObjCCategory(ID->getName(), CD->getName())
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefRecord.c 430 /* ID and IDlength are present only if IL flag is set*/
435 /* ++ is for the ID Length Byte */
510 Record->Id = RawRecord;
658 /*check for IL bit set(Flag), if so then IDlength is present and fill the ID*/
660 temp=Record->Id;
    [all...]
phLibNfc.c 590 if(NULL != pNdefRecord->Id)
592 phOsalNfc_FreeMemory(pNdefRecord->Id);
593 pNdefRecord->Id = NULL;
    [all...]
phLibNfc_ndef_raw.c     [all...]
  /external/svox/pico/lib/
picocep.c     [all...]
  /external/chromium/chrome/browser/sync/engine/
change_reorder_buffer.cc 52 if (node.Get(syncable::ID).IsRoot()) {
60 // Otherwise, get the parent ID so that we can add a ParentChildLink.
138 record.id = i->first;
140 if (specifics_.find(record.id) != specifics_.end())
141 record.specifics = specifics_[record.id];
142 if (extra_data_.find(record.id) != extra_data_.end())
143 record.extra = extra_data_[record.id];
171 record.id = next;
176 if (specifics_.find(record.id) != specifics_.end())
177 record.specifics = specifics_[record.id];
198 syncable::Id id = trans->directory()-> local
    [all...]
syncapi.cc 125 // Helper function to look up the int64 metahandle of an object given the ID
128 const syncable::Id& id) {
129 syncable::Entry entry(trans, syncable::GET_BY_ID, id);
291 syncable::Id id_string = GetEntry()->Get(syncable::PREV_ID);
298 syncable::Id id_string = GetEntry()->Get(syncable::NEXT_ID);
307 syncable::Id id_string =
308 dir->GetFirstChildId(trans, GetEntry()->Get(syncable::ID));
316 node_info->SetString("id", base::Int64ToString(GetId()));
687 void WriteNode::SetExternalId(int64 id) {
2345 int64 id = i->ref(syncable::META_HANDLE); local
2421 int64 id = i->ref(syncable::META_HANDLE); local
2662 int64 id; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator_unittest.cc 178 // The constrcutor itself will initialize the id to root.
179 syncable::Id root_id;
192 kernel.put(syncable::ID, root_id);
  /external/webkit/Source/WebCore/css/
CSSSelector.cpp 69 case Id:
581 if (cs->m_match == CSSSelector::Id) {
684 case Id:
741 if (m_match == Id || m_match == Class || m_match == PseudoClass)
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 458 int Id = DAGSize;
462 Allocate(SU->NodeNum, --Id);
  /external/chromium/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc 91 class Id;
569 MutableEntry item(&trans, CREATE, parent.Get(syncable::ID), tag);
574 syncable::Id server_item_id = service_->id_factory()->NewServerId();
575 item.Put(syncable::ID, server_item_id);
576 syncable::Id new_predecessor;
624 syncable::Id parent_id_;
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 52 IdentifierInfo *Id, CXXRecordDecl *PrevDecl)
53 : RecordDecl(K, TK, DC, StartLoc, IdLoc, Id, PrevDecl),
59 SourceLocation IdLoc, IdentifierInfo *Id,
63 Id, PrevDecl);
    [all...]
MicrosoftMangle.cpp 704 #define BUILTIN_TYPE(Id, SingletonId)
705 #define PLACEHOLDER_TYPE(Id, SingletonId) \
706 case BuiltinType::Id:
    [all...]
StmtPrinter.cpp 769 IdentifierInfo *Id = ON.getFieldName();
770 if (!Id)
777 OS << Id->getName();
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 64 IdentifierInfo *Id = PP.getIdentifierInfo(Name);
69 PP.setMacroInfo(Id, MI);
70 return Id;
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 144 // An id-expression that denotes a non-static data member or non-static
147 // - if that id-expression denotes a non-static data member and it
167 // if name lookup (3.4.1) resolves the name in the id-expression to a
484 // ... In these cases, the id-expression shall name a
553 // If the member name was a qualified-id, look into the
    [all...]
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...]
  /external/clang/lib/Parse/
Parser.cpp     [all...]
  /external/chromium/chrome/browser/sync/sessions/
sync_session_unittest.cc 140 commit_set.AddCommitItem(0, syncable::Id(), syncable::BOOKMARKS);
  /external/clang/lib/Driver/
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/v8/src/
v8-counters.h 265 enum Id {

Completed in 810 milliseconds

1 2 3 45 6 7