Searched defs:found (Results 1 - 25 of 417) sorted by relevance

1234567891011>>

/external/ipsec-tools/src/racoon/
H A Dthrottle.c98 int found = 0; local
118 found = 1;
128 if (!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/browser/extensions/
H A Dextension_management_apitest.cc3 // found in the LICENSE file.
17 Browser* found = NULL; local
22 found = *it;
25 return found;
/external/chromium/chrome/browser/history/
H A Dhistory_types_unittest.cc3 // found in the LICENSE file.
22 bool found = false; local
25 found = true;
30 EXPECT_TRUE(found) << "The URL had no index referring to it.";
/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)
/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/chromium/testing/gtest/src/
H A Dgtest-typed-test.cc70 bool found = false; local
75 found = true;
80 if (found) {
84 << " can be found in this test case.\n";
/external/e2fsprogs/lib/blkid/
H A Dresolve.c30 blkid_tag found; local
46 (found = blkid_find_tag_dev(dev, tagname)))
47 ret = blkid_strdup(found->bit_val);
/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/elfutils/libdw/
H A Dlibdw_findcu.c27 found in the source code files (the "Approved Interfaces"). The files
94 struct Dwarf_CU **found = tfind (&fake, &dbg->cu_tree, findcu_cb); local
95 if (found != NULL)
96 return *found;
/external/gtest/src/
H A Dgtest-typed-test.cc70 bool found = false; local
75 found = true;
80 if (found) {
84 << " can be found in this test case.\n";
/external/libmtp/examples/
H A Demptyfolders.c32 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/
H A Dtest-expander-users.c37 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[
[all...]
H A Dtest-linker-roles.c59 int found = 0; local
63 found++;
67 CU_ASSERT(found == 1);
/external/llvm/utils/unittest/googletest/
H A Dgtest-typed-test.cc70 bool found = false; local
75 found = true;
80 if (found) {
84 << " can be found in this test case.\n";
/external/openssh/
H A Dgroupaccess.c102 int i, found = 0; local
113 found = 1;
116 return found;
/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/oprofile/libutil++/
H A Dbfd_support.h77 * found in debuginfo files, we must run those debuginfo symbols
90 * find_separate_debug_file - return true if a valid separate debug file found
96 * Search order for debug file and use first one found:
135 bool found; member in struct:linenr_info
/external/protobuf/gtest/src/
H A Dgtest-typed-test.cc58 bool found = false; local
63 found = true;
68 if (found) {
72 << " can be found in this test case.\n";
/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/webkit/Source/WebKit/gtk/tests/
H A Dtestwebplugindatabase.c36 gboolean found = FALSE; local
48 found = TRUE;
54 g_assert(found);
/external/chromium/base/
H A Dprocess_util.cc3 // found in the LICENSE file.
48 ProcessEntries found; local
50 found.push_back(*process_entry);
52 return found;
/external/chromium/chrome/browser/chromeos/
H A Dsms_observer.cc3 // found in the LICENSE file.
41 bool found = false; local
45 found = true;
49 if (!found) {
/external/elfutils/tests/
H A Dget-aranges.c73 Dwarf_Arange *found; local
75 found = dwarf_getarange_addr (aranges, testaddr[i]);
76 if (found != NULL)
80 if (dwarf_getarangeinfo (found, NULL, NULL, &cu_offset) != 0)
/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;

Completed in 879 milliseconds

1234567891011>>