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

1234567891011>>

/external/chromium_org/ppapi/proxy/
H A Dplugin_dispatcher.cc3 // found in the LICENSE file.
97 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find(
99 if (found == g_instance_to_dispatcher->end())
101 return found->second;
125 InstanceToDispatcherMap::iterator found = local
127 if (found != g_instance_to_dispatcher->end()) {
129 found->second->Send(new PpapiHostMsg_LogWithSource(
145 InterfaceMap::iterator found = plugin_interfaces_.find(interface_name); local
146 if (found == plugin_interfaces_.end()) {
151 return found
257 InstanceToDispatcherMap::iterator found = g_instance_to_dispatcher->find( local
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dvar_tracker.cc3 // found in the LICENSE file.
69 VarMap::iterator found = live_vars_.find(var_id); local
70 if (found == live_vars_.end()) {
75 VarInfo& info = found->second;
81 TrackedObjectGettingOneRef(found);
102 VarMap::iterator found = live_vars_.find(var_id); local
103 if (found == live_vars_.end())
106 VarInfo& info = found->second;
121 ObjectGettingZeroRef(found);
126 live_vars_.erase(found);
162 VarMap::iterator found = GetLiveVar(plugin_object); local
172 VarMap::iterator found = GetLiveVar(plugin_object); local
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_file_ref.cc3 // found in the LICENSE file.
744 std::set<std::string>::iterator found = local
746 if (found != expected_file_names.end()) {
749 expected_file_names.erase(found);
751 found = expected_dir_names.find(file_path);
752 if (found == expected_dir_names.end())
756 expected_dir_names.erase(found);
/external/chromium_org/storage/browser/blob/
H A Dblob_storage_context.cc3 // found in the LICENSE file.
63 BlobMap::iterator found = blob_map_.find(uuid); local
64 if (found == blob_map_.end())
66 if (found->second.flags & EXCEEDED_MEMORY)
68 DCHECK(!(found->second.flags & BEING_BUILT));
70 found->second.data.get(), this, base::MessageLoopProxy::current().get()));
76 BlobURLMap::iterator found = public_blob_urls_.find( local
78 if (found == public_blob_urls_.end())
80 return GetBlobDataFromUUID(found->second);
125 BlobMap::iterator found local
196 BlobMap::iterator found = blob_map_.find(uuid); local
209 BlobMap::iterator found = blob_map_.find(uuid); local
218 BlobMap::iterator found = blob_map_.find(uuid); local
315 BlobMap::iterator found = blob_map_.find(uuid); local
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Dexternal_mount_points.cc3 // found in the LICENSE file.
124 NameToInstance::iterator found = instance_map_.find(mount_name); local
125 if (found == instance_map_.end())
127 Instance* instance = found->second;
130 delete found->second;
131 instance_map_.erase(found);
139 NameToInstance::const_iterator found = instance_map_.find(filesystem_id); local
140 if (found == instance_map_.end())
142 *path = found->second->path();
321 NameToInstance::iterator found
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaList.cpp99 // Only continue if exactly one media query is found, as described above.
125 // Only continue if exactly one media query is found, as described above.
134 bool found = false; local
140 found = true;
144 return found;
H A DRuleFeature.cpp132 // We have found an invalidation set feature in the rightmost compound selector.
162 // We found no features in the sub-selector, only skippable ones (foundIdent was
234 // Given a selector, update the descendant invalidation sets for the features found
237 // added to the invalidation sets for the features found in the other compound selectors
286 // sets for features found in other compound selectors.
289 // We use wholeSubtree invalidation for features found left of adjacent combinators as
502 bool found = false; local
509 found = true;
513 if (!found)
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_strnid.c10 * apply to all code found in this distribution, be it the RC4, RSA,
194 int found; local
203 found = sk_ASN1_STRING_TABLE_find(stable, &idx, &fnd);
204 if (!found) return NULL;
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dprime.c10 * apply to all code found in this distribution, be it the RC4, RSA,
171 int found = 0; local
256 found = 1;
264 return found;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Duregiontest.c524 UBool found = FALSE; local
528 found = TRUE;
532 if ( !found ) {
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dregiontst.cpp615 UBool found = FALSE; local
619 found = TRUE;
623 if ( !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.cc206 size_t found = args.find(kPeerId); local
207 if (found == std::string::npos)
210 int id = atoi(&args[found + ARRAYSIZE(kPeerId) - 1]);
233 size_t found;
236 found = path.find(kTargetPeerIdParam, args);
237 if (found == std::string::npos)
239 if (found == (args + 1) || path[found - 1] == '&') {
240 found += ARRAYSIZE(kTargetPeerIdParam) - 1;
243 args = found
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Ddevicemanager.cc316 std::map<std::string, VideoFormat>::const_iterator found = local
319 if (found == max_formats_.end()) {
322 *video_format = found->second;
H A Dfakedevicemanager.h96 std::map<std::string, VideoFormat>::const_iterator found = local
98 return (found != max_formats_.end()) ?
99 max_format == found->second :
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideocapturer.cc162 bool found = false; local
168 found = true;
173 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/sfntly/cpp/src/test/
H A Dfont_data_test.cc36 // search test result pairs - number to search for; index found at
120 int32_t found = wfd->SearchUShort(array_setup_offset[1], local
129 test_case[0], found, test_case[1], j, i);
131 EXPECT_EQ(test_case[1], found);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineQuadraticIntersection_Test.cpp5 * found in the LICENSE file.
156 bool found = false; local
166 found = true;
169 SkASSERT(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) {

Completed in 1373 milliseconds

1234567891011>>