HomeSort by relevance Sort by last modified time
    Searched defs:found (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssl/crypto/bn/
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/webkit/Source/ThirdParty/ANGLE/src/compiler/
QualifierAlive.cpp 4 // 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/browser/
preferences_mock_mac.cc 3 // found in the LICENSE file.
27 Boolean found = CFDictionaryGetValueIfPresent(values_, local
30 if (!found || !value)
  /external/e2fsprogs/lib/ext2fs/
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/ipsec-tools/src/racoon/
throttle.c 98 int found = 0; local
118 found = 1;
128 if (!found) {
  /external/javassist/src/main/javassist/compiler/
KeywordTable.java 22 Object found = get(name); local
23 if (found == null)
26 return ((Integer)found).intValue();
SymbolTable.java 34 Declarator found = (Declarator)get(name); local
35 if (found == null && parent != null)
38 return found;
  /external/libmtp/examples/
emptyfolders.c 32 int found = 0; local
37 found = 1;
43 if(found == 0) { // no files claim this as a parent
100 printf("No folders found\n");
  /external/libsepol/tests/
test-expander-users.c 37 unsigned char *found; /* array of booleans of roles found */ local
38 int extra = 0; /* number of extra roles found */
42 printf("%s not found\n", user_name);
43 CU_FAIL("user not found");
46 found = calloc(num_roles, sizeof(unsigned char));
47 CU_ASSERT_FATAL(found != NULL);
54 found[j] += 1;
61 if (found[j] != 1) {
62 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j])
    [all...]
test-linker-roles.c 59 int found = 0; local
63 found++;
67 CU_ASSERT(found == 1);
  /external/openssh/
groupaccess.c 102 int i, found = 0; local
113 found = 1;
116 return found;
  /external/oprofile/libpp/
populate.cpp 39 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/protobuf/gtest/src/
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/webkit/Source/WebKit/gtk/tests/
testwebplugindatabase.c 36 gboolean found = FALSE; local
48 found = TRUE;
54 g_assert(found);
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 36 size_t found = fread((char*) buffer, 1, wanted, _file); local
40 return found;
in_memory_wrapper_input.cpp 30 size_t found = 0; local
36 while (found < wanted) {
38 return found;
40 buffer[found++] = _buffer[_pos++];
42 return found;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DelayedOperations.java 74 QueuedOperation found = null; local
77 found = qo;
81 if (found != null) {
82 found.cancel();
  /dalvik/libdex/
DexDataMap.cpp 126 int found = dexDataMapGet(map, offset); local
128 if (found == type) {
132 if (found < 0) {
133 ALOGE("No data map entry found @ %#x; expected %x",
136 ALOGE("Unexpected data map entry @ %#x: expected %x, found %x",
137 offset, type, found);
  /dalvik/vm/
Intern.cpp 73 StringObject* found; local
85 * A match was found in the literal table, the easy case.
87 found = literal;
96 * A match was found in the interned table. Move the
100 found = insertString(gDvm.literalStrings, key, interned);
101 assert(found == interned);
107 found = insertString(gDvm.literalStrings, key, strObj);
108 assert(found == strObj);
115 found = lookupString(gDvm.literalStrings, key, strObj);
116 if (found == NULL)
161 StringObject* found = lookupString(gDvm.internedStrings, key, strObj); local
    [all...]
  /development/host/windows/usb/api/
adb_object_handle.cpp 113 AdbObjectHandleMap::iterator found = the_map.find(adb_handle()); local
114 ATLASSERT((found != the_map.end()) && (this == found->second));
116 if ((found != the_map.end()) && (this == found->second)) {
118 the_map.erase(found);
155 AdbObjectHandleMap::iterator found = the_map.find(adb_hndl); local
156 if (found != the_map.end()) {
157 ret = found->second;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestJavaCodeGeneration.java 46 boolean found =
50 assertEquals(expecting, found);
59 boolean found =
63 assertEquals(expecting, found);
73 String found = execParser("T.g", grammar, "TParser", "TLexer", local
75 assertEquals("x\n", found);
85 String found = execParser("T.g", grammar, "TParser", "TLexer", local
87 assertEquals("x\n", found);
97 String found = execParser("T.g", grammar, "TParser", "TLexer", local
99 assertEquals("x\n", found);
    [all...]
TestSyntaxErrors.java 42 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "ae", false); local
56 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "abe", false); local
69 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "aaae", false); local
86 String found = execParser("T.g", grammar, "TParser", "TLexer", "a", "((i))z", false); local
  /external/chromium/base/
process_util.cc 3 // found in the LICENSE file.
48 ProcessEntries found; local
50 found.push_back(*process_entry);
52 return found;
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 3 // found in the LICENSE file.
42 bool found = false; local
45 found = true;
58 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
  /external/chromium/chrome/browser/chromeos/
sms_observer.cc 3 // found in the LICENSE file.
41 bool found = false; local
45 found = true;
49 if (!found) {

Completed in 984 milliseconds

1 2 3 4 5 6 7 8 91011>>