HomeSort by relevance Sort by last modified time
    Searched refs:id (Results 1601 - 1625 of 14488) sorted by null

<<61626364656667686970>>

  /external/chromium_org/chrome/browser/media/
chrome_midi_permission_context.h 38 const PermissionRequestID& id,
45 const PermissionRequestID& id,
54 const PermissionRequestID& id,
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table.h 21 // id A unique id.
39 // requires some investigation into how to make sure the id is unique for
42 typedef std::string Id;
47 Row(const Id& id,
55 Id id; member in struct:predictors::AutocompleteActionPredictorTable::Row
65 void GetRow(const Row::Id& id, Row* row)
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_input_field.h 28 - (void)didChange:(id)sender;
32 - (void)didEndEditing:(id)sender;
41 @property(nonatomic, assign) id<AutofillInputDelegate> delegate;
  /external/chromium_org/chrome/browser/ui/cocoa/browser/
edit_search_engine_cocoa_controller.h 38 - (id)initWithProfile:(Profile*)profile
42 - (IBAction)cancel:(id)sender;
43 - (IBAction)save:(id)sender;
  /external/chromium_org/chrome/browser/ui/cocoa/
fullscreen_exit_bubble_controller.h 44 - (id)initWithOwner:(BrowserWindowController*)owner
49 - (void)allow:(id)sender;
50 - (void)deny:(id)sender;
  /external/chromium_org/chrome/common/
cancelable_task_tracker.h 78 // The returned task ID is tracked until the last copy of
92 void TryCancel(TaskId id);
103 void Track(TaskId id, base::CancellationFlag* flag);
104 void Untrack(TaskId id);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
tabs.js 13 tabs[j].id,
26 tabs[j].id,
29 tabs[j].id,
  /external/chromium_org/chrome/test/webdriver/
webdriver_session_manager.h 30 bool Remove(const std::string& id);
31 bool Has(const std::string& id) const;
33 Session* GetSession(const std::string& id) const;
  /external/chromium_org/content/browser/
font_list_async.cc 24 BrowserThread::ID calling_thread_id,
36 BrowserThread::ID id; local
37 bool well_known_thread = BrowserThread::GetCurrentThreadIdentifier(&id);
44 base::Bind(&GetFontListInBlockingPool, id, callback));
  /external/chromium_org/gpu/command_buffer/common/
command_buffer_mock.h 32 MOCK_METHOD2(CreateTransferBuffer, Buffer(size_t size, int32* id));
33 MOCK_METHOD1(DestroyTransferBuffer, void(int32 id));
34 MOCK_METHOD1(GetTransferBuffer, Buffer(int32 id));
  /external/chromium_org/media/audio/mac/
aggregate_device_manager.h 29 static CFStringRef GetDeviceUID(AudioDeviceID id);
31 static void GetDeviceName(AudioDeviceID id, char* name, UInt32 size);
33 static OSStatus GetPluginID(AudioObjectID* id);
  /external/chromium_org/media/base/
media_log_event.h 21 id = event.id;
95 int32 id; member in struct:media::MediaLogEvent
  /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_video_client.h 40 virtual bool OnUInt(int id, int64 val) OVERRIDE;
41 virtual bool OnBinary(int id, const uint8* data, int size) OVERRIDE;
42 virtual bool OnFloat(int id, double val) OVERRIDE;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
event_listener.h 102 // Tracks a new set of POLL events for a given unique |id|. The
104 // is received with that |id|.
105 Error Track(int id,
110 // Updates the tracking of events for |id|, replacing the |user_data|
112 Error Update(int id, uint32_t filter, uint64_t user_data);
114 // Unregisters the existing |id|.
115 Error Free(int id);
125 // Map from ID to live a event info.
  /external/chromium_org/ppapi/c/dev/
ppb_trace_event_dev.h 62 uint64_t id,
69 * Version of the above interface that allows specifying a custom thread id
77 uint64_t id,
105 uint64_t id,
  /external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/
ppapi_bad.js 9 function createModule(id, src, type) {
11 id: id,
30 function badLoadTest(tester, id, src, type, error_string) {
31 tester.addAsyncTest(id, function(test){
32 var module = createModule(id, src, type);
  /external/chromium_org/ppapi/shared_impl/
ppb_device_ref_shared.h 27 id == other.id;
32 std::string id; member in struct:ppapi::DeviceRefData
  /external/chromium_org/remoting/webapp/
wcs_sandbox_container.js 140 var id = event.data['id'];
141 if (id === undefined) {
142 console.error('sendXhr: missing id');
174 this.pendingXhrs_[id] = xhr;
183 xhr.onreadystatechange = this.onReadyStateChange_.bind(this, id);
188 var id = event.data['id'];
189 if (id === undefined) {
190 console.error('abortXhr: missing id');
    [all...]
wcs_sandbox_content.js 92 var id = event.data['id'];
93 if (id === undefined) {
94 console.error('xhrStateChange: missing id.');
97 var pendingXhr = this.pendingXhrs_[id];
99 console.error('xhrStateChange: unrecognized id:', id);
112 delete this.pendingXhrs_[id];
159 * @return {number} The unique ID allocated to the XHR. Used to abort it.
162 var id = this.nextXhrId_++
    [all...]
  /external/chromium_org/sync/notifier/
fake_invalidation_state_tracker.h 22 int64 GetMaxVersion(const invalidation::ObjectId& id) const;
26 virtual void SetMaxVersionAndPayload(const invalidation::ObjectId& id,
39 virtual void Acknowledge(const invalidation::ObjectId& id,
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
MediaStreamComponent.h 47 static PassRefPtr<MediaStreamComponent> create(const String& id, PassRefPtr<MediaStreamSource>);
55 String id() const { return m_id; } function in class:WebCore::MediaStreamComponent
60 MediaStreamComponent(const String& id, MediaStreamDescriptor*, PassRefPtr<MediaStreamSource>);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCStatsReport.h 40 static PassRefPtr<RTCStatsReport> create(const String& id, const String& type, double timestamp);
43 String id() { return m_id; } function in class:WebCore::RTCStatsReport
56 RTCStatsReport(const String& id, const String& type, double timestamp);
RTCStatsResponse.cpp 48 size_t RTCStatsResponse::addReport(String id, String type, double timestamp)
50 m_result.append(RTCStatsReport::create(id, type, timestamp));
51 m_idmap.add(id, m_result.size() - 1);
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 53 long long id; member in struct:WebKit::WebIDBMetadata
63 long long id; member in struct:WebKit::WebIDBMetadata::ObjectStore
76 long long id; member in struct:WebKit::WebIDBMetadata::Index

Completed in 803 milliseconds

<<61626364656667686970>>