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

<<51525354555657585960>>

  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_folder_view.h 18 // mentation comment for - (id<BookmarkButtonControllerProtocol>)controller.
22 - (id<BookmarkButtonControllerProtocol>)controller;
28 - (void)setController:(id)controller;
bookmark_tree_browser_cell.h 22 id target_; // weak
27 @property(nonatomic, assign) id target;
  /external/chromium/chrome/browser/ui/cocoa/
command_observer_bridge.h 25 CommandObserverBridge(id<CommandObserverProtocol> observer,
37 id<CommandObserverProtocol> observer_; // weak, owns me
dev_tools_controller.h 32 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate;
sidebar_controller.h 31 - (id)initWithDelegate:(id<TabContentsControllerDelegate>)delegate;
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_factory.h 41 // Create a screen given its |id|.
42 BaseScreen* CreateScreen(const std::string& id);
45 BaseScreen* CreateScreenImpl(const std::string& id);
  /external/chromium_org/chrome/browser/chromeos/policy/
stub_enterprise_install_attributes.cc 27 void StubEnterpriseInstallAttributes::SetDeviceId(const std::string& id) {
28 registration_device_id_ = id;
  /external/chromium_org/chrome/browser/geolocation/
chrome_geolocation_permission_context_android.h 25 virtual void DecidePermission(const PermissionRequestID& id,
30 virtual void PermissionDecided(const PermissionRequestID& id,
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/
bookmark_folder_applescript.h 25 - (void)insertInBookmarkFolders:(id)aBookmarkFolder;
30 - (void)insertInBookmarkFolders:(id)aBookmarkFolder atIndex:(int)index;
bookmark_node_applescript.h 26 // Does not actually create a folder/item but just sets its ID, the folder is
28 - (id)init;
31 - (id)initWithBookmarkNode:(const BookmarkNode*)aBookmarkNode;
33 // Assigns a node, sets its unique ID and also copies temporary values.
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_tree_browser_cell.h 21 id target_; // weak
26 @property(nonatomic, assign) id target;
  /external/chromium_org/chrome/browser/ui/cocoa/
command_observer_bridge.h 27 CommandObserverBridge(id<CommandObserverProtocol> observer,
40 id<CommandObserverProtocol> observer_; // weak, owns me
l10n_util.h 13 NSInteger CompareFrameY(id view1, id view2, void* context);
screen_capture_notification_ui_cocoa.h 23 - (id)initWithCallback:(const base::Closure&)stop_callback
25 - (IBAction)stopSharing:(id)sender;
  /external/chromium_org/chrome/common/media_galleries/
itunes_library.h 21 Track(uint64 id, const base::FilePath& location);
24 uint64 id; member in struct:itunes::parser::Track
  /external/chromium_org/chrome/common/
tts_utterance_request.h 17 int id; member in struct:TtsUtteranceRequest
41 int id; member in struct:TtsUtteranceResponse
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome.h 26 // Return the WebView for the given id.
27 virtual Status GetWebViewById(const std::string& id, WebView** web_view) = 0;
30 virtual Status CloseWebView(const std::string& id) = 0;
  /external/chromium_org/device/usb/
usb_ids.h 15 const uint16_t id; member in struct:device::UsbProduct
20 const uint16_t id; member in struct:device::UsbVendor
26 // UsbIds provides a static mapping from a vendor ID to a name, as well as a
27 // mapping from a vendor/product ID pair to a product name.
  /external/chromium_org/media/video/capture/
video_capture_device.h 27 // Represents a capture device name and ID.
38 Name(const std::string& name, const std::string& id)
39 : device_name_(name), unique_id_(id) {}
50 const std::string& id,
52 : device_name_(name), unique_id_(id), capture_api_class_(api_type) {}
61 const std::string& id() const { return unique_id_; } function in class:media::VideoCaptureDevice::Name
75 return other.id() == unique_id_ && other.name() == device_name_;
78 return unique_id_ < other.id();
115 // Returns NULL if no entry was found by that ID.
116 Name* FindById(const std::string& id);
    [all...]
  /external/chromium_org/media/webm/
webm_audio_client.h 39 virtual bool OnUInt(int id, int64 val) OVERRIDE;
40 virtual bool OnFloat(int id, double val) OVERRIDE;
  /external/chromium_org/ppapi/cpp/
touch_point.h 23 /// pressed has an id of 0, the second has an id of 1, and so on. An id can be
25 /// down, with id 0 and 1, and finger 0 releases, the next finger to be
26 /// pressed can be assigned to id 0.
27 uint32_t id() const { return touch_point_.id; } function in class:pp::TouchPoint
  /external/chromium_org/ppapi/proxy/
proxy_object_var.cc 34 void ProxyObjectVar::AssignVarID(int32 id) {
35 return Var::AssignVarID(id);
  /external/chromium_org/remoting/host/
disconnect_window_mac.h 23 - (id)initWithCallback:(const base::Closure&)disconnect_callback
25 - (IBAction)stopSharing:(id)sender;
  /external/chromium_org/sync/notifier/
registration_manager.cc 24 const invalidation::ObjectId& id, RegistrationManager* manager)
25 : id(id),
40 registration_manager->DoRegisterId(id);
100 const invalidation::ObjectId& id) {
102 RegistrationStatusMap::const_iterator it = registration_statuses_.find(id);
105 << ObjectIdToString(id) << " as lost";
113 TryRegisterId(id, is_retry);
127 void RegistrationManager::DisableId(const invalidation::ObjectId& id) {
129 RegistrationStatusMap::const_iterator it = registration_statuses_.find(id);
168 const invalidation::ObjectId& id = it->first; local
    [all...]
registration_manager.h 76 // Marks the registration for the |id| lost and re-registers
78 void MarkRegistrationLost(const invalidation::ObjectId& id);
83 // Marks the registration for the |id| permanently lost and blocks any future
85 void DisableId(const invalidation::ObjectId& id);
113 RegistrationStatus(const invalidation::ObjectId& id,
126 const invalidation::ObjectId id; member in struct:syncer::RegistrationManager::RegistrationStatus
155 // Does nothing if the given id is disabled. Otherwise, if
160 void TryRegisterId(const invalidation::ObjectId& id,
163 // Registers the given id, which must be valid, immediately.
167 void DoRegisterId(const invalidation::ObjectId& id);
    [all...]

Completed in 1609 milliseconds

<<51525354555657585960>>