Searched defs:found (Results 76 - 100 of 862) sorted by relevance

1234567891011>>

/external/chromium_org/content/renderer/media/
H A Drtc_video_encoder_factory.cc3 // found in the LICENSE file.
77 bool found = false; local
80 found = true;
84 if (!found)
/external/chromium_org/content/renderer/
H A Dnotification_provider.cc3 // found in the LICENSE file.
51 // Won't be found if the notification has already been closed by the user.
60 // Won't be found if the notification has already been closed by the user.
93 bool found = manager_.GetNotification(id, &notification); local
94 // |found| may be false if the WebNotification went out of scope in
96 if (found)
102 bool found = manager_.GetNotification(id, &notification); local
103 // |found| may be false if the WebNotification went out of scope in
105 if (found)
111 bool found local
122 bool found = manager_.GetNotification(id, &notification); local
[all...]
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_helpers.cc3 // found in the LICENSE file.
90 FreeBufferMap::iterator found = free_buffers_.lower_bound(capacity); local
91 if (found == free_buffers_.end()) {
98 buffer = found->second.second;
99 buffer_id = found->second.first;
100 free_buffers_.erase(found);
112 AllocatedBufferMap::iterator found = allocated_buffers_.find(buffer_id);
113 if (found == allocated_buffers_.end())
116 pp::Buffer_Dev& buffer = found->second;
120 allocated_buffers_.erase(found);
[all...]
/external/chromium_org/net/base/
H A Dmime_util_unittest.cc3 // found in the LICENSE file.
412 bool found = false; local
413 for (size_t j = 0; !found && j < extensions.size(); ++j) {
416 found = true;
419 found = true;
422 ASSERT_TRUE(found) << "Must find at least the contained result within "
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.cpp43 bool found = false; local
48 found = true;
52 return found;
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DDOMWindowEventQueue.cpp96 bool found = it != m_queuedEvents.end(); local
97 if (found) {
103 return found;
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorage.cpp58 bool found = contains(name, exceptionState); local
59 if (exceptionState.hadException() || !found)
80 bool found = contains(name, exceptionState); local
81 if (!found)
119 bool found = contains(name, exceptionState);
120 if (exceptionState.hadException() || !found)
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVariablePacker.cpp4 // found in the LICENSE file.
121 bool found = false; local
125 if (!found) {
127 found = true;
130 if (found) {
137 found = false;
/external/chromium_org/third_party/freetype/src/base/
H A Dftdebug.c190 FT_Int level = -1, found = -1; local
206 found = n;
220 if ( found >= 0 && level >= 0 )
222 if ( found == trace_any )
229 ft_trace_levels[found] = level;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c71 boolean found = TRUE; local
98 found = FALSE;
102 return found;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h51 * Record types that can be found in the caps block.
110 * Result: pointer to found record, or NULL if not found.
120 SVGA3dCapsRecord *record, *found = NULL; local
130 (!found || (record->header.type > found->header.type))) {
131 found = record;
135 return found;
/external/chromium_org/third_party/skia/experimental/SkiaExamples/
H A DSkExample.cpp6 * found in the LICENSE file.
46 bool found = this->findNextMatch(); local
47 if (!found) {
48 SkDebugf("No matching SkExample found.\n");
161 bool found = false; local
164 while (!found) {
172 found = true;
178 return found;
183 bool found = findNextMatch(); local
184 if (!found) {
[all...]
/external/chromium_org/ui/base/clipboard/
H A Dclipboard.cc3 // found in the LICENSE file.
74 bool found = false; local
78 found = true;
83 DCHECK(found);
/external/deqp/modules/egl/
H A DteglClientExtensionTests.cpp150 bool found = false; local
158 found = true;
163 if (found)
/external/elfutils/0.153/libelf/
H A Dnlist.c27 found in the source code files (the "Approved Interfaces"). The files
134 /* We haven't found anything. Fail. */
137 /* Re-get the section header in case we found only the dynamic symbol
197 const struct hashentry *found; local
201 found = nlist_fshash_find (table, nl->n_name, 0, &search);
203 if (found != NULL)
206 nl->n_value = found->sym.st_value;
207 nl->n_scnum = found->sym.st_shndx;
208 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
/external/freetype/src/base/
H A Dftdebug.c190 FT_Int level = -1, found = -1; local
206 found = n;
220 if ( found >= 0 && level >= 0 )
222 if ( found == trace_any )
229 ft_trace_levels[found] = level;
/external/libunwind/src/dwarf/
H A DGfind_unwind_table.c55 int i, ret, found = 0; local
224 found = 1;
236 found = 1;
242 found = dwarf_find_debug_frame (found, &edi->di_debug, ip, load_base, path,
246 return found;
/external/linux-tools-perf/perf-3.12.0/tools/perf/arch/
H A Dcommon.c65 bool found = false; local
81 found = true;
87 return found;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c71 boolean found = TRUE; local
98 found = FALSE;
102 return found;
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga3d_caps.h51 * Record types that can be found in the caps block.
110 * Result: pointer to found record, or NULL if not found.
120 SVGA3dCapsRecord *record, *found = NULL; local
130 (!found || (record->header.type > found->header.type))) {
131 found = record;
135 return found;
/external/openssl/crypto/pqueue/
H A Dpqueue.c171 pitem *found = NULL; local
180 found = next;
187 found = next;
189 if ( ! found)
199 return found;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftdebug.c190 FT_Int level = -1, found = -1; local
206 found = n;
220 if ( found >= 0 && level >= 0 )
222 if ( found == trace_any )
229 ft_trace_levels[found] = level;
/external/skia/experimental/SkiaExamples/
H A DSkExample.cpp6 * found in the LICENSE file.
46 bool found = this->findNextMatch(); local
47 if (!found) {
48 SkDebugf("No matching SkExample found.\n");
161 bool found = false; local
164 while (!found) {
172 found = true;
178 return found;
183 bool found = findNextMatch(); local
184 if (!found) {
[all...]
/external/skia/tests/
H A DHashCacheTest.cpp5 * found in the LICENSE file.
96 // look for all i's and assert we found the -i's
98 HashElement* found = cache.find(i); local
99 REPORTER_ASSERT(reporter, NULL != found && -i == found->fValue);
104 HashElement* found = cache.find(10); local
105 REPORTER_ASSERT(reporter, NULL == found);
119 HashElement* found = cache.find(0, findPos); local
120 REPORTER_ASSERT(reporter, NULL == found);
123 found
133 HashElement* found = cache.find(0, findNeg); local
149 HashElement* found = cache.find(0); local
[all...]
/external/bluetooth/bluedroid/stack/a2dp/
H A Da2d_api.c58 BOOLEAN found = FALSE; local
66 /* loop through all records we found */
69 /* get next record; if none found, we're done */
108 found = TRUE;
118 (*a2d_cb.find.p_cback)(found, &a2d_svc);
240 ** returned for the first service record found on the

Completed in 1318 milliseconds

1234567891011>>