/external/chromium_org/remoting/protocol/ |
fake_authenticator.cc | 127 std::string id = local 128 message->TextNamed(buzz::QName(kChromotingXmlNamespace, "id")); 129 EXPECT_EQ(id, base::IntToString(messages_)); 139 buzz::XmlElement* id = new buzz::XmlElement( local 140 buzz::QName(kChromotingXmlNamespace, "id")); 141 id->AddText(base::IntToString(messages_)); 142 result->AddElement(id);
|
/external/chromium_org/sandbox/win/src/ |
interception_internal.h | 32 InterceptorId id; member in struct:sandbox::FunctionInfo
|
/external/chromium_org/sync/api/ |
sync_data.cc | 49 SyncData::SyncData(int64 id, 53 id_(id), 82 int64 id, const sync_pb::EntitySpecifics& specifics, 84 DCHECK_NE(id, kInvalidId); 87 return SyncData(id, &entity, modification_time); 144 std::string id = base::Int64ToString(GetRemoteId()); local 146 ", id: " + id + "}";
|
/external/chromium_org/sync/engine/ |
process_updates_util.cc | 29 // being applied to a local item with a different ID, we will count the change 31 // our IDs correctly in its commit response, so a new ID during GetUpdate should 36 // server-returned new ID to the database before we shut down. On the GetUpdate 38 // updates its local ID. 41 // test server will send one of the clients a response to upate its local ID so 42 // that both clients will refer to the item using the same ID going forward. In 150 syncable::Id id = SyncableIdFromProto(entry.id_string()); local 157 if (!id.ServerKnows()) { 158 LOG(ERROR) << "Illegal negative id in received updates" [all...] |
/external/chromium_org/sync/notifier/ |
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...] |
/external/chromium_org/testing/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/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8InspectorFrontendHostCustom.cpp | 65 v8::Local<v8::Value> id = item->Get(v8AtomicString(isolate, "id")); local 90 ContextMenuAction typedId = static_cast<ContextMenuAction>(ContextMenuItemBaseCustomTag + id->ToInt32()->Value());
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSProperty.h | 72 CSSPropertyID id() const { return static_cast<CSSPropertyID>(m_metadata.m_propertyID); } function in class:WebCore::CSSProperty
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ScriptedAnimationController.cpp | 71 ScriptedAnimationController::CallbackId id = ++m_nextCallbackId; local 73 callback->m_id = id; 77 InspectorInstrumentation::didRequestAnimationFrame(m_document, id); 79 return id; 82 void ScriptedAnimationController::cancelCallback(CallbackId id) 85 if (m_callbacks[i]->m_id == id) { 86 InspectorInstrumentation::didCancelAnimationFrame(m_document, id); 92 if (m_callbacksToInvoke[i]->m_id == id) { 93 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/ |
WebMediaStream.cpp | 73 WebString WebMediaStream::id() const function in class:blink::WebMediaStream 75 return m_private->id();
|
WebMediaStreamTrack.cpp | 76 void WebMediaStreamTrack::initialize(const WebString& id, const WebMediaStreamSource& source) 78 m_private = MediaStreamComponent::create(id, source); 102 WebString WebMediaStreamTrack::id() const function in class:blink::WebMediaStreamTrack 105 return m_private->id();
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/ |
MediaStreamDescriptor.h | 61 static PassRefPtr<MediaStreamDescriptor> create(const String& id, const MediaStreamComponentVector& audioComponents, const MediaStreamComponentVector& videoComponents); 68 String id() const { return m_id; } function in class:WebCore::FINAL 89 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audioSources, const MediaStreamSourceVector& videoSources); 90 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& audioComponents, const MediaStreamComponentVector& videoComponents);
|
RTCDataChannelHandler.cpp | 86 unsigned short RTCDataChannelHandler::id() const function in class:WebCore::RTCDataChannelHandler 88 return m_webHandler->id();
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBMetadata.h | 41 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry) 43 , id(id) 48 int64_t id; member in struct:WebCore::IDBIndexMetadata 58 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId) 60 , id(id) 67 int64_t id; member in struct:WebCore::IDBObjectStoreMetadata 91 IDBDatabaseMetadata(const String& name, int64_t id, const String& version, int64_t intVersion, int64_t maxObjectStoreId) 93 , id(id 101 int64_t id; member in struct:WebCore::IDBDatabaseMetadata [all...] |
IDBObjectStore.h | 60 int64_t id() const { return m_metadata.id; } function in class:WebCore::IDBObjectStore
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
MediaStreamTrack.cpp | 78 String MediaStreamTrack::id() const function in class:WebCore::MediaStreamTrack 80 return m_component->id();
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
PlatformTouchPoint.h | 51 unsigned id() const { return m_id; } function in class:WebCore::PlatformTouchPoint
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebInputEvent.cpp | 193 const char* id = staticKeyIdentifiers(windowsKeyCode); local 194 if (id) { 195 strncpy(keyIdentifier, id, sizeof(keyIdentifier) - 1);
|
/external/chromium_org/third_party/icu/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...] |
/external/chromium_org/third_party/icu/source/i18n/ |
wintzimpl.cpp | 118 UnicodeString id = UnicodeString(icuid, length); local 119 TimeZone *tz = TimeZone::createTimeZone(id);
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
env_test.cc | 40 uintptr_t id; // Order# for the execution of this callback member in struct:leveldb::CB 42 CB(port::AtomicPointer* p, int i) : last_id_ptr(p), id(i) { } 47 ASSERT_EQ(cb->id-1, reinterpret_cast<uintptr_t>(cur)); 48 cb->last_id_ptr->Release_Store(reinterpret_cast<void*>(cb->id));
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
datachannelinterface.h | 50 id(-1) { 64 int id; // The stream id, or SID, for SCTP data channels. -1 member in struct:webrtc::DataChannelInit 123 virtual int id() const = 0;
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/ |
MediaStreamTrack.java | 43 public String id() { method in class:MediaStreamTrack
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
window.h | 59 static WindowId Cast(uint64 id) { 61 return WindowId(reinterpret_cast<WindowId::WindowT>(id)); 63 return WindowId(static_cast<WindowId::WindowT>(id)); 67 static uint64 Format(const WindowT& id) { 69 return static_cast<uint64>(reinterpret_cast<uintptr_t>(id)); 71 return static_cast<uint64>(id); 76 WindowId(const WindowT& id) : id_(id) {} // NOLINT 77 const WindowT& id() const { return id_; } function in class:talk_base::WindowId 80 return id_ == other.id(); 112 const DesktopT& id() const { return id_; } function in class:talk_base::DesktopId [all...] |