/external/libvpx/build/make/ |
H A D | armlink_adapter.sh | 6 ## that can be found in the LICENSE file in the root of the source 7 ## tree. An additional intellectual property rights grant can be found 9 ## be found in the AUTHORS file in the root of the source tree. 37 found=0 39 [ -f "$d/$f" ] && infiles="$infiles $d/$f" && found=1 && break 40 [ -f "$d/lib${f}.so" ] && infiles="$infiles $d/lib${f}.so" && found=1 && break 41 [ -f "$d/lib${f}.a" ] && infiles="$infiles $d/lib${f}.a" && found=1 && break 43 [ $found -eq 0 ] && infiles="$infiles $f"
|
/external/webkit/WebCore/platform/graphics/win/ |
H A D | WKCACFContextFlusher.cpp | 63 ContextSet::iterator found = m_contexts.find(context); local 64 if (found == m_contexts.end()) 67 CFRelease(*found); 68 m_contexts.remove(found);
|
/external/apache-http/src/org/apache/http/message/ |
H A D | BasicTokenIterator.java | 154 * If found, the token is stored in {@link #currentToken}. 158 * If not found, {@link #currentToken} is set to <code>null</code>. 163 * @return the position after the found token in the current header, or 186 return -1; // nothing found 228 * negative if no token start could be found 236 boolean found = false; 237 while (!found && (this.currentHeader != null)) { 240 while (!found && (from < to)) { 247 // found the start of a token 248 found [all...] |
H A D | BasicHeaderIterator.java | 105 boolean found = false; 106 while (!found && (from < to)) { 108 found = filterHeader(from); 110 return found ? from : -1;
|
H A D | BasicListHeaderIterator.java | 113 boolean found = false; 114 while (!found && (from < to)) { 116 found = filterHeader(from); 118 return found ? from : -1;
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
H A D | SchemeRegistry.java | 78 Scheme found = get(name); 79 if (found == null) { 83 return found; 120 Scheme found = registeredSchemes.get(name); 121 return found;
|
/external/e2fsprogs/lib/ext2fs/ |
H A D | lookup.c | 25 int found; member in struct:lookup_struct 44 ls->found++; 60 ls.found = 0; 66 return (ls.found) ? 0 : EXT2_ET_FILE_NOT_FOUND;
|
/external/openssl/crypto/bn/ |
H A D | bn_depr.c | 74 int found = 0; local 88 found = 1; 90 if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd); 91 return(found ? rnd : NULL);
|
/external/freetype/src/base/ |
H A D | ftdebug.c | 170 FT_Int level = -1, found = -1; local 186 found = n; 200 if ( found >= 0 && level >= 0 ) 202 if ( found == trace_any ) 209 ft_trace_levels[found] = level;
|
/external/skia/src/animator/ |
H A D | SkDisplayList.cpp | 62 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) { 66 return SearchForMatch(match, list, parent, found, grandList); 80 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) { 81 *found = NULL; 90 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index)) 101 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index)) 109 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) { 114 int groupIndex = group->findGroup(match, list, parent, found, grandList); 116 *found = group; 61 findGroup(SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) argument 79 SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList) argument 108 SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) argument
|
H A D | SkDisplayList.h | 47 SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList); 61 SkGroup** parent, SkGroup** found, SkTDDrawableArray**grandList); 63 SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList,
|
/external/v8/test/mjsunit/ |
H A D | mjsunit.js | 42 function fail(expected, found, name_opt) { 50 throw new MjsUnitAssertionError(start + " expected <" + expected + "> found <" + found + ">"); 105 function assertEquals(expected, found, name_opt) { 106 if (!deepEquals(found, expected)) { 107 fail(expected, found, name_opt); 112 function assertArrayEquals(expected, found, name_opt) { 117 assertEquals(expected.length, found.length, start + "array length"); 118 if (expected.length == found.length) { 120 assertEquals(expected[i], found[ [all...] |
/external/elfutils/tests/ |
H A D | get-aranges.c | 57 Dwarf_Arange *found; local 59 found = dwarf_getarange_addr (aranges, testaddr[i]); 60 if (found != NULL) 64 if (dwarf_getarangeinfo (found, NULL, NULL, &cu_offset) != 0)
|
/external/chromium/net/socket_stream/ |
H A D | socket_stream_throttle.cc | 3 // found in the LICENSE file. 49 ThrottleMap::const_iterator found = throttles_.find(scheme); local 50 if (found == throttles_.end()) { 56 return found->second;
|
/external/gtest/src/ |
H A D | gtest-typed-test.cc | 58 bool found = false; local 63 found = true; 68 if (found) { 72 << " can be found in this test case.\n";
|
/external/protobuf/gtest/src/ |
H A D | gtest-typed-test.cc | 58 bool found = false; local 63 found = true; 68 if (found) { 72 << " can be found in this test case.\n";
|
/external/e2fsprogs/ext2ed/ |
H A D | main.c | 354 * When an handling function is found, it is called along with the 360 int i,found=0; local 373 i<=current_type->type_commands.last_command && !found; 377 found=1; 383 if (!found) 384 for (i=0;i<=ext2_commands.last_command && !found;i++) { 387 found=1; 392 /* 3. If not found, search the general commands */ 394 if (!found) 395 for (i=0;i<=general_commands.last_command && !found; [all...] |
/external/bluetooth/glib/tests/ |
H A D | module-test.c | 48 compare (const gchar *desc, const gchar *expected, const gchar *found) argument 50 if (!expected && !found) 53 if (expected && found && strcmp (expected, found) == 0) 57 desc, expected ? expected : "NULL", found ? found : "NULL");
|
/external/elfutils/libelf/ |
H A D | nlist.c | 101 /* We haven't found anything. Fail. */ 104 /* Re-get the section header in case we found only the dynamic symbol 164 const struct hashentry *found; local 168 found = nlist_fshash_find (table, nl->n_name, 0, &search); 170 if (found != NULL) 173 nl->n_value = found->sym.st_value; 174 nl->n_scnum = found->sym.st_shndx; 175 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
|
/external/libvpx/vp8/common/ppc/ |
H A D | platform_altivec.asm | 5 ; that can be found in the LICENSE file in the root of the source 6 ; tree. An additional intellectual property rights grant can be found 8 ; be found in the AUTHORS file in the root of the source tree.
|
/external/libvpx/vp8/decoder/arm/armv5/ |
H A D | dequantize_v5.asm | 5 ; that can be found in the LICENSE file in the root of the source 6 ; tree. An additional intellectual property rights grant can be found 8 ; be found in the AUTHORS file in the root of the source tree.
|
/external/libvpx/vpx_ports/ |
H A D | emms.asm | 5 ; that can be found in the LICENSE file in the root of the source 6 ; tree. An additional intellectual property rights grant can be found 8 ; be found in the AUTHORS file in the root of the source tree.
|
/external/chromium/googleurl/ |
H A D | PRESUBMIT.py | 4 # found in the LICENSE file. 64 found = False 67 found = True 69 if found:
|
/external/elfutils/libdw/ |
H A D | libdw_findcu.c | 58 struct Dwarf_CU **found = tfind (&fake, &dbg->cu_tree, findcu_cb); local 59 if (found != NULL) 60 return *found;
|
/external/ipsec-tools/src/racoon/ |
H A D | throttle.c | 98 int found = 0; local 118 found = 1; 128 if (!found) {
|