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

<<41424344454647484950>>

  /external/chromium_org/sandbox/linux/seccomp-bpf/
trap.cc 249 // avoid 0, as it could be confused for a trap without any specific id.
254 uint16_t id; local
256 // We have seen this pair before. Return the same id that we assigned
258 id = iter->second;
260 // This is a new pair. Remember it and assign a new id.
262 trap_array_size_ >= std::numeric_limits<typeof(id)>::max()) {
267 id = trap_array_size_ + 1;
308 trap_ids_[key] = id;
309 trap_array_[trap_array_size_] = ErrorCode(fnc, aux, safe, id);
313 return ErrorCode(fnc, aux, safe, id);
    [all...]
  /external/chromium_org/sync/engine/
commit_util.cc 39 using syncable::Id;
100 syncable::Id id = meta_entry.GetId(); local
101 sync_entry->set_id_string(SyncableIdToProto(id));
124 Id new_parent_id;
148 DCHECK(!id.ServerKnows() ||
155 DCHECK(id.ServerKnows()) << meta_entry;
168 const Id& prev_id = meta_entry.GetPredecessorId();
205 const syncable::Id& pre_commit_id,
241 const syncable::Id& pre_commit_id
    [all...]
get_commit_ids.cc 151 syncable::Id id = entry.GetId(); local
152 if (id == entry.GetParentId()) {
153 CHECK(id.IsRoot()) << "Non-root item is self parenting." << entry;
263 syncable::Id parent_id = item.GetParentId();
322 syncable::Id prev_id = item.GetPredecessorId();
325 CHECK(prev.good()) << "Bad id when walking predecessors.";
409 set<syncable::Id> legal_delete_parents;
475 syncable::Id parent_id = entry.GetParentId();
syncer_util.cc 48 using syncable::ID;
53 using syncable::Id;
76 syncable::Id FindLocalIdToUpdate(
85 const syncable::Id& update_id = SyncableIdFromProto(update.id_string());
90 // 1) Client has entry for tag already, ID is server style, matches
91 // 2) Client has entry for tag already, ID is server, doesn't match.
92 // 3) Client has entry for tag already, ID is local, (never matches)
96 // work just fine. Update will end up in the proper entry, via ID lookup.
99 // When this happens, we pick the lexically-least ID and ignore all other
101 // Case 3 - We need to replace the local ID with the server ID so tha
469 syncable::Id id = entry->GetId(); local
509 syncable::Id id = entry.GetParentId(); local
    [all...]
  /external/chromium_org/sync/internal_api/public/base/
invalidation.cc 28 const invalidation::ObjectId& id,
31 return Invalidation(id, false, version, payload, AckHandle::CreateUnique());
35 const invalidation::ObjectId& id) {
36 return Invalidation(id, true, kInvalidVersion,
48 invalidation::ObjectId id; local
52 || !ObjectIdFromValue(*object_id_dict, &id)) {
53 DLOG(WARNING) << "Failed to parse id";
63 id,
82 id,
171 const invalidation::ObjectId& id,
    [all...]
  /external/chromium_org/sync/notifier/
unacked_invalidation_set.cc 26 invalidation::ObjectId id)
28 object_id_(id) {}
197 invalidation::ObjectId id = invalidations_.begin()->object_id(); local
200 Invalidation unknown_version = Invalidation::InitUnknownVersion(id);
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegion.h 59 const String& id() const { return m_id; } function in class:WebCore::VTTRegion
108 Id,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptManager.cpp 76 InjectedScript InjectedScriptManager::injectedScriptForId(int id)
78 IdToInjectedScriptMap::iterator it = m_idToInjectedScript.find(id);
82 if (it->value == id)
93 int id = m_nextInjectedScriptId++; local
94 m_scriptStateToId.set(scriptState, id);
95 return id;
134 // Now remove script states that have id but no injected script.
178 int id = injectedScriptIdFor(inspectedScriptState); local
179 ScriptObject injectedScriptObject = createInjectedScript(injectedScriptSource(), inspectedScriptState, id);
181 m_idToInjectedScript.set(id, result)
    [all...]
InspectorInputAgent.cpp 54 SyntheticInspectorTouchPoint(unsigned id, State state, const WebCore::IntPoint& screenPos, const WebCore::IntPoint& pos, int radiusX, int radiusY, double rotationAngle, double force)
56 m_id = id;
211 int x, y, radiusX, radiusY, id; local
234 if (pointObj->getNumber("id", &id)) {
236 id = -1;
239 id = autoId++;
241 if (id < 0) {
267 SyntheticInspectorTouchPoint point(id++, convertedState, globalPoint, convertedPoint, radiusX, radiusY, rotationAngle, force);
InspectorWorkerAgent.cpp 67 int id() const { return m_id; } function in class:WebCore::InspectorWorkerAgent::WorkerFrontendChannel
239 m_idToChannel.set(channel->id(), channel);
245 m_inspectorFrontend->worker()->workerCreated(channel->id(), url, autoconnectToWorkers);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/animation/
WebAnimationProvider.cpp 46 StringBuilder id; local
47 id.appendLiteral("-|transition");
48 id.appendNumber(static_cast<int>(property));
49 id.append('-');
50 return id.toString();
210 m_animationIdMap.set(animationName, webAnimation->id());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DefaultScriptMapping.js 79 var uiSourceCode = this._workspace.uiSourceCode(this._projectDelegate.id(), path);
123 id: function()
SimpleWorkspaceProvider.js 54 id: function()
186 var uiSourceCode = /** @type {!WebInspector.UISourceCode} */ (this._workspace.uiSourceCode(projectDelegate.id(), path));
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBTransaction.h 69 int64_t id() const { return m_id; } function in class:WebCore::IDBTransaction
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.cpp 123 unsigned short RTCDataChannel::id() const function in class:WebCore::RTCDataChannel
125 return m_handler->id();
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebMediaStreamSource.cpp 106 void WebMediaStreamSource::initialize(const WebString& id, Type type, const WebString& name)
108 m_private = MediaStreamSource::create(id, static_cast<MediaStreamSource::Type>(type), name);
111 WebString WebMediaStreamSource::id() const function in class:blink::WebMediaStreamSource
114 return m_private.get()->id();
  /external/chromium_org/third_party/WebKit/Source/platform/mediastream/
MediaStreamComponent.h 58 static PassRefPtr<MediaStreamComponent> create(const String& id, PassRefPtr<MediaStreamSource>);
66 String id() const { return m_id; } function in class:WebCore::MediaStreamComponent
79 MediaStreamComponent(const String& id, MediaStreamDescriptor*, PassRefPtr<MediaStreamSource>);
MediaStreamSource.h 71 static PassRefPtr<MediaStreamSource> create(const String& id, Type, const String& name, ReadyState = ReadyStateLive, bool requiresConsumer = false);
73 const String& id() const { return m_id; } function in class:WebCore::MediaStreamSource
98 MediaStreamSource(const String& id, Type, const String& name, ReadyState, bool requiresConsumer);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
suite.py 251 def id(self): member in class:_ErrorHolder
261 return self.id()
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
MacroExpander.cpp 304 Diagnostics::ID id = args->size() < macro.parameters.size() ? local
307 mDiagnostics->report(id, identifier.location, identifier.text);
  /external/chromium_org/third_party/freetype/src/cff/
cffparse.h 94 const char* id; member in struct:CFF_Field_Handler_
  /external/chromium_org/third_party/icu/source/test/intltest/
itutil.cpp 34 #define CASE(id, test) case id: \
374 UnicodeString id=UNICODE_STRING_SIMPLE("Grek-Latn"); local
376 utrans_openU(id.getBuffer(), id.length(), UTRANS_FORWARD, NULL, 0, NULL, errorCode));
440 UnicodeString id=UNICODE_STRING_SIMPLE("Grek-Latn"); local
443 utrans_openU(id.getBuffer(), id.length(), UTRANS_FORWARD, NULL, 0, NULL, errorCode));
trnserr.cpp 139 errln("FAIL: construction of bogus ID \"LATINGREEK-GREEKLATIN\"");
215 UnicodeString id="MyRandom-YReverse"; local
224 Transliterator *t = Transliterator::createFromRules(id, rules, UTRANS_REVERSE, parseErr, status);
231 Transliterator::unregister(id);
233 Transliterator* t1= Transliterator::createInstance(id, UTRANS_REVERSE, parseErr, status);
236 errln("FAIL: construction of unregistered ID failed.");
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannel.h 106 virtual int id() const { return config_.id; } function in class:webrtc::DataChannel
217 PROXY_CONSTMETHOD0(int, id)
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 44 public int id = -1; field in class:DataChannel.Init
51 String protocol, boolean negotiated, int id) {
57 this.id = id;

Completed in 549 milliseconds

<<41424344454647484950>>