OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maybe_schema
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/renderer/extensions/
v8_schema_registry.cc
83
SchemaCache::iterator
maybe_schema
= schema_cache_.find(api);
local
84
if (
maybe_schema
!= schema_cache_.end())
85
return
maybe_schema
->second.newLocal(v8::Isolate::GetCurrent());
/external/chromium_org/extensions/common/
extension_api.cc
339
SchemaMap::iterator
maybe_schema
= schemas_.find(api_name);
local
340
if (
maybe_schema
!= schemas_.end()) {
341
result =
maybe_schema
->second.get();
356
maybe_schema
= schemas_.find(api_name);
357
CHECK(schemas_.end() !=
maybe_schema
);
358
result =
maybe_schema
->second.get();
Completed in 578 milliseconds