HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 476 - 500 of 4561) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_collate.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
98 static _STLP_STATIC_DECLSPEC locale::id id; member in class:collate
_num_get.h 123 static locale::id id; member in class:num_get
_numpunct.h 62 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
91 static _STLP_STATIC_DECLSPEC locale::id id; member in class:numpunct
  /sdk/emulator/qtools/
dmtrace.h 35 int id; member in struct:DmTrace::ThreadRecord
40 int id; member in struct:DmTrace::FunctionRecord
  /system/core/init/
keychords.c 53 keychord->id = keychords_count + 1;
55 svc->keychord_id = keychord->id;
100 __u16 id; local
104 ret = read(keychord_fd, &id, sizeof(id));
105 if (ret != sizeof(id)) {
106 ERROR("could not read keychord id\n");
111 svc = service_find_by_keychord(id);
116 ERROR("service for keychord %d not found\n", id);
  /bionic/libc/kernel/common/linux/
platform_device.h 25 u32 id; member in struct:platform_device
  /cts/tests/tests/permission/src/android/permission/cts/
TelephonyManagerPermissionTest.java 47 String id = mTelephonyManager.getDeviceId(); local
48 fail("Got device ID: " + id);
96 fail("Got subscriber id: " + sid);
  /development/ndk/platforms/android-3/include/linux/
platform_device.h 19 u32 id; member in struct:platform_device
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
ContactPhotoBinder.java 38 * queries a contact's photo based on the contact's id and sets the
64 final long id = cursor.getLong(columnIndex); local
67 Drawable d = mCache.get(id);
72 Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, id);
89 mCache.put(id, d);
  /external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java 83 * Unregisters the {@link CookieSpecFactory} with the given ID.
85 * @param id the identifier of the {@link CookieSpec cookie specification} to unregister
87 public synchronized void unregister(final String id) {
88 if (id == null) {
89 throw new IllegalArgumentException("Id may not be null");
91 registeredSpecs.remove(id.toLowerCase(Locale.ENGLISH));
95 * Gets the {@link CookieSpec cookie specification} with the given ID.
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 19 * $Id: DefaultErrorHandler.java 524806 2007-04-02 15:51:39Z zongaro $
352 String id = (null != locator.getPublicId() ) local
357 pw.print(id + "; " +XMLMessages.createXMLMessage("line", null) + locator.getLineNumber()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9FieldID.java 14 * ASN.1 def for Elliptic-Curve Field ID structure. See
21 private ASN1ObjectIdentifier id; field in class:X9FieldID
31 this.id = prime_field;
52 this.id = characteristic_two_field;
77 this.id = (ASN1ObjectIdentifier)seq.getObjectAt(0);
83 return id;
95 * fieldType FIELD-ID.&amp;id({IOSet}),
96 * parameters FIELD-ID.&amp;Type({IOSet}{&#64;fieldType})
104 v.add(this.id);
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification.h 26 // The profile is the current user profile. The id is any string used
30 const std::string& id,
67 explicit Delegate(const std::string& id) : id_(id) {}
72 std::string id() const { return id_; } function in class:chromeos::SystemNotification::Delegate
  /external/chromium/chrome/browser/extensions/
extension_info_map.cc 27 extension_info_[extension->id()] = extension;
28 Map::iterator iter = disabled_extension_info_.find(extension->id());
33 void ExtensionInfoMap::RemoveExtension(const std::string& id,
36 Map::iterator iter = extension_info_.find(id);
39 disabled_extension_info_[id] = (*iter).second;
44 disabled_extension_info_.erase(id);
49 // http://code.google.com/p/chromium/issues/detail?id=50582 .
50 NOTREACHED() << id;
55 std::string ExtensionInfoMap::GetNameForExtension(const std::string& id) const {
56 Map::const_iterator iter = extension_info_.find(id);
119 std::string id = url.host(); local
    [all...]
extension_rlz_module.cc 76 // http://code.google.com/p/chromium/issues/detail?id=62098
101 // http://code.google.com/p/chromium/issues/detail?id=62098
119 // http://code.google.com/p/chromium/issues/detail?id=62098
154 std::string id; local
155 EXTENSION_FUNCTION_VALIDATE(args_->GetString(4, &id));
171 id.c_str(), lang.c_str(),
180 // http://code.google.com/p/chromium/issues/detail?id=62098
  /external/chromium/chrome/browser/first_run/
upgrade_util_win.cc 42 DWORD id = GetCurrentProcessId(); local
46 id,
  /external/chromium/chrome/browser/history/
in_memory_history_backend.cc 25 // If a page becomes starred we use this id in place of the real starred id.
127 // have Sync(), which would take the ID if it's given and add it.
131 URLID id = db_->GetRowForURL(i->url(), NULL); local
132 if (id)
133 db_->UpdateURLRow(id, *i);
135 id = db_->AddURL(*i);
137 index_->UpdateURL(id, *i);
158 URLID id = db_->GetRowForURL(*i, NULL); local
159 if (id) {
193 URLID id = db_->GetRowForURL(url, NULL); local
    [all...]
  /external/chromium/chrome/browser/policy/
policy_path_parser_win.cc 28 int id; member in struct:policy::path_parser::WinFolderNamesToCSIDLMapping
52 ::SHGetSpecialFolderPath(0, path, win_folder_mapping[i].id, false);
  /external/chromium/chrome/browser/sync/engine/
syncproto.h 26 syncable::Id id() const { function in class:browser_sync::IdWrapper
27 return syncable::Id::CreateFromServerId(Base::id_string());
29 void set_id(const syncable::Id& id) {
30 Base::set_id_string(id.GetServerId());
43 void set_parent_id(const syncable::Id& id) {
44 set_parent_id_string(id.GetServerId());
46 syncable::Id parent_id() const
    [all...]
verify_updates_command.cc 80 syncable::Id id = entry.id(); local
87 if (!id.ServerKnows()) {
88 LOG(ERROR) << "Illegal negative id in received updates";
99 syncable::MutableEntry same_id(trans, GET_BY_ID, id);
  /external/chromium/chrome/browser/sync/glue/
extension_change_processor.cc 69 const std::string& id = uninstalled_extension_info->extension_id; local
70 VLOG(1) << "Removing server data for uninstalled extension " << id
72 RemoveServerData(traits_, id, user_share_);
82 VLOG(1) << "Updating server data for extension " << extension->id()
110 if (!node.InitByIdLookup(change.id)) {
112 error << "Extension node lookup failed for change " << change.id
126 << change.id;
  /external/chromium/chrome/common/extensions/
file_browser_handler.h 26 // extension id
32 // action id
33 const std::string& id() const { return id_; } function in class:FileBrowserHandler
34 void set_id(const std::string& id) { id_ = id; }
53 // The id for the extension this action belongs to (as defined in the
58 // The id for the FileBrowserHandler, for example: "PdfFileAction".
  /external/chromium/chrome/common/net/
test_url_fetcher_factory.h 47 TestURLFetcher(int id,
60 // Unique ID in our factory.
61 int id() const { return id_; } function in class:TestURLFetcher
87 // are registered in a map by the id passed to the create method.
93 virtual URLFetcher* CreateURLFetcher(int id,
97 TestURLFetcher* GetFetcherByID(int id) const;
98 void RemoveFetcherFromMap(int id);
101 // Maps from id passed to create to the returned URLFetcher.
149 virtual URLFetcher* CreateURLFetcher(int id,
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stunrequest.h 90 // Returns the transaction ID of this request.
91 const std::string& id() { return id_; } function in class:cricket::StunRequest
106 // Fills in a request object to be sent. Note that request's transaction ID
  /external/chromium_org/ash/shelf/
shelf_window_watcher_unittest.cc 37 LauncherID id = model_->next_id(); local
41 return id;
122 LauncherID id = CreateLauncherItem(window.get()); local
125 int index = model_->ItemIndexByID(id);
135 // index and id are not changed after updating a launcher item.
136 EXPECT_EQ(index, model_->ItemIndexByID(id));
137 EXPECT_EQ(id, model_->items()[index].id);
148 LauncherID id = CreateLauncherItem(window.get()); local
151 int index = model_->ItemIndexByID(id);
    [all...]

Completed in 619 milliseconds

<<11121314151617181920>>