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

<<41424344454647484950>>

  /external/chromium_org/chrome/browser/ui/gtk/infobars/
translate_infobar_base_gtk.cc 192 gint id = 0;
194 LANGUAGE_COMBO_COLUMN_ID, &id, local
196 return static_cast<size_t>(id);
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
menu_util.cc 49 // Set the ID of a menu item.
50 // Add 1 to the menu_id to avoid setting zero (null) to "menu-id".
51 g_object_set_data(G_OBJECT(menu_item), "menu-id", GINT_TO_POINTER(index + 1));
73 gpointer id_ptr = g_object_get_data(G_OBJECT(menu_item), "menu-id");
82 void ExecuteCommand(ui::MenuModel* model, int id) {
88 model->ActivatedAt(id, event_flags);
194 // menu delegate about something with an invalid id.
198 int id; local
199 if (!GetMenuItemID(widget, &id))
221 gtk_check_menu_item_set_active(item, model->IsItemCheckedAt(id));
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_overflow_menu_controller.cc 42 size_t command_id = 1; // Menu id 0 is reserved, start with 1.
92 bool BrowserActionOverflowMenuController::IsCommandEnabled(int id) const {
93 BrowserActionView* view = (*views_)[start_index_ + id - 1];
97 void BrowserActionOverflowMenuController::ExecuteCommand(int id) {
98 BrowserActionView* view = (*views_)[start_index_ + id - 1];
104 int id,
108 (*views_)[start_index_ + id - 1]->button()->extension();
194 owner_->MoveBrowserAction(drop_data.id(), drop_index);
209 std::string id = view->button()->extension()->id(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_dropdown.cc 41 // Called when item with command |id| is chosen.
42 void OnItemChosen(int id);
70 void NetworkMenuWebUI::OnItemChosen(int id) {
73 if (!ui::MenuModel::GetModelAndIndexForCommandId(id, &model, &index))
82 int id; local
84 id = -2;
86 id = model->GetCommandIdAt(i);
88 item->SetInteger("id", id);
97 if (id >= 0)
    [all...]
  /external/chromium_org/chrome/common/extensions/api/extension_action/
action_info.cc 78 std::string id; local
80 if (!dict->GetString(keys::kPageActionId, &id)) {
84 result->id = id;
  /external/chromium_org/chrome/common/extensions/api/sockets/
sockets_manifest_permission.cc 155 std::string SocketsManifestPermission::id() const { function in class:extensions::SocketsManifestPermission
330 int id = (domains.size() == 1) ? local
336 id,
352 int id = (hostnames.size() == 1) ? local
358 id,
  /external/chromium_org/chrome/common/extensions/permissions/
chrome_permission_message_provider.cc 65 switch (i->id()) {
88 int id = i->id(); local
90 if (id == PermissionMessage::kAudioCapture) {
94 } else if (id == PermissionMessage::kVideoCapture) {
101 if (id == PermissionMessage::kMediaGalleriesAllGalleriesRead) {
107 } else if (id == PermissionMessage::kMediaGalleriesAllGalleriesCopyTo ||
108 id == PermissionMessage::kMediaGalleriesAllGalleriesDelete) {
  /external/chromium_org/chrome/renderer/extensions/
event_bindings.cc 153 // returns the id assigned to the listener, which will be returned from calls
191 int id = event_filter.AddEventMatcher(event_name, ParseEventMatcher( local
202 args.GetReturnValue().Set(static_cast<int32_t>(id));
233 // void DetachFilteredEvent(int id, bool manual)
234 // id - Id of the event to detach.
  /external/chromium_org/chrome/test/logging/win/
log_file_reader.cc 175 intptr_t id = 0; local
182 parser.ReadPointer(&id) &&
189 EventTypeToTraceType(event->Header.Class.Type), id, extra, stack_depth,
  /external/chromium_org/chrome/utility/media_galleries/
iphoto_library_parser.cc 21 uint64 id; member in struct:iphoto::__anon7085::PhotoInfo
29 uint64 id; member in struct:iphoto::__anon7085::AlbumInfo
33 // true if at least the id and location were found.
104 uint64 id; local
105 if (!base::StringToUint64(photo_id, &id))
107 photo_ids->insert(id);
138 if (!iapps::ReadInteger(reader, &result->id))
201 uint64 id; local
202 bool id_valid = base::StringToUint64(key, &id);
215 photo_info.id = id
    [all...]
  /external/chromium_org/chromeos/settings/
timezone_settings.cc 35 // Fallback time zone ID used in case of an unexpected error.
215 void SetTimezoneIDFromString(const std::string& id) {
222 base::FilePath timezone_file(kTimezoneFilesDir + id);
378 std::string id = UTF16ToUTF8(GetTimezoneID(*known_timezone)); local
379 VLOG(1) << "Setting timezone to " << id;
383 PostTask(FROM_HERE, base::Bind(&SetTimezoneIDFromString, id));
395 std::string id = GetTimezoneIDAsString(); local
396 if (id.empty()) {
397 id = kFallbackTimeZoneId;
398 LOG(ERROR) << "Got an empty string for timezone, default to '" << id;
458 icu::UnicodeString id; local
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.cc 108 std::string id; local
109 if (!printer->GetString("id", &id)) {
110 *error_description = "No id specified.";
114 if (id.empty()) {
115 *error_description = "id is empty.";
122 *device_id = id;
191 if (!job->GetString("id", &job_list[idx].job_id) ||
privet_http_server.h 45 std::string id; member in struct:PrivetHttpServer::DeviceInfo
  /external/chromium_org/components/variations/
variations_associated_data.cc 29 // Note that this normally only sets the ID for a group the first time, unless
33 const VariationID id,
37 // associated ID.
43 DCHECK(other_id == EMPTY_ID || other_id == id);
51 (*group_to_id_map)[group_identifier] = id;
168 ActiveGroupId id; local
169 id.name = metrics::HashName(trial_name);
170 id.group = metrics::HashName(group_name);
171 return id;
177 VariationID id) {
    [all...]
  /external/chromium_org/content/browser/android/in_process/
synchronous_compositor_impl.cc 33 int id = it.GetCurrentValue()->GetID(); local
36 return id;
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 51 int id() { return id_; } function in class:content::DevToolsProtocol::Command
75 Command(int id, const std::string& method,
95 Response(int id, base::DictionaryValue* result);
96 Response(int id, int error_code, const std::string& error_message);
165 int id,
  /external/chromium_org/content/browser/fileapi/
file_system_operation_impl_write_unittest.cc 177 "blob-id:success",
282 FileSystemOperationRunner::OperationID id = local
286 file_system_context_->operation_runner()->Cancel(id, RecordCancelCallback());
305 FileSystemOperationRunner::OperationID id = local
310 file_system_context_->operation_runner()->Cancel(id, RecordCancelCallback());
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database.h 63 int64 id() const { return metadata_.id; } function in class:content::IndexedDBDatabase
  /external/chromium_org/content/browser/media/
webrtc_internals.cc 89 base::DictionaryValue id; local
90 id.SetInteger("pid", static_cast<int>(pid));
91 id.SetInteger("lid", lid);
92 SendUpdate("removePeerConnection", &id);
197 OnRendererExit(data.id);
  /external/chromium_org/content/browser/renderer_host/java/
java_method.cc 128 jmethodID JavaMethod::id() const { function in class:content::JavaMethod
140 // whether to call this method. We don't get the ID etc until actually
222 // Get the ID for this method.
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool_unittest.cc 24 int id,
27 : pool_(pool), id_(id), data_(data), size_(size) {}
28 ~Buffer() { pool_->RelinquishProducerReservation(id()); }
29 int id() const { return id_; } function in class:content::VideoCaptureBufferPoolTest::Buffer
112 int buffer_id2 = buffer2->id();
114 int buffer_id3 = buffer3->id();
117 int buffer_id4 = buffer4->id();
143 ASSERT_EQ(buffer_id3, buffer3->id()) << "Buffer ID should be reused.";
148 int buffer_id1 = buffer1->id();
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_view_host_unittest.cc 207 int id = process()->GetID(); local
211 EXPECT_FALSE(policy->CanRequestURL(id, highlighted_file_url));
212 EXPECT_FALSE(policy->CanReadFile(id, highlighted_file_path));
213 EXPECT_TRUE(policy->CanRequestURL(id, dragged_file_url));
214 EXPECT_TRUE(policy->CanReadFile(id, dragged_file_path));
215 EXPECT_FALSE(policy->CanRequestURL(id, sensitive_file_url));
216 EXPECT_FALSE(policy->CanReadFile(id, sensitive_file_path));
228 IPC::Message message(0, ViewHostMsg_UpdateTargetURL::ID,
240 IPC::Message message(0, ViewHostMsg_UpdateRect::ID,
253 IPC::Message message(0, InputHostMsg_HandleInputEvent_ACK::ID,
    [all...]
  /external/chromium_org/content/browser/speech/
speech_recognition_manager_impl.h 128 int id; member in struct:content::SpeechRecognitionManagerImpl::Session
  /external/chromium_org/content/child/npapi/
npobject_stub.cc 120 NPIdentifier id = CreateNPIdentifier(name); local
127 *result = npobject_->_class->hasMethod(npobject_, id);
132 *result = WebBindings::hasMethod(0, npobject_, id);
176 NPIdentifier id = CreateNPIdentifier(method); local
180 npobject_, id, args_var, arg_count, &result_var);
186 0, npobject_, id, args_var, arg_count, &result_var);
207 NPIdentifier id = CreateNPIdentifier(name); local
210 *result = npobject_->_class->hasProperty(npobject_, id);
215 *result = WebBindings::hasProperty(0, npobject_, id);
224 NPIdentifier id = CreateNPIdentifier(name) local
244 NPIdentifier id = CreateNPIdentifier(name); local
292 NPIdentifier id = CreateNPIdentifier(name); local
    [all...]
plugin_stream.cc 54 NPP id = instance_->npp(); local
58 stream_.ndata = id->ndata;

Completed in 1702 milliseconds

<<41424344454647484950>>