OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:live_vars_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ppapi/shared_impl/
var_tracker.cc
57
VarMap::const_iterator result =
live_vars_
.find(var_id);
58
if (result ==
live_vars_
.end())
76
VarMap::iterator found =
live_vars_
.find(var_id);
77
if (found ==
live_vars_
.end()) {
109
VarMap::iterator found =
live_vars_
.find(var_id);
110
if (found ==
live_vars_
.end())
122
//
live_vars_
.erase() during deletion.
133
live_vars_
.erase(found);
154
live_vars_
.insert(std::make_pair(new_id,
163
return
live_vars_
.find(id)
[
all
...]
var_tracker.h
193
// Convenience functions for doing lookups into the
live_vars_
map.
219
VarMap
live_vars_
;
member in class:ppapi::VarTracker
/external/chromium_org/ppapi/proxy/
plugin_var_tracker.cc
107
if (found ==
live_vars_
.end()) {
144
if (found ==
live_vars_
.end())
257
for (VarMap::iterator it =
live_vars_
.begin();
258
it !=
live_vars_
.end();
385
// This will optionally delete the info from
live_vars_
.
451
VarMap::iterator ret =
live_vars_
.find(found->second);
455
CHECK(ret !=
live_vars_
.end());
/external/chromium_org/content/renderer/pepper/
host_var_tracker.cc
143
VarMap::iterator iter =
live_vars_
.find(object_var->GetExistingVarID());
144
if (iter ==
live_vars_
.end()) {
Completed in 43 milliseconds