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

12345678

/external/compiler-rt/make/
H A Dfilter-inputs17 seen = set()
20 if base not in seen:
21 seen.add(base)
/external/linux-kselftest/tools/testing/selftests/
H A Dkselftest_harness.h325 * ASSERT_EQ(expected, seen)
328 * @seen: measured value
332 #define ASSERT_EQ(expected, seen) \
333 __EXPECT(expected, seen, ==, 1)
336 * ASSERT_NE(expected, seen)
339 * @seen: measured value
343 #define ASSERT_NE(expected, seen) \
344 __EXPECT(expected, seen, !=, 1)
347 * ASSERT_LT(expected, seen)
350 * @seen
[all...]
/external/pdfium/core/fxcrt/
H A Dfx_random_unittest.cpp18 std::set<std::array<uint32_t, 16>> seen; local
22 EXPECT_TRUE(seen.insert(current).second);
/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/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/tensorflow/tensorflow/core/lib/core/
H A Dbitmap_test.cc82 int seen = 0; local
88 seen++;
91 EXPECT_EQ(seen, n - one_count) << " " << bitmap.ToString();
112 int seen = 0; local
118 seen++;
122 EXPECT_EQ(seen, zero_bits) << " " << bitmap.ToString();
/external/perfetto/src/traced/probes/filesystem/
H A Dfile_scanner_unittest.cc99 uint64_t seen = 0; local
102 [&seen](BlockDeviceID, Inode, const std::string&,
104 ++seen;
112 EXPECT_EQ(seen, 1u);
117 uint64_t seen = 0; local
120 [&seen](BlockDeviceID, Inode, const std::string&,
122 ++seen;
132 EXPECT_EQ(seen, 1u);
/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/tensorflow/tensorflow/tools/docs/
H A Dpy_guide_parser.py49 seen = set()
65 if tag in seen:
69 if candidate not in seen:
72 seen.add(tag)
/external/turbine/java/com/google/turbine/binder/env/
H A DLazyEnv.java45 private final LinkedHashSet<S> seen = new LinkedHashSet<>(); field in class:LazyEnv
69 if (!seen.add(sym)) {
70 throw new LazyBindingError(Joiner.on(" -> ").join(seen) + " -> " + sym);
73 seen.remove(sym);
/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/valgrind/coregrind/m_demangle/
H A Drust-demangle.c164 char seen[16]; local
172 memset (seen, 0, sizeof(seen));
175 seen[*str - '0'] = 1;
177 seen[*str - 'a' + 10] = 1;
181 /* Count how many distinct digits seen */
184 if (seen[i])
/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/libevent/test/
H A Dregress_testutils.h36 int seen; member in struct:regress_dns_server_table
/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/python/cpython2/Lib/
H A Drlcompleter.py105 seen = {"__builtins__"}
109 seen.add(word)
113 if word[:n] == text and word not in seen:
114 seen.add(word)
/external/python/cpython3/Lib/
H A Drlcompleter.py111 seen = {"__builtins__"}
115 seen.add(word)
125 if word[:n] == text and word not in seen:
126 seen.add(word)
/external/selinux/python/sepolicy/sepolicy/
H A Dtransition.py41 self.seen = []
65 if name in self.seen:
67 self.seen.append(name)
83 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/tensorflow/tensorflow/core/common_runtime/
H A Ddevice_set.cc76 std::set<string> seen; local
79 if (seen.insert(t).second) {
/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.c112 unsigned int *const seen,
115 if (!pfd->revents || pfd->fd < 0 || *seen > abbrev)
118 if (*seen)
120 ++(*seen);
122 if (*seen > abbrev) {
156 unsigned int seen = 0; local
159 print_pollfd_exiting(&pfd[i], &seen, abbrev);
111 print_pollfd_exiting(const struct pollfd *const pfd, unsigned int *const seen, const unsigned int abbrev) argument
/external/strace/tests-m32/
H A Dpoll.c112 unsigned int *const seen,
115 if (!pfd->revents || pfd->fd < 0 || *seen > abbrev)
118 if (*seen)
120 ++(*seen);
122 if (*seen > abbrev) {
156 unsigned int seen = 0; local
159 print_pollfd_exiting(&pfd[i], &seen, abbrev);
111 print_pollfd_exiting(const struct pollfd *const pfd, unsigned int *const seen, const unsigned int abbrev) argument

Completed in 2846 milliseconds

12345678