HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 251 - 275 of 5510) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/common/extensions/api/url_handlers/
url_handlers_parser.h 23 // ID identifying this handler in the manifest.
24 std::string id; member in struct:extensions::UrlHandlerInfo
  /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/renderer/extensions/
page_actions_custom_bindings.cc 37 std::string id = ActionInfo::GetPageActionInfo(extension)->id; local
40 id.c_str(),
42 id.size()));
  /external/chromium_org/components/policy/core/common/
policy_details.h 24 // The id of the protobuf field that contains this policy,
26 int id; member in struct:policy::PolicyDetails
  /external/chromium_org/components/storage_monitor/
storage_info_unittest.cc 17 // mtp device unique id.
25 // mtp device id.
28 std::string id; local
29 ASSERT_TRUE(StorageInfo::CrackDeviceId(kMtpDeviceId, &type, &id));
30 EXPECT_EQ(kUniqueId, id);
36 std::string id; local
37 ASSERT_TRUE(StorageInfo::CrackDeviceId(kImageCaptureDeviceId, &type, &id));
39 EXPECT_EQ("xyz", id);
  /external/chromium_org/components/url_matcher/
string_pattern.h 25 typedef int ID;
27 StringPattern(const std::string& pattern, ID id);
30 ID id() const { return id_; } function in class:url_matcher::StringPattern
36 ID id_;
  /external/chromium_org/components/variations/
active_field_trials.cc 33 ActiveGroupId id; local
34 id.name = metrics::HashName(trial_name);
35 id.group = metrics::HashName(group_name);
36 return id;
  /external/chromium_org/content/browser/
database_util_unittest.cc 33 std::string id = webkit_database::GetIdentifierFromOrigin(origin_url); local
34 return webkit_database::GetOriginFromIdentifier(id);
38 const std::string& id) {
40 DatabaseUtil::IsValidOriginIdentifier(id));
72 TestValidOriginIdentifier(false, "bad..id");
73 TestValidOriginIdentifier(false, "bad/id");
74 TestValidOriginIdentifier(false, "bad\\id");
76 TestValidOriginIdentifier(false, std::string("bad\0id", 6));
  /external/chromium_org/content/common/
ssl_status_serialization.cc 28 pickle.WriteInt(iter->id);
65 int id; local
68 pickle_read_ok = pickle.ReadInt(&iter, &id) &&
73 id,
  /external/chromium_org/content/public/browser/
ax_event_notification_details.h 22 int id,
30 int id; member in struct:content::AXEventNotificationDetails
  /external/chromium_org/gin/modules/
file_module_provider.cc 19 const std::string& id) {
24 base::SplitString(id, '/', &components);
40 runner->Run(source, id);
60 const std::string& id = *it; local
61 if (attempted_ids_.count(id))
63 attempted_ids_.insert(id);
65 AttempToLoadModule, runner->GetWeakPtr(), search_paths_, id));
  /external/chromium_org/gpu/command_buffer/common/
cmd_buffer_common.cc 28 int id = static_cast<int>(command_id); local
29 return (id >= 0 && id < kNumCommands) ? names[id] : "*unknown-command*";
  /external/chromium_org/media/base/
bitstream_buffer.h 17 BitstreamBuffer(int32 id, base::SharedMemoryHandle handle, size_t size)
18 : id_(id),
23 int32 id() const { return id_; } function in class:media::BitstreamBuffer
  /external/chromium_org/media/midi/
midi_port_info.h 26 std::string id; member in struct:media::MidiPortInfo
  /external/chromium_org/mojo/services/public/cpp/view_manager/
view.h 29 Id id() const { return id_; } function in class:mojo::view_manager::View
48 Id id_;
  /external/chromium_org/ppapi/c/
pp_touch_point.h 28 * single touch point, such as position, id, rotation angle, and pressure.
32 * This value represents the identifier for this TouchPoint. The id
34 * the first point to be pressed has an id of 0, the second has an id of 1,
35 * and so on. An id can be reused when a touch point is released. For
36 * example, if two fingers are down, with id 0 and 1, and finger 0 releases,
37 * the next finger to be pressed can be assigned to id 0.
39 uint32_t id; member in struct:PP_TouchPoint
  /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/shared_impl/
ppb_device_ref_shared.h 24 return type == other.type && name == other.name && id == other.id;
29 std::string id; member in struct:ppapi::DeviceRefData
  /external/chromium_org/sync/api/attachments/
attachment_unittest.cc 40 AttachmentId id = AttachmentId::Create(); local
43 Attachment a = Attachment::CreateWithId(id, some_data);
44 EXPECT_EQ(id, a.GetId());
  /external/chromium_org/sync/internal_api/public/
delete_journal.h 19 int64 id; // Metahandle of delete journal entry. member in struct:syncer::BookmarkDeleteJournal
  /external/chromium_org/sync/syncable/
write_transaction_info.h 16 WriteTransactionInfo(int64 id,
26 int64 id; member in struct:syncer::syncable::WriteTransactionInfo
  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCDataChannelInit.h 45 , id(-1) { }
51 int id; member in struct:blink::WebRTCDataChannelInit
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
extension_test.cpp 72 pp::Diagnostics::ID id; member in struct:ExtensionTestParam
90 EXPECT_CALL(mDiagnostics, print(param.id, pp::SourceLocation(0, 1), _));
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
mobiledevicemanager.cc 56 char id[256]; local
59 if (info->GetDeviceName(i, name, ARRAY_SIZE(name), id, ARRAY_SIZE(id)))
61 devs->push_back(Device(name, id));
  /external/chromium_org/third_party/skia/src/gpu/
GrStencilBuffer.cpp 42 GrCacheID id; local
43 gen_cache_id(width, height, sampleCnt, &id);
46 return GrResourceKey(id, gStencilBufferResourceType, 0);

Completed in 2454 milliseconds

<<11121314151617181920>>