Searched refs:found (Results 1 - 25 of 684) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/compiler/
H A DKeywordTable.java22 Object found = get(name);
23 if (found == null)
26 return ((Integer)found).intValue();
H A DSymbolTable.java34 Declarator found = (Declarator)get(name);
35 if (found == null && parent != null)
38 return found;
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DQualifierAlive.cpp4 // found in the LICENSE file.
11 TAliveTraverser(TQualifier q) : TIntermTraverser(true, false, false, true), found(false), qualifier(q)
15 bool wasFound() { return found; }
18 bool found; member in class:TAliveTraverser
49 found = true;
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
H A Dmappy_content_script.js9 // Return null if none is found.
11 var found;
21 found = node;
27 if (found) {
29 if (found.childNodes.length) {
30 for (var i = 0; i < found.childNodes.length; ++i) {
31 text += found.childNodes[i].textContent + " ";
34 text = found.textContent;
38 console.log("found: " + match[0]);
42 console.log("bad initial match: " + found
[all...]
/external/chromium/net/socket_stream/
H A Dsocket_stream_job_manager.cc3 // found in the LICENSE file.
35 FactoryMap::const_iterator found = factories_.find(scheme); local
36 if (found != factories_.end()) {
37 SocketStreamJob* job = found->second(url, delegate);
52 FactoryMap::iterator found = factories_.find(scheme); local
53 if (found != factories_.end()) {
54 old_factory = found->second;
60 } else if (found != factories_.end()) {
61 factories_.erase(found);
/external/libvpx/build/make/
H A Darmlink_adapter.sh6 ## 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.
39 found=0
41 [ -f "$d/$f" ] && infiles="$infiles $d/$f" && found=1 && break
42 [ -f "$d/lib${f}.so" ] && infiles="$infiles $d/lib${f}.so" && found=1 && break
43 [ -f "$d/lib${f}.a" ] && infiles="$infiles $d/lib${f}.a" && found=1 && break
45 [ $found -eq 0 ] && infiles="$infiles $f"
/external/llvm/autoconf/m4/
H A Dfunc_isinf.m410 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>])
31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
H A Dfunc_isnan.m411 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
/external/llvm/projects/sample/autoconf/m4/
H A Dfunc_isinf.m410 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>])
31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
H A Dfunc_isnan.m411 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan function is found in <cmath>])
/external/webkit/Source/WebCore/storage/
H A DIDBTransactionCoordinator.cpp81 // Verifies internal consistiency while returning whether anything is found.
84 bool found = false; local
86 found = true;
88 ASSERT(!found);
89 found = true;
91 ASSERT(found == m_transactions.contains(transaction));
92 return found;
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java154 * 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 DBasicHeaderIterator.java105 boolean found = false;
106 while (!found && (from < to)) {
108 found = filterHeader(from);
110 return found ? from : -1;
H A DBasicListHeaderIterator.java113 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 DSchemeRegistry.java78 Scheme found = get(name);
79 if (found == null) {
83 return found;
120 Scheme found = registeredSchemes.get(name);
121 return found;
/external/v8/test/mjsunit/
H A Dmjsunit.js90 function fail(expected, found, name_opt) {
98 "> found <" + MjsUnitToString(found) + ">";
158 function assertSame(expected, found, name_opt) {
159 if (found !== expected) {
160 fail(expected, found, name_opt);
165 function assertEquals(expected, found, name_opt) {
166 if (!deepEquals(found, expected)) {
167 fail(expected, found, name_opt);
172 function assertArrayEquals(expected, found, name_op
[all...]
/external/oprofile/libpp/
H A Dpopulate.cpp39 bool found = false; local
48 found = true;
52 return found;
79 bool found = false; local
95 found = true;
100 if (found == true && ip.error == image_ok) {
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemChoose.java81 boolean found = false;
90 found = true;
111 found = true;
120 if (!found)
/external/e2fsprogs/lib/ext2fs/
H A Dlookup.c25 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 Dbn_depr.c74 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 Dftdebug.c170 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 DSkDisplayList.cpp62 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
/external/chromium/chrome/browser/history/
H A Dtop_sites_cache.cc3 // found in the LICENSE file.
41 std::map<GURL, Images>::const_iterator found = local
43 if (found != images_.end()) {
44 *bytes = found->second.thumbnail.get();
52 std::map<GURL, Images>::const_iterator found = local
54 if (found != images_.end()) {
55 *score = found->second.thumbnail_score;
/external/webkit/Source/WebCore/html/
H A DHTMLDetailsElement.cpp65 Node* found = findSummaryFor(this); local
66 if (found) {
68 return found;
72 found = findSummaryFor(shadowRoot());
73 ASSERT(found);
74 return found;
/external/chromium/chrome/browser/
H A Dpreferences_mock_mac.cc3 // found in the LICENSE file.
27 Boolean found = CFDictionaryGetValueIfPresent(values_, local
30 if (!found || !value)

Completed in 434 milliseconds

1234567891011>>