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
50
VarMap::const_iterator result =
live_vars_
.find(var_id);
51
if (result ==
live_vars_
.end())
69
VarMap::iterator found =
live_vars_
.find(var_id);
70
if (found ==
live_vars_
.end()) {
102
VarMap::iterator found =
live_vars_
.find(var_id);
103
if (found ==
live_vars_
.end())
115
//
live_vars_
.erase() during deletion.
126
live_vars_
.erase(found);
147
live_vars_
.insert(std::make_pair(
156
return
live_vars_
.find(id)
[
all
...]
var_tracker.h
191
// Convenience functions for doing lookups into the
live_vars_
map.
217
VarMap
live_vars_
;
member in class:ppapi::VarTracker
/external/chromium_org/ppapi/proxy/
plugin_var_tracker.cc
109
if (found ==
live_vars_
.end()) {
146
if (found ==
live_vars_
.end())
295
for (VarMap::iterator it =
live_vars_
.begin();
296
it !=
live_vars_
.end();
423
// This will optionally delete the info from
live_vars_
.
489
VarMap::iterator ret =
live_vars_
.find(found->second);
493
CHECK(ret !=
live_vars_
.end());
/external/chromium_org/content/renderer/pepper/
host_var_tracker.cc
141
VarMap::iterator iter =
live_vars_
.find(object_var->GetExistingVarID());
142
if (iter ==
live_vars_
.end()) {
Completed in 60 milliseconds