Searched refs:seen (Results 1 - 25 of 134) sorted by relevance

123456

/external/compiler-rt/make/
H A Dfilter-inputs17 seen = set()
20 if base not in seen:
21 seen.add(base)
/external/google-breakpad/src/client/linux/minidump_writer/
H A Ddirectory_reader_unittest.cc63 unsigned seen = 0; local
68 seen++;
76 ASSERT_EQ(dent_set.size(), seen);
/external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph_tests/
H A Dtest_graphutil.py12 seen = set()
17 self.assertTrue((h, t) not in seen)
18 seen.add((h, t))
24 seen = set()
29 if (h, t) in seen:
31 seen.add((h, t))
40 seen = set()
44 self.assertFalse((h, t) in seen)
47 seen.add((h, t))
/external/autotest/client/site_tests/security_SysVIPC/
H A Dsecurity_SysVIPC.py51 seen = set()
59 seen.add(ShmRecord(owner=owner, perms=perms, attached=attached))
60 return seen
65 seen = set()
69 seen.add(SemaphoreRecord(owner=fields[2], perms=fields[3]))
70 return seen
/external/linux-kselftest/tools/testing/selftests/sysctl/
H A Dcommon_tests19 local seen
20 seen=$(cat "$1")
21 if [ "${seen}" != "${TEST_STR}" ]; then
/external/libchrome/base/files/
H A Ddir_reader_posix_unittest.cc48 std::set<unsigned> seen; local
75 EXPECT_EQ(0u, seen.count(value));
76 seen.insert(value);
92 EXPECT_EQ(kNumFiles, seen.size());
/external/guava/guava-tests/test/com/google/common/io/
H A DCharStreamsTest.java74 int seen;
77 seen++;
82 return seen;
91 int seen;
94 seen++;
99 return seen;
109 int seen;
112 seen++;
114 return seen < 2;
118 return seen;
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-config/
H A Dfind-cycles.pl111 my %seen;
113 unless ($seen{$cycle}) {
114 $seen{$cycle} = 1;
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dpredicates.rb14 /* With this true, enum is seen as a keyword. False, it's an identifier */
/external/linux-kselftest/tools/testing/selftests/powerpc/scripts/
H A Dhmi.sh84 echo "Haven't seen expected $expected_hmis recoveries after 1 min. Aborting."
/external/selinux/python/sepolicy/sepolicy/
H A Dtransition.py39 self.seen = []
63 if name in self.seen:
65 self.seen.append(name)
81 self.seen = []
/external/autotest/client/site_tests/platform_StackProtector/
H A Dplatform_StackProtector.py69 seen = set(badfiles.splitlines())
70 diff = seen.difference(self.load_whitelist())
/external/autotest/client/site_tests/security_RootCA/
H A Dsecurity_RootCA.py171 seen = {}
175 seen['nss'] = nss_store
177 seen['openssl'] = openssl_store
179 # Merge all 4 dictionaries (seen-nss, seen-openssl, expected-nss,
184 for store in seen.keys():
185 for certdict in [expected, seen]:
189 for store in seen.keys():
190 missing = expected[store].difference(seen[store])
191 unexpected = seen[stor
[all...]
/external/jemalloc/test/unit/
H A Dckh.c157 bool seen[NITEMS]; local
160 memset(seen, 0, sizeof(seen));
169 assert_false(seen[k],
170 "Item %zu already seen", k);
171 seen[k] = true;
178 assert_true(seen[j], "Item %zu not seen", j);
180 assert_false(seen[j], "Item %zu seen",
[all...]
/external/strace/tests/
H A Dpoll.c109 unsigned int *const seen,
112 if (!pfd->revents || pfd->fd < 0 || *seen > abbrev)
115 if (*seen)
117 ++(*seen);
119 if (*seen > abbrev) {
153 unsigned int seen = 0; local
156 print_pollfd_exiting(&pfd[i], &seen, abbrev);
108 print_pollfd_exiting(const struct pollfd *const pfd, unsigned int *const seen, const unsigned int abbrev) argument
/external/strace/tests-m32/
H A Dpoll.c109 unsigned int *const seen,
112 if (!pfd->revents || pfd->fd < 0 || *seen > abbrev)
115 if (*seen)
117 ++(*seen);
119 if (*seen > abbrev) {
153 unsigned int seen = 0; local
156 print_pollfd_exiting(&pfd[i], &seen, abbrev);
108 print_pollfd_exiting(const struct pollfd *const pfd, unsigned int *const seen, const unsigned int abbrev) argument
/external/strace/tests-mx32/
H A Dpoll.c109 unsigned int *const seen,
112 if (!pfd->revents || pfd->fd < 0 || *seen > abbrev)
115 if (*seen)
117 ++(*seen);
119 if (*seen > abbrev) {
153 unsigned int seen = 0; local
156 print_pollfd_exiting(&pfd[i], &seen, abbrev);
108 print_pollfd_exiting(const struct pollfd *const pfd, unsigned int *const seen, const unsigned int abbrev) argument
/external/deqp/scripts/egl/
H A Dproc_address_tests.py93 seen = set()
96 if not name in seen:
98 seen.add(name)
/external/regex-re2/re2/
H A Dmake_unicode_casefold.py113 seen = {}
118 if c[i-1] in seen:
120 seen[c[i-1]] = True
/external/selinux/libsepol/src/
H A Dmodule.c457 /* Flags for which sections have been seen during parsing of module package. */
471 unsigned i, seen = 0; local
505 if (seen & SEEN_FC) {
529 seen |= SEEN_FC;
532 if (seen & SEEN_SEUSER) {
552 seen |= SEEN_SEUSER;
555 if (seen & SEEN_USER_EXTRA) {
577 seen |= SEEN_USER_EXTRA;
580 if (seen & SEEN_NETFILTER) {
604 seen |
656 unsigned i, seen = 0; local
[all...]
/external/llvm/include/llvm/Transforms/Scalar/
H A DFloat2Int.h34 ConstantRange seen(Instruction *I, ConstantRange R);
/external/toybox/toys/posix/
H A Dprintf.c86 int seen = 0; local
110 seen = sprintf(to, "*.*%c", c);;
142 if (!seen || !*arg) break;
/external/googletest/googlemock/src/
H A Dgmock-matchers.cc208 // 'seen' is used for path finding { 0: unseen, 1: seen }.
209 ::std::vector<char> seen; local
227 // 'seen' initialized to 'graph_->RhsSize()' copies of 0.
228 seen.assign(graph_->RhsSize(), 0);
229 TryAugment(ilhs, &seen);
247 // flow was added to the network. The 'seen' vector elements correspond
259 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { argument
261 if ((*seen)[irhs])
266 (*seen)[irh
[all...]
/external/v8/testing/gmock/src/
H A Dgmock-matchers.cc208 // 'seen' is used for path finding { 0: unseen, 1: seen }.
209 ::std::vector<char> seen; local
227 // 'seen' initialized to 'graph_->RhsSize()' copies of 0.
228 seen.assign(graph_->RhsSize(), 0);
229 TryAugment(ilhs, &seen);
247 // flow was added to the network. The 'seen' vector elements correspond
259 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { argument
261 if ((*seen)[irhs])
266 (*seen)[irh
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp43 // If a non-mappable instruction is seen, this entire def-use graph is marked
140 ConstantRange Float2IntPass::seen(Instruction *I, ConstantRange R) { function in class:Float2IntPass
190 seen(I, badRange());
198 seen(I, validateRange(ConstantRange(Min, Max)));
207 seen(I, validateRange(ConstantRange(SMin, SMax)));
217 seen(I, unknownRange());
229 seen(I, badRange());
235 // Walk forwards down the list of seen instructions, so we visit defs before
297 "def not seen before use!");
317 seen(
[all...]

Completed in 811 milliseconds

123456