HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 851 - 875 of 5510) sorted by null

<<31323334353637383940>>

  /development/ndk/platforms/android-3/include/linux/
sysdev.h 47 u32 id; member in struct:sys_device
  /development/ndk/platforms/android-L/include/linux/
virtio_ring.h 46 __u32 id; member in struct:vring_used_elem
  /development/samples/ApiDemos/src/com/example/android/apis/content/
PickContact.java 73 ((Button)findViewById(R.id.pick_contact)).setOnClickListener(
76 ((Button)findViewById(R.id.pick_person)).setOnClickListener(
79 ((Button)findViewById(R.id.pick_phone)).setOnClickListener(
82 ((Button)findViewById(R.id.pick_address)).setOnClickListener(
97 int id = c.getInt(0); local
101 String txt = mPendingResult.mMsg + ":\n" + uri + "\nid: " + id;
  /device/samsung/manta/libsensors/iio/
events.h 21 * @id: event identifier
26 __u64 id; member in struct:iio_event_data
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 78 define_tokens( :ID => 5, :EOF => -1, :T__19 => 19, :WS => 9, :T__16 => 16,
98 "T__16", "T__17", "T__18", "T__19", "CONSTANT", "ID",
101 :t__16!, :t__17!, :t__18!, :t__19!, :constant!, :id!,
402 # lexer rule id! (ID)
404 def id!
408 type = ID
838 # at line 1:8: ( T__10 | T__11 | T__12 | T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | CONSTANT | ID | TEMPLATE | STRING | COMMENT | WS )
887 # at line 1:79: ID
888 id!
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
TopLevelThreadGroupsTest.java 104 long id = replyChilds.getNextValueAsThreadID(); local
105 logWriter.println("\n==> childThreadID[" + j + "] = " + id);
110 packet.setNextValueAsThreadID(id);
122 long id = replyChilds.getNextValueAsThreadGroupID(); local
123 logWriter.println("\n==> childGroupID[" + j + "] = " + id);
128 packet.setNextValueAsThreadGroupID(id);
137 printThreadGroup(id);
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 133 String id = (String) authPrefs.get(i); local
134 Header challenge = challenges.get(id.toLowerCase(Locale.ENGLISH));
138 this.log.debug(id + " authentication scheme selected");
141 authScheme = registry.getAuthScheme(id, response.getParams());
145 this.log.warn("Authentication scheme " + id + " not supported");
151 this.log.debug("Challenge for " + id + " authentication scheme not available");
  /external/bison/src/
parse-gram.y 188 %token ID "identifier"
210 %type <uniqstr> BRACKETED_ID ID ID_COLON TYPE variable
219 %type <symbol> id id_colon string_as_id symbol symbol.prec
388 | "%code" ID braceless
404 | ID { muscle_code_grow ("union_name", $1, @1); }
506 | id
511 | id INT
517 | id string_as_id
523 | id INT string_as_id
603 ID
639 id: label
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
X509CertificateHolderSelector.java 35 * Construct a signer ID based on the issuer and serial number of the signer's associated
47 * Construct a signer ID based on the issuer and serial number of the signer's associated
101 X509CertificateHolderSelector id = (X509CertificateHolderSelector)o; local
103 return Arrays.areEqual(subjectKeyId, id.subjectKeyId)
104 && equalsObj(this.serialNumber, id.serialNumber)
105 && equalsObj(this.issuer, id.issuer);
  /external/chromium_org/ash/shelf/
shelf_item_types.h 67 ShelfID id; member in struct:ash::ShelfItem
84 // Resource id of the image to display on the shelf.
shelf_model.cc 60 items_[index].id = next_id_++;
70 ShelfID id = items_[index].id; local
73 ShelfItemRemoved(index, id));
94 items_[index].id = old_item.id;
113 int ShelfModel::ItemIndexByID(ShelfID id) const {
114 ShelfItems::const_iterator i = ItemByID(id);
126 ShelfItems::const_iterator ShelfModel::ItemByID(int id) const {
129 if (i->id == id
    [all...]
  /external/chromium_org/ash/test/
display_manager_test_api.cc 33 int64 id = index < display_manager->GetNumDisplays() ? local
34 display_manager->GetDisplayAt(index).id() :
37 DisplayInfo::CreateFromSpecWithID(*iter, id));
85 gfx::Display::SetInternalDisplayId(internal.id());
test_shelf_delegate.cc 43 ShelfID id = model_->next_id(); local
52 manager->SetShelfItemDelegate(id, delegate.Pass());
53 SetShelfIDForWindow(id, window);
57 ShelfID id = GetShelfIDForWindow(window); local
58 if (id == 0)
60 int index = model_->ItemIndexByID(id);
89 const std::string& TestShelfDelegate::GetAppIDForShelfID(ShelfID id) {
  /external/chromium_org/base/task/
cancelable_task_tracker.cc 93 TaskId id = next_id_; local
97 Bind(&CancelableTaskTracker::Untrack, weak_factory_.GetWeakPtr(), id);
109 Track(id, flag);
110 return id;
118 TaskId id = next_id_; local
126 Bind(&CancelableTaskTracker::Untrack, weak_factory_.GetWeakPtr(), id),
138 Track(id, flag);
139 return id;
142 void CancelableTaskTracker::TryCancel(TaskId id) {
145 hash_map<TaskId, CancellationFlag*>::const_iterator it = task_flags_.find(id);
    [all...]
  /external/chromium_org/cc/animation/
layer_animation_controller.h 38 static scoped_refptr<LayerAnimationController> Create(int id);
40 int id() const { return id_; } function in class:cc::LayerAnimationController
142 explicit LayerAnimationController(int id);
  /external/chromium_org/cc/quads/
render_pass.h 46 struct Id {
50 Id(int layer_id, int index) : layer_id(layer_id), index(index) {}
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,
95 Id id; member in class:cc::RenderPass
    [all...]
  /external/chromium_org/cc/trees/
tree_synchronizer.cc 46 int id = layer_impl->id(); local
47 old_layers->set(id, layer_impl.Pass());
92 scoped_ptr<LayerImpl> layer_impl = old_layers->take(layer->id());
97 (*new_layers)[layer->id()] = layer_impl.get();
162 new_layers->find(layer->id());
196 DCHECK_EQ(layer->id(), layer_impl->id());
256 DCHECK_EQ(layer->scroll_parent()->id(), layer_impl->scroll_parent()->id());
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
RecentlyClosedBridge.java 38 public final int id; field in class:RecentlyClosedBridge.RecentlyClosedTab
42 private RecentlyClosedTab(int id, String title, String url) {
43 this.id = id;
51 List<RecentlyClosedTab> tabs, int id, String title, String url) {
52 RecentlyClosedTab tab = new RecentlyClosedTab(id, title, url);
122 return nativeOpenRecentlyClosedTab(mNativeRecentlyClosedTabsBridge, tab, recentTab.id,
  /external/chromium_org/chrome/browser/android/bookmarks/
partner_bookmarks_shim_unittest.cc 131 int64 id = 5; local
132 BookmarkNode* root_partner_node = new BookmarkPermanentNode(id++);
133 BookmarkNode* partner_bookmark1 = new BookmarkNode(id++,
  /external/chromium_org/chrome/browser/chromeos/drive/sync/
entry_update_performer_unittest.cc 186 const std::string id = "this ID should result in NOT_FOUND"; local
189 id, ClientContext(USER_INITIATED),
407 // The entry got a resource ID.
479 // The entry hasn't got a resource ID yet.
495 // The entry got a resource ID.
536 // The entry got a resource ID.
  /external/chromium_org/chrome/browser/chromeos/policy/
app_pack_updater.cc 146 std::string id; local
148 if (dict->GetString(chromeos::kAppPackKeyExtensionId, &id) &&
153 prefs->Set(id, entry);
  /external/chromium_org/chrome/browser/extensions/api/management/
management_api_browsertest.cc 113 const std::string id = extension->id(); local
128 id.c_str()),
133 EXPECT_TRUE(service->GetExtensionById(id, false) != NULL);
142 base::StringPrintf("[\"%s\", {\"showConfirmDialog\": true}]", id.c_str()),
146 EXPECT_TRUE(service->GetExtensionById(id, false) == NULL);
155 const std::string app_id = app->id();
197 ASSERT_TRUE(CrashEnabledExtension(extension->id()));
209 // The id of the permissions escalation test extension we use.
  /external/chromium_org/chrome/browser/extensions/api/system_display/
system_display_apitest.cc 146 int64 id = display.id(); variable
147 unit->name = "DISPLAY NAME FOR " + base::Int64ToString(id);
148 if (id == 1)
150 unit->is_primary = id == 0 ? true : false;
151 unit->is_internal = id == 0 ? true : false;
153 unit->rotation = (90 * id) % 360;
156 if (id == 0) {
  /external/chromium_org/chrome/browser/extensions/
extension_install_ui_browsertest.cc 94 std::string theme_id = theme->id();
102 ASSERT_EQ(theme_id, theme->id());
106 ASSERT_EQ(theme_id, theme->id());
122 std::string theme_id = theme->id();
127 EXPECT_FALSE(theme_id == theme2->id());
207 const std::string* id = content::Details<const std::string>(details).ptr(); variable
208 EXPECT_TRUE(id); variable
209 last_reordered_extension_id_ = *id;
251 EXPECT_EQ(app_id, test_app->id());
extension_message_bubble_controller.cc 156 std::string id = (*it)->id(); local
157 if (!delegate_->ShouldIncludeExtension(id))
159 extension_list_.push_back(id);

Completed in 3066 milliseconds

<<31323334353637383940>>