Searched defs:found (Results 26 - 50 of 862) sorted by relevance

1234567891011>>

/external/chromium_org/sandbox/win/src/
H A Dshared_handles.cc3 // found in the LICENSE file.
50 SharedItem* found = FindByTag(tag); local
51 if (NULL == found) {
54 *handle = found->item;
/external/chromium_org/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeRenderingTraversal.h70 ContainerNode* found = parent(node); local
71 return found && found->isElementNode() ? toElement(found) : 0;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DNodeSearch.h4 // found in the LICENSE file.
25 bool found() const { return mFound; } function in class:sh::NodeSearchTraverser
31 return searchTraverser.found();
/external/chromium_org/third_party/mesa/src/src/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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/tools/
H A Daudio_codec_speed_test.cc5 * 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.
77 size_t found; local
78 while ((found = out_filename.find('/')) != std::string::npos)
79 out_filename.replace(found, 1, "_");
/external/chromium_org/tools/gn/
H A Dimport_manager.cc3 // found in the LICENSE file.
62 ImportMap::const_iterator found = imports_.find(file); local
63 if (found != imports_.end())
64 imported_scope = found->second;
79 ImportMap::const_iterator found = imports_.find(file); local
80 if (found != imports_.end()) {
82 imported_scope = found->second;
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_procmaps_test.cc44 bool found = false; local
49 found = true;
52 EXPECT_TRUE(found);
/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/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/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dkeep-tracking.c29 int i, found; local
31 found = 0;
38 found += 1;
42 return found;
67 int found, err = -1; local
101 * First, test that a 'comm' event can be found when the event is
112 found = find_comm(evlist, comm);
113 if (found != 1) {
119 * Secondly, test that a 'comm' event can be found when the event is
134 found
[all...]
/external/llvm/utils/unittest/googletest/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/mesa3d/src/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/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/chromium_org/chrome/test/base/
H A Dtest_chrome_web_ui_controller_factory.cc3 // found in the LICENSE file.
54 FactoryOverridesMap::const_iterator found = local
56 return (found == factory_overrides_.end()) ? NULL : found->second;
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_unittest.cc3 // found in the LICENSE file.
59 bool found = false; local
60 status = leveldb->Get(key, &got_value, &found);
62 EXPECT_TRUE(found);
82 status = leveldb->Get(key, &got_value, &found);
84 EXPECT_FALSE(found);
113 bool found = false; local
114 status = transaction->Get(key, &got_value, &found);
116 EXPECT_TRUE(found);
119 found
211 bool found; local
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_script_cache_map.cc3 // found in the LICENSE file.
26 ResourceIDMap::const_iterator found = resource_ids_.find(url); local
27 if (found == resource_ids_.end())
29 return found->second;
/external/chromium_org/content/public/browser/
H A Dnotification_registrar.cc3 // found in the LICENSE file.
62 RecordVector::iterator found = std::find( local
64 DCHECK(found != registered_.end());
66 registered_.erase(found);
/external/chromium_org/net/url_request/
H A Durl_request_filter_unittest.cc3 // found in the LICENSE file.
72 scoped_refptr<URLRequestJob> found = local
74 EXPECT_EQ(job_a, found.get());
94 scoped_refptr<URLRequestJob> found = local
96 EXPECT_EQ(job_b, found.get());
118 scoped_refptr<URLRequestJob> found = local
120 EXPECT_EQ(job_c, found.get());
133 scoped_refptr<URLRequestJob> found = local
135 EXPECT_EQ(job_c, found.get());

Completed in 610 milliseconds

1234567891011>>