Searched defs:found (Results 226 - 250 of 821) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/proxy/
H A Dplugin_var_tracker.cc3 // found in the LICENSE file.
90 VarMap::iterator found = GetLiveVar(plugin_var); local
91 if (found == live_vars_.end()) {
96 DCHECK(found->second.track_with_no_reference_count > 0);
97 found->second.track_with_no_reference_count--;
98 DeleteObjectInfoIfNecessary(found);
127 VarMap::const_iterator found = GetLiveVar(plugin_object);
128 if (found == live_vars_.end())
131 ProxyObjectVar* object = found->second.var->AsProxyObjectVar();
143 HostVarToPluginVarMap::iterator found local
171 UserDataToPluginImplementedVarMap::iterator found = local
231 UserDataToPluginImplementedVarMap::iterator found = local
247 UserDataToPluginImplementedVarMap::iterator found = local
299 UserDataToPluginImplementedVarMap::iterator found = local
376 HostVarToPluginVarMap::iterator found = local
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dvar_tracker.cc3 // found in the LICENSE file.
75 VarMap::iterator found = live_vars_.find(var_id); local
76 if (found == live_vars_.end()) {
81 VarInfo& info = found->second;
87 TrackedObjectGettingOneRef(found);
108 VarMap::iterator found = live_vars_.find(var_id); local
109 if (found == live_vars_.end())
112 VarInfo& info = found->second;
127 ObjectGettingZeroRef(found);
132 live_vars_.erase(found);
168 VarMap::iterator found = GetLiveVar(plugin_object); local
178 VarMap::iterator found = GetLiveVar(plugin_object); local
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_file_ref.cc3 // found in the LICENSE file.
721 std::set<std::string>::iterator found = local
723 if (found != expected_file_names.end()) {
726 expected_file_names.erase(found);
728 found = expected_dir_names.find(file_path);
729 if (found == expected_dir_names.end())
733 expected_dir_names.erase(found);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaList.cpp95 // Only continue if exactly one media query is found, as described above.
121 // Only continue if exactly one media query is found, as described above.
130 bool found = false; local
136 found = true;
140 return found;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DEventRetargeter.cpp271 RelatedNodeMap::const_iterator found = relatedNodeMap.find(scope); local
272 if (found != relatedNodeMap.end()) {
273 relatedNode = found->value;
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-map.cc221 bool found = false; local
224 found |= hb_ot_layout_language_find_feature (face,
230 if (!found && !(info->flags & F_HAS_FALLBACK))
255 map->needs_fallback = !found;
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwin32toolhelp_unittest.cc276 bool found = false; local
279 found = true;
283 EXPECT_TRUE(found);
286 found = false;
289 found = true;
293 EXPECT_TRUE(found);
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
H A Ddata_socket.cc124 size_t found = request_headers_.find(kHeaderTerminator); local
125 if (found != std::string::npos) {
126 data_ = request_headers_.substr(found + kHeaderTerminatorLength);
127 request_headers_.resize(found + kHeaderTerminatorLength);
H A Dpeer_channel.cc201 size_t found = args.find(kPeerId); local
202 if (found == std::string::npos)
205 int id = atoi(&args[found + ARRAYSIZE(kPeerId) - 1]);
228 size_t found;
231 found = path.find(kTargetPeerIdParam, args);
232 if (found == std::string::npos)
234 if (found == (args + 1) || path[found - 1] == '&') {
235 found += ARRAYSIZE(kTargetPeerIdParam) - 1;
238 args = found
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Ddevicemanager.cc334 std::map<std::string, VideoFormat>::const_iterator found = local
337 if (found == max_formats_.end()) {
340 *video_format = found->second;
H A Dfakedevicemanager.h88 std::map<std::string, VideoFormat>::const_iterator found = local
90 return (found != max_formats_.end()) ?
91 max_format == found->second :
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturer.cc158 bool found = false; local
164 found = true;
169 if (!found) {
/external/chromium_org/third_party/libxslt/libxslt/
H A Dkeys.c478 int found = 0; local
496 found = 1;
502 if (found == 0) {
505 "xsltInitDocKeyTable: did not found %s\n", name));
H A Dtemplates.c414 * @found: indicator whether the attribute is present
424 const xmlChar *name, const xmlChar *ns, int *found) {
433 *found = 0;
436 *found = 1;
423 xsltEvalStaticAttrValueTemplate(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *name, const xmlChar *ns, int *found) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_tracker.c240 int found = 0; local
246 found = 1;
251 if (!found)
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlink_uniforms.cpp265 bool found = this->map->get(id, name); local
266 assert(found);
268 if (!found)
466 bool found = false; local
470 found = true;
476 if (found)
479 assert(found);
H A Dopt_constant_propagation.cpp161 acp_entry *found = NULL; local
178 found = entry;
183 if (!found)
190 if (found->initial_values & (1 << j))
196 data.f[i] = found->constant->value.f[rhs_channel];
199 data.i[i] = found->constant->value.i[rhs_channel];
202 data.u[i] = found->constant->value.u[rhs_channel];
205 data.b[i] = found->constant->value.b[rhs_channel];
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm.c365 bool found = false; local
368 found |= key_debug("EXT_texture_swizzle or DEPTH_TEXTURE_MODE",
371 found |= key_debug("GL_CLAMP enabled on any texture unit's 1st coordinate",
373 found |= key_debug("GL_CLAMP enabled on any texture unit's 2nd coordinate",
375 found |= key_debug("GL_CLAMP enabled on any texture unit's 3rd coordinate",
377 found |= key_debug("GL_MESA_ycbcr texturing\n",
379 found |= key_debug("GL_MESA_ycbcr UV swapping\n",
382 return found;
392 bool found = false; local
415 found |
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_prime.c11 * apply to all code found in this distribution, be it the RC4, RSA,
163 int found=0; local
227 found = 1;
235 return found;
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp6 * found in the LICENSE file.
110 JSBool ok, found; local
134 found = (access(full, X_OK) == 0);
137 if (found) {
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.cc347 WIN32_FIND_DATAA found; // that final A is for Ansi (as opposed to Unicode) local
348 HANDLE hFind = FindFirstFileA(full_glob, &found); // A is for Ansi
352 const char *fname = found.cFileName;
359 } while (FindNextFileA(hFind, &found) != FALSE); // A is for Ansi
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.cc279 WIN32_FIND_DATAA found; // that final A is for Ansi (as opposed to Unicode) local
280 HANDLE hFind = FindFirstFileA(full_glob, &found); // A is for Ansi
284 const char *fname = found.cFileName;
291 } while (FindNextFileA(hFind, &found) != FALSE); // A is for Ansi
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
H A Dnasm-listfmt.c170 int found = 0; local
175 found = 1;
180 if (!found) {
181 /* not found, add to list*/
/external/chromium_org/tools/gn/
H A Dcommand_desc.cc3 // found in the LICENSE file.
146 ItemNode::ItemNodeMap::const_iterator found = direct_deps.find(dep_node); local
147 if (found == direct_deps.end())
150 const Location& location = found->second.begin();
H A Dscope.cc3 // found in the LICENSE file.
57 RecordMap::iterator found = values_.find(ident); local
58 if (found != values_.end()) {
60 found->second.used = true;
61 return &found->second.value;
74 RecordMap::iterator found = values_.find(ident); local
75 if (found != values_.end())
76 return &found->second.value; // Already have in the current scope.
90 RecordMap::const_iterator found = values_.find(ident); local
91 if (found !
115 TemplateMap::const_iterator found = templates_.find(name); local
124 RecordMap::iterator found = values_.find(ident); local
133 RecordMap::iterator found = values_.find(ident); local
142 RecordMap::const_iterator found = values_.find(ident); local
274 NamedScopeMap::const_iterator found = target_defaults_.find(target_type); local
354 PropertyMap::const_iterator found = properties_.find(key); local
[all...]

Completed in 536 milliseconds

1234567891011>>