Searched defs:id (Results 526 - 550 of 4123) sorted by relevance

<<21222324252627282930>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9FieldID.java21 private ASN1ObjectIdentifier id; field in class:X9FieldID
31 this.id = prime_field;
52 this.id = characteristic_two_field;
77 this.id = ASN1ObjectIdentifier.getInstance(seq.getObjectAt(0));
98 return id;
110 * fieldType FIELD-ID.&amp;id({IOSet}),
119 v.add(this.id);
/external/chromium_org/android_webview/unittestjava/src/org/chromium/android_webview/unittest/
H A DMockAwContentsClientBridge.java24 protected void selectClientCertificate(final int id, final String[] keyTypes, argument
26 mId = id;
/external/chromium_org/apps/
H A Dsaved_files_service_unittest.cc62 void CheckEntrySequenceNumber(int id, int sequence_number) { argument
63 std::string id_string = GenerateId(id);
65 EXPECT_TRUE(service_->IsRegistered(extension_->id(), id_string));
67 service_->GetFileEntry(extension_->id(), id_string);
69 EXPECT_EQ(id_string, entry->id);
90 service_->RegisterFileEntry(extension_->id(), GenerateId(1), path_, true);
91 service_->RegisterFileEntry(extension_->id(), GenerateId(2), path_, true);
92 service_->RegisterFileEntry(extension_->id(), GenerateId(3), path_, true);
100 service_->EnqueueFileEntry(extension_->id(), GenerateId(1));
106 service_->EnqueueFileEntry(extension_->id(), GenerateI
[all...]
/external/chromium_org/ash/shelf/
H A Dshelf_item_delegate_manager.cc28 ShelfID id,
30 // If another ShelfItemDelegate is already registered for |id|, we assume
31 // that this request is replacing ShelfItemDelegate for |id| with
33 RemoveShelfItemDelegate(id);
34 id_to_item_delegate_map_[id] = item_delegate.release();
37 ShelfItemDelegate* ShelfItemDelegateManager::GetShelfItemDelegate(ShelfID id) { argument
38 if (model_->ItemIndexByID(id) != -1) {
40 DCHECK(id_to_item_delegate_map_.find(id) != id_to_item_delegate_map_.end());
41 return id_to_item_delegate_map_[id];
49 void ShelfItemDelegateManager::ShelfItemRemoved(int index, ShelfID id) { argument
27 SetShelfItemDelegate( ShelfID id, scoped_ptr<ShelfItemDelegate> item_delegate) argument
64 RemoveShelfItemDelegate(ShelfID id) argument
[all...]
H A Dshelf_window_watcher_unittest.cc41 ShelfID id = model_->next_id(); local
45 return id;
123 ShelfID id = CreateShelfItem(window.get()); local
126 int index = model_->ItemIndexByID(id);
136 // index and id are not changed after updating a launcher item.
137 EXPECT_EQ(index, model_->ItemIndexByID(id));
138 EXPECT_EQ(id, model_->items()[index].id);
149 ShelfID id = CreateShelfItem(window.get()); local
152 int index = model_->ItemIndexByID(id);
184 ShelfID id = CreateShelfItem(window.get()); local
220 ShelfID id = CreateShelfItem(window.get()); local
251 ShelfID id = CreateShelfItem(window.get()); local
[all...]
/external/chromium_org/ash/shell/
H A Dshelf_delegate_impl.cc33 const std::string& ShelfDelegateImpl::GetAppIDForShelfID(ShelfID id) { argument
H A Dwindow_watcher_shelf_item_delegate.cc15 ShelfID id,
17 : id_(id), watcher_(watcher) {
14 WindowWatcherShelfItemDelegate( ShelfID id, WindowWatcher* watcher) argument
/external/chromium_org/ash/touch/
H A Dtouch_transformer_controller_unittest.cc17 DisplayInfo CreateDisplayInfo(int64 id, argument
20 DisplayInfo info(id, std::string(), false);
51 internal_display_info.id(),
57 external_display_info.id(),
112 internal_display_info.id(),
118 external_display_info.id(),
166 display1.id(),
171 display2.id(),
/external/chromium_org/base/threading/
H A Dthread_id_name_manager.cc44 PlatformThreadId id) {
46 thread_id_to_handle_[id] = handle;
51 void ThreadIdNameManager::SetName(PlatformThreadId id, const char* name) { argument
65 thread_id_to_handle_.find(id);
71 main_process_id_ = id;
77 const char* ThreadIdNameManager::GetName(PlatformThreadId id) { argument
80 if (id == main_process_id_)
84 thread_id_to_handle_.find(id);
94 PlatformThreadId id) {
103 thread_id_to_handle_.find(id);
43 RegisterThread(PlatformThreadHandle::Handle handle, PlatformThreadId id) argument
93 RemoveName(PlatformThreadHandle::Handle handle, PlatformThreadId id) argument
[all...]
/external/chromium_org/cc/layers/
H A Ddelegated_renderer_layer_impl.h21 LayerTreeImpl* tree_impl, int id) {
22 return make_scoped_ptr(new DelegatedRendererLayerImpl(tree_impl, id));
57 DelegatedRendererLayerImpl(LayerTreeImpl* tree_impl, int id);
20 Create( LayerTreeImpl* tree_impl, int id) argument
H A Dtexture_layer_impl.h20 static scoped_ptr<TextureLayerImpl> Create(LayerTreeImpl* tree_impl, int id) { argument
21 return make_scoped_ptr(new TextureLayerImpl(tree_impl, id));
40 void SetTextureId(unsigned id);
57 TextureLayerImpl(LayerTreeImpl* tree_impl, int id);
/external/chromium_org/cc/surfaces/
H A Dsurface_aggregator_test_helpers.h40 static Quad RenderPassQuad(RenderPassId id) { argument
43 quad.render_pass_id = id;
63 Pass(Quad* quads, size_t quad_count, RenderPassId id) argument
64 : quads(quads), quad_count(quad_count), id(id) {}
66 : quads(quads), quad_count(quad_count), id(1, 1) {}
70 RenderPassId id; member in struct:cc::test::Pass
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DEnhancedBookmarksBridge.java27 public String getBookmarkDescription(BookmarkId id) { argument
28 return nativeGetBookmarkDescription(mNativeEnhancedBookmarksBridge, id.getId(),
29 id.getType());
32 public void setBookmarkDescription(BookmarkId id, String description) { argument
33 nativeSetBookmarkDescription(mNativeEnhancedBookmarksBridge, id.getId(), id.getType(),
41 private native String nativeGetBookmarkDescription(long nativeEnhancedBookmarksBridge, long id, argument
43 private native void nativeSetBookmarkDescription(long nativeEnhancedBookmarksBridge, long id, argument
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.h40 Command(int id, const std::string& method, base::DictionaryValue* params);
43 int id() { return id_; } function in class:DevToolsProtocol::Command
62 int id() { return id_; } function in class:DevToolsProtocol::Response
71 Response(int id, int error_code, const std::string error_message);
72 Response(int id, base::DictionaryValue* result);
/external/chromium_org/chrome/browser/extensions/api/context_menus/
H A Dcontext_menus_api_helpers.cc14 const char kCannotFindItemError[] = "Cannot find menu item with id *";
18 "Cannot create item with duplicate id *";
31 std::string GetIDString(const MenuItem::Id& id) { argument
32 if (id.uid == 0)
33 return id.string_uid;
35 return base::IntToString(id.uid);
/external/chromium_org/chrome/browser/extensions/
H A Dapp_icon_loader_impl.cc21 const std::string& id) {
26 return service->GetInstalledExtension(id);
47 void AppIconLoaderImpl::FetchImage(const std::string& id) { argument
50 if (i->second == id)
54 const extensions::Extension* extension = GetExtensionByID(profile_, id);
66 map_[image] = id;
74 void AppIconLoaderImpl::ClearImage(const std::string& id) { argument
77 if (i->second == id) {
85 void AppIconLoaderImpl::UpdateImage(const std::string& id) { argument
88 if (i->second == id) {
20 GetExtensionByID(Profile* profile, const std::string& id) argument
104 BuildImage(const std::string& id, const gfx::ImageSkia& icon) argument
[all...]
H A Dapp_sync_data.h46 const std::string& id() const { return extension_sync_data_.id(); } function in class:extensions::AppSyncData
H A Dpending_extension_info.cc12 const std::string& id,
23 : id_(id),
11 PendingExtensionInfo( const std::string& id, const std::string& install_parameter, const GURL& update_url, const Version& version, ShouldAllowInstallPredicate should_allow_install, bool is_from_sync, bool install_silently, Manifest::Location install_source, int creation_flags, bool mark_acknowledged, bool remote_install) argument
/external/chromium_org/chrome/browser/geolocation/
H A Dgeolocation_permission_context_android.cc16 : id(0, 0, 0, GURL()),
36 web_contents, info.id, info.requesting_frame, info.user_gesture,
57 this, info.id, info.requesting_frame, info.embedder, callback, false);
68 const PermissionRequestID& id,
75 info.id = id;
66 DecidePermission( content::WebContents* web_contents, const PermissionRequestID& id, const GURL& requesting_frame, bool user_gesture, const GURL& embedder, base::Callback<void(bool)> callback) argument
/external/chromium_org/chrome/browser/history/android/
H A Durls_sql_handler_unittest.cc66 // The new row's id was set in url_row correctly.
67 EXPECT_EQ(row.url_id(), url_row.id());
81 EXPECT_EQ(row.url_id(), url_row.id());
100 EXPECT_EQ(row.url_id(), url_row.id());
119 EXPECT_EQ(row.url_id(), url_row.id());
139 EXPECT_EQ(row.url_id(), url_row.id());
158 EXPECT_EQ(row.url_id(), url_row.id());
186 TableIDRow id; local
187 id.url_id = url_row.id();
219 TableIDRow id; local
255 TableIDRow id; local
285 TableIDRow id; local
310 TableIDRow id; local
335 TableIDRow id; local
[all...]
H A Dvisit_sql_handler_unittest.cc174 TableIDRow id; local
175 id.url_id = url_row.id();
177 ids.push_back(id);
204 TableIDRow id; local
205 id.url_id = url_row.id();
207 ids.push_back(id);
237 TableIDRow id; local
238 id
270 TableIDRow id; local
295 TableIDRow id; local
[all...]
/external/chromium_org/chrome/browser/local_discovery/
H A Ddevice_description.h39 std::string id; member in struct:local_discovery::DeviceDescription
H A Dgcd_registration_ticket_request.cc17 const char kGCDKeyId[] = "id";
48 std::string id; local
52 value.GetString(kGCDKeyId, &id);
55 callback_.Run(id, device_id);
/external/chromium_org/chrome/browser/media/
H A Ddesktop_media_list_ash.h54 SourceDescription(content::DesktopMediaID id, const base::string16& name);
56 content::DesktopMediaID id; member in struct:DesktopMediaListAsh::SourceDescription
71 void CaptureThumbnail(content::DesktopMediaID id, aura::Window* window);
72 void OnThumbnailCaptured(content::DesktopMediaID id,
H A Ddesktop_streams_registry.cc41 std::string id = GenerateRandomStreamId(); local
42 DCHECK(approved_streams_.find(id) == approved_streams_.end());
43 ApprovedDesktopMediaStream& stream = approved_streams_[id];
53 base::Unretained(this), id),
56 return id;
60 const std::string& id,
67 StreamsMap::iterator it = approved_streams_.find(id);
84 void DesktopStreamsRegistry::CleanupStream(const std::string& id) { argument
86 approved_streams_.erase(id);
59 RequestMediaForStreamId( const std::string& id, int render_process_id, int render_frame_id, const GURL& origin, std::string* extension_name) argument

Completed in 6521 milliseconds

<<21222324252627282930>>