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

<<41424344454647484950>>

  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/android/gen/org/webrtc/vieautotest/
R.java 20 public static final class id { class in class:R
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/
after_initialization_fixture.h 32 unsigned int id; local
33 thread_->Start(id);
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
backends.py 33 """Retrieves a specific device given its backend name and device id."""
38 if device.id == device_id:
114 def id(self): member in class:Device
  /external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
webdriver_tab_backend.py 108 def id(self): member in class:WebDriverTabBackend
  /external/chromium_org/tools/telemetry/telemetry/core/
web_contents.py 24 def id(self): member in class:WebContents
25 """Return the unique id string for this tab object."""
26 return self._inspector_backend.id
  /external/chromium_org/ui/accessibility/
ax_generated_tree_unittest.cc 20 // being either a node id, or a node id followed by a subexpression
25 // (1) is a tree with a single node with id 1.
29 *out_result += base::IntToString(node->id());
113 update.nodes[0].id = permuted[0];
116 update.nodes[1].id = permuted[1];
121 update.nodes[i].id = permuted[i];
229 int id = 1 + (k + k_index) % tree_size; local
231 serializer.SerializeChanges(tree1.GetFromId(id), &update);
  /external/chromium_org/ui/base/clipboard/
clipboard.cc 70 base::PlatformThreadId id = base::PlatformThread::CurrentId(); local
77 if (*it == id) {
87 ClipboardMap::iterator it = clipboard_map->find(id);
92 clipboard_map->insert(std::make_pair(id, clipboard));
100 base::PlatformThreadId id = base::PlatformThread::CurrentId(); local
101 ClipboardMap::iterator it = clipboard_map->find(id);
  /external/chromium_org/ui/base/cursor/
cursors_aura.cc 22 int id; member in struct:ui::__anon20507::CursorData
29 const CursorSetType id; member in struct:ui::__anon20507::CursorSet
151 if (kCursorSets[i].id == cursor_set_id)
160 int id,
168 if (table[i].id == id) {
183 int id,
191 id, scale_factor, resource_id, point)) {
200 id, scale_factor, resource_id, point);
204 int id,
    [all...]
  /external/chromium_org/ui/message_center/
notifier_settings.h 47 NotifierId(NotifierType type, const std::string& id);
59 std::string id; member in struct:message_center::NotifierId
  /external/chromium_org/v8/src/third_party/vtune/
ittnotify_types.h 87 __itt_group_id id; member in struct:___itt_group_list
  /external/chromium_org/webkit/browser/appcache/
appcache_quota_client.cc 48 QuotaClient::ID AppCacheQuotaClient::id() const { function in class:appcache::AppCacheQuotaClient
  /external/chromium_org/webkit/browser/database/
database_quota_client.cc 114 QuotaClient::ID DatabaseQuotaClient::id() const { function in class:webkit_database::DatabaseQuotaClient
  /external/chromium_org/webkit/browser/fileapi/
dump_file_system.cc 87 SandboxDirectoryDatabase::FileId id = paths.top().first; local
92 if (!directory_db.GetFileInfo(id, &info)) {
94 id));
101 if (!directory_db.ListChildren(id, &children)) {
104 info.name.c_str(), id));
125 id,
file_system_operation_runner.h 36 // returned operation ID).
124 // Tries to cancel the operation |id| [we support cancelling write or
127 void Cancel(OperationID id, const StatusCallback& callback);
244 OperationID id; member in struct:fileapi::FileSystemOperationRunner::OperationHandle
292 void PrepareForWrite(OperationID id, const FileSystemURL& url);
293 void PrepareForRead(OperationID id, const FileSystemURL& url);
298 void FinishOperation(OperationID id);
file_system_quota_client.cc 92 quota::QuotaClient::ID FileSystemQuotaClient::id() const { function in class:fileapi::FileSystemQuotaClient
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 115 int id; member in struct:Test1::D
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLEngine.java 43 throw new IllegalArgumentException("Unknown ENGINE id: " + engine);
61 public PrivateKey getPrivateKeyById(String id) throws InvalidKeyException {
62 if (id == null) {
63 throw new NullPointerException("id == null");
66 final long keyRef = NativeCrypto.ENGINE_load_private_key(ctx, id);
71 OpenSSLKey pkey = new OpenSSLKey(keyRef, this, id);
79 public SecretKey getSecretKeyById(String id, String algorithm) throws InvalidKeyException {
80 if (id == null) {
81 throw new NullPointerException("id == null");
84 final long keyRef = NativeCrypto.ENGINE_load_private_key(ctx, id);
127 final String id = NativeCrypto.ENGINE_get_id(ctx); local
    [all...]
  /external/deqp/modules/egl/
teglCreateContextTests.cpp 67 EGLint id = display.getConfigAttrib(config, EGL_CONFIG_ID); local
94 log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id << TestLog::EndMessage;
teglSurfacelessContextTests.cpp 74 const EGLint id = display.getConfigAttrib(config, EGL_CONFIG_ID); local
109 log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id << TestLog::EndMessage;
  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 47 int id = -1; field in class:Label
79 successors.add(catchLabel.id);
82 primarySuccessorIndex = primarySuccessor.id;
86 successors.add(alternateSuccessor.id);
90 return new BasicBlock(id, result, successors, primarySuccessorIndex);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifResourceDecoder.java 37 String id = getGifId(data); local
38 return new GifDataResource(new GifData(context, bitmapPool, id, header, data, width, height));
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceDecoder.java 18 private String id; field in class:GifBitmapWrapperResourceDecoder
55 if (id == null) {
56 id = gifDecoder.getId() + bitmapDecoder.getId();
58 return id;
  /external/gtest/test/
gtest_stress_test.cc 64 std::string IdToKey(int id, const char* suffix) {
66 key << "key_" << id << "_" << suffix;
70 std::string IdToString(int id) {
72 id_message << id; local
78 int id, const char* suffix) {
79 TestPropertyKeyIs matches_key(IdToKey(id, suffix).c_str());
83 << "expecting " << suffix << " value for id " << id; local
84 EXPECT_STREQ(IdToString(id).c_str(), property->value());
89 void ManyAsserts(int id) {
    [all...]
  /external/icu/icu4c/source/common/
locutil.cpp 47 LocaleUtility::canonicalLocaleString(const UnicodeString* id, UnicodeString& result)
49 if (id == NULL) {
59 result = *id;
91 // This code does a proper full level 2 canonicalization of id.
103 if (id != 0) {
104 int32_t buflen = id->length() + 8; // space for NUL
108 U_ASSERT(id->extract(0, INT32_MAX, buf, buflen) < buflen);
123 LocaleUtility::initLocaleFromName(const UnicodeString& id, Locale& result)
127 if (id.isBogus() || id.length() >= BUFLEN)
233 const UChar* id = uenum_unext(uenum, NULL, &status); local
    [all...]
servlkf.cpp 62 UnicodeString id; local
63 key.currentID(id);
64 return supported->get(id) != NULL;
78 const UnicodeString& id = *((const UnicodeString*)elem->key.pointer); local
80 result.remove(id);
82 result.put(id, (void*)this, status); // this is dummy non-void marker used for set semantics
92 LocaleKeyFactory::getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const {
95 // assume if this is called on us, we support some fallback of this id
96 // if (isSupportedID(id, status)) {
98 LocaleUtility::initLocaleFromName(id, loc)
    [all...]

Completed in 2100 milliseconds

<<41424344454647484950>>