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

<<21222324252627282930>>

  /external/chromium_org/content/browser/indexed_db/
indexed_db_quota_client.cc 70 QuotaClient::ID IndexedDBQuotaClient::id() const { return kIndexedDatabase; } function in class:content::IndexedDBQuotaClient
indexed_db_transaction_unittest.cc 44 const int64 id = 0; local
48 id,
96 const int64 id = 0; local
100 id,
  /external/chromium_org/content/browser/renderer_host/
gtk_plugin_container_manager.cc 22 gfx::PluginWindowHandle id) {
25 plugin_window_to_widget_map_.insert(std::make_pair(id, widget));
52 gfx::PluginWindowHandle id) {
54 GtkWidget* widget = MapIDToWidget(id);
58 plugin_window_to_widget_map_.erase(id);
126 gfx::PluginWindowHandle id) {
128 plugin_window_to_widget_map_.find(id);
132 LOG(ERROR) << "Request for widget host for unknown window id " << id;
146 LOG(ERROR) << "Request for id for unknown widget"
156 gfx::PluginWindowHandle id = plugin_container_manager->MapWidgetToID(widget); local
158 gtk_socket_add_id(GTK_SOCKET(widget), id); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/java/
jni_helper.cc 81 jmethodID id = base::android::MethodID::Get< local
92 map->insert(std::make_pair(key, id));
93 DCHECK_EQ(id, result.first->second);
96 return id;
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_udp.h 28 P2PSocketHostUdp(IPC::Sender* message_sender, int id,
40 const net::IPEndPoint& remote_address, int id) OVERRIDE;
51 uint64 id);
57 uint64 id; member in struct:content::P2PSocketHostUdp::PendingPacket
  /external/chromium_org/content/browser/service_worker/
service_worker_registration.h 44 int64 id() const { return registration_id_; } function in class:content::ServiceWorkerRegistration
  /external/chromium_org/content/public/test/
mock_download_manager.h 29 uint32 id; member in struct:content::MockDownloadManager::CreateDownloadItemAdapter
46 uint32 id,
99 uint32 id,
122 MOCK_METHOD1(GetDownload, DownloadItem*(uint32 id));
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_complete.h 56 int32 id; member in struct:content::RendererAccessibilityComplete::BrowserTreeNode
130 // TODO(dmazzoni): remove once https://bugs.webkit.org/show_bug.cgi?id=73460
  /external/chromium_org/extensions/browser/
management_policy.cc 13 std::string* id) {
15 *id = extension ? extension->id() : "[test]";
104 std::string id; local
106 GetExtensionNameAndId(extension, &name, &id);
108 << " (" << id << ")"
  /external/chromium_org/extensions/common/
event_filter_unittest.cc 83 int id = event_filter_.AddEventMatcher("event1", AllURLs()); local
87 ASSERT_EQ(1u, matches.count(id));
100 int id = event_filter_.AddEventMatcher("event1", AllURLs()); local
101 event_filter_.RemoveEventMatcher(id);
121 int id = event_filter_.AddEventMatcher("event1", local
126 ASSERT_EQ(1u, matches.count(id));
135 int id = event_filter_.AddEventMatcher("event1", matcher.Pass()); local
141 ASSERT_EQ(1u, matches.count(id));
147 ASSERT_EQ(1u, matches.count(id));
217 int id = event_filter_.AddEventMatcher("event1", matcher.Pass()) local
227 int id = event_filter_.AddEventMatcher("event1", local
235 int id = event_filter_.AddEventMatcher("event1", AllURLs()); local
246 int id = event_filter_.AddEventMatcher("event1", matcher.Pass()); local
    [all...]
  /external/chromium_org/google_apis/gcm/engine/
rmq_store_unittest.cc 208 std::string id = persistent_ids[i]; local
209 ASSERT_TRUE(load_result.outgoing_messages[id]);
212 load_result.outgoing_messages[id]);
213 ASSERT_EQ(message->from(), id);
214 ASSERT_EQ(message->category(), id);
271 std::string id = persistent_ids[i]; local
272 ASSERT_TRUE(load_result.outgoing_messages[id]);
275 load_result.outgoing_messages[id]);
276 ASSERT_EQ(message->from(), id);
277 ASSERT_EQ(message->category(), id);
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
mapped_memory.cc 84 int32 id = -1; local
85 gpu::Buffer shm = cmd_buf->CreateTransferBuffer(chunk_size, &id);
86 if (id < 0)
88 MemoryChunk* mc = new MemoryChunk(id, shm, helper_);
  /external/chromium_org/gpu/command_buffer/common/
command_buffer.h 61 // An user supplied id.
62 int32 id; member in struct:gpu::CommandBuffer::ConsoleMessage
107 // Create a transfer buffer of the given size. Returns its ID or -1 on
109 virtual Buffer CreateTransferBuffer(size_t size, int32* id) = 0;
111 // Destroy a transfer buffer. The ID must be positive.
112 virtual void DestroyTransferBuffer(int32 id) = 0;
114 // Get the transfer buffer associated with an ID. Returns a null buffer for
115 // ID 0.
116 virtual Buffer GetTransferBuffer(int32 id) = 0;
id_allocator.cc 21 ResourceId id; local
24 id = *iter;
26 id = LastUsedId() + 1;
27 if (!id) {
29 id = FindFirstUnusedId();
32 MarkAsUsed(id);
33 return id;
37 ResourceId id; local
40 id = *iter;
42 id = desired_id
81 ResourceId id = 1; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
command_buffer_service_unittest.cc 53 int32 id; local
54 command_buffer_->CreateTransferBuffer(size, &id);
55 EXPECT_GT(id, 0);
56 command_buffer_->SetGetBuffer(id);
78 virtual bool GetBufferChanged(int32 id) = 0;
  /external/chromium_org/ipc/
ipc_sync_message.h 58 // Returns true if the message is a reply to the given request id.
65 // Given a synchronous message (or its reply), returns its id.
73 // unique ID (unique per sender)
99 PendingSyncMsg(int id,
102 : id(id), deserializer(d), done_event(e), send_result(false) { }
103 int id; member in struct:IPC::PendingSyncMsg
  /external/chromium_org/media/base/
text_track_config.h 29 const std::string& id);
37 const std::string& id() const { return id_; } function in class:media::TextTrackConfig
  /external/chromium_org/media/video/
picture.h 19 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id);
20 PictureBuffer(int32 id,
25 // Returns the client-specified id of the buffer.
26 int32 id() const { function in class:media::PictureBuffer
35 // Returns the id of the texture.
36 // NOTE: The texture id in the renderer process corresponds to a different
37 // texture id in the GPU process.
59 // Returns the id of the picture buffer where this picture is contained.
64 // Returns the id of the bitstream buffer from which this frame was decoded.
  /external/chromium_org/media/webm/
webm_tracks_parser.cc 71 WebMParserClient* WebMTracksParser::OnListStart(int id) {
72 if (id == kWebMIdContentEncodings) {
76 return track_content_encodings_client_->OnListStart(id);
79 if (id == kWebMIdTrackEntry) {
91 if (id == kWebMIdAudio)
94 if (id == kWebMIdVideo)
100 bool WebMTracksParser::OnListEnd(int id) {
101 if (id == kWebMIdContentEncodings) {
103 return track_content_encodings_client_->OnListEnd(id);
106 if (id == kWebMIdTrackEntry)
251 MEDIA_LOG(log_cb_) << "Multiple values for id " << std::hex << id local
    [all...]
webm_webvtt_parser_unittest.cc 15 static Cue EncodeCue(const std::string& id,
18 const std::string result = id + '\n' + settings + '\n' + content;
24 std::string* id,
28 id, settings, content);
40 std::string id, settings, content; local
42 DecodeCue(cue, &id, &settings, &content);
43 EXPECT_EQ(id, "");
48 TEST_F(WebMWebVTTParserTest, Id) {
54 std::string id, settings, content; local
56 DecodeCue(cue, &id, &settings, &content)
75 std::string id, settings, content; local
96 std::string id, settings, content; local
    [all...]
  /external/chromium_org/ppapi/c/
ppb_gamepad.h 60 uint16_t id[128]; member in struct:PP_GamepadSampleData
  /external/chromium_org/ppapi/shared_impl/
ppb_gamepad_shared.h 31 char16 id[kIdLengthCap]; member in struct:ppapi::WebKitGamepad
  /external/chromium_org/sandbox/win/src/
interception.h 84 // the pointer that would have been the first argument (g_originals[id]).
109 InterceptorId id);
117 InterceptorId id);
138 InterceptorId id; // Interceptor id. member in struct:sandbox::InterceptionManager::InterceptionData
236 #define ADD_NT_INTERCEPTION(service, id, num_params) \
239 MAKE_SERVICE_NAME(service, num_params), id)
241 #define INTERCEPT_NT(manager, service, id, num_params) \
243 manager->ADD_NT_INTERCEPTION(service, id, num_params) : false)
249 #define INTERCEPT_EAT(manager, dll, function, id, num_params)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.cpp 56 CSSPropertyID id = cssPropertyID(builder.toString()); local
57 return id;
108 CSSPropertyID id = camelCaseCSSPropertyNameToID(property); local
115 if (id == CSSPropertyInvalid || !CSSAnimations::isAnimatableProperty(id))
120 propertySet->setProperty(id, value);
  /external/chromium_org/third_party/WebKit/Source/platform/
PODFreeListArenaTest.cpp 55 id = TestIds++;
57 int id; member in struct:WebCore::__anon10791::TestClass2
166 EXPECT_TRUE(cur->id >= 100 && cur->id < 200);

Completed in 533 milliseconds

<<21222324252627282930>>