Searched defs:seen (Results 1 - 25 of 48) sorted by relevance

12

/external/chromium_org/v8/test/webkit/fast/js/
H A DJSON-parse-reviver.js117 if (seen) {
122 seen = true;
172 var seen = false; variable
/external/chromium_org/base/files/
H A Ddir_reader_posix_unittest.cc45 std::set<unsigned> seen; local
72 EXPECT_EQ(0u, seen.count(value));
73 seen.insert(value);
89 EXPECT_EQ(kNumFiles, seen.size());
/external/chromium_org/tools/android/findbugs_plugin/src/org/chromium/tools/findbugs/plugin/
H A DSynchronizedThisDetector.java39 public void sawOpcode(int seen) { argument
40 if (PATTERN[mStep] == seen) {
52 switch (seen) {
/external/jemalloc/test/unit/
H A Dckh.c148 bool seen[NITEMS]; local
151 memset(seen, 0, sizeof(seen));
161 assert_false(seen[k],
162 "Item %zu already seen", k);
163 seen[k] = true;
170 assert_true(seen[j], "Item %zu not seen", j);
172 assert_false(seen[j], "Item %zu seen",
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dnotify.c60 int seen = 0; local
68 if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1;
69 assert( p2->xUnlockNotify==p->xUnlockNotify || !seen );
H A Dfunc.c559 int seen; local
613 seen = 0;
623 if( c==']' ) seen = 1;
629 if( c>=prior_c && c<=c2 ) seen = 1;
633 seen = 1;
639 if( c2==0 || (seen ^ invert)==0 ){
1216 u8 overflow; /* True if integer overflow seen */
H A Dtest_quota.c198 int seen; local
225 seen = 0;
235 if( c==']' ) seen = 1;
241 if( c>=prior_c && c<=c2 ) seen = 1;
245 seen = 1;
251 if( c2==0 || (seen ^ invert)==0 ) return 0;
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_shared_settings_service.cc199 // We keep a map from MU ID to the set of keys that we have seen in the
241 const std::set<std::string>& seen = seen_keys[it.key()]; local
243 // We only need to upload settings that we haven't seen in the initial
245 if (seen.count(jt.key()) > 0)
/external/chromium_org/net/dns/
H A Ddns_response.cc46 // Count number of seen bytes to detect loops.
47 unsigned seen = 0; local
71 seen += sizeof(uint16);
72 // If seen the whole packet, then we must be in a loop.
73 if (seen > length_)
101 seen += 1 + label_len;
302 // Following the CNAME chain, only if no addresses seen.
/external/fio/
H A Dioengine.h84 unsigned int seen; member in union:io_u::__anon20625
/external/libsepol/src/
H A Dmodule.c456 /* Flags for which sections have been seen during parsing of module package. */
470 unsigned i, seen = 0; local
504 if (seen & SEEN_FC) {
528 seen |= SEEN_FC;
531 if (seen & SEEN_SEUSER) {
551 seen |= SEEN_SEUSER;
554 if (seen & SEEN_USER_EXTRA) {
576 seen |= SEEN_USER_EXTRA;
579 if (seen & SEEN_NETFILTER) {
603 seen |
655 unsigned i, seen = 0; local
[all...]
/external/chromium_org/chrome/browser/apps/
H A Dapp_browsertest.cc936 bool seen() const { function in class:extensions::__anon2821::CheckExtensionInstalledObserver
975 ASSERT_TRUE(should_install.seen());
1005 ASSERT_FALSE(should_not_install.seen());
1035 ASSERT_TRUE(should_install.seen());
1142 // A set of ids of apps we've seen open a app window.
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_prefs.cc57 std::set<std::string> seen; local
62 if (seen.find(language) == seen.end()) {
64 seen.insert(language);
72 if (seen.find(main_part) == seen.end()) {
74 seen.insert(main_part);
/external/guava/guava/src/com/google/common/collect/
H A DStandardTable.java877 final Map<C, V> seen = factory.get(); field in class:StandardTable.ColumnKeyIterator
885 if (!seen.containsKey(entry.getKey())) {
886 seen.put(entry.getKey(), entry.getValue());
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-top.c697 static struct intlist *seen; local
699 if (!seen)
700 seen = intlist__new(NULL);
702 if (!intlist__has_entry(seen, sample->pid)) {
705 intlist__add(seen, sample->pid);
/external/ltrace/
H A Ddict.c233 /* If there is a loop, but we've seen an erased
509 char *seen = data; local
510 assert(seen[*key] == 0);
511 seen[*key] = 1;
523 verify(struct dict *di, size_t len, char *seen) argument
527 for (it = NULL; (it = DICT_EACH(di, int, int, it, dump, seen)) != NULL;)
530 memset(seen, 0, len);
547 char seen[100000] = {}; local
549 for (i = 0; i < sizeof(seen); ++i) {
559 verify(&di, sizeof(seen), see
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dexpr.c1452 int seen = 0; local
1477 if (seen)
1480 seen = 1;
1491 int seen = 0; local
1506 if (seen) {
1510 seen = 1;
/external/chromium_org/v8/test/cctest/
H A Dtest-regexp.cc575 bool seen[kLimit]; local
576 for (unsigned i = 0; i < kLimit; i++) seen[i] = false;
579 CHECK_EQ(seen[k], tree.Find(k, &loc)); \
584 if (seen[next]) {
585 // We've already seen this one. Check the value and remove
592 seen[next] = false;
601 seen[next] = true;
605 if (seen[val]) {
612 if (seen[val]) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dmachine.c197 static struct strlist *seen; local
199 if (!seen)
200 seen = strlist__new(true, NULL);
202 if (!strlist__has_entry(seen, path)) {
204 strlist__add(seen, path);
/external/lldb/source/Breakpoint/
H A DBreakpoint.cpp365 // for that module, we mark the module as "seen" and we don't try to re-resolve
378 bool seen = false; local
391 if (!seen)
392 seen = true;
404 if (!seen)
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dlocaltime.c1888 int seen[TZ_MAX_TYPES]; local
1920 seen[i] = FALSE;
1923 if (!seen[sp->types[i]]) {
1924 seen[sp->types[i]] = TRUE;
/external/chromium_org/third_party/openssl/openssl/apps/
H A Ds_client.c1500 int seen = 0; local
1504 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1505 mbuf[seen] = 0;
1510 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1511 mbuf[seen] = 0;
1514 seen = BIO_read(sbio,sbuf,BUFSIZZ);
1515 sbuf[seen] = 0;
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c1888 int seen[TZ_MAX_TYPES]; local
1920 seen[i] = FALSE;
1923 if (!seen[sp->types[i]]) {
1924 seen[sp->types[i]] = TRUE;
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp1225 SmallPtrSet<const MachineBasicBlock*, 8> seen; local
1229 seen.clear();
1236 seen.insert(Pre);
1246 if (!seen.count(*PrI)) {
/external/openssl/apps/
H A Ds_client.c1527 int seen = 0; local
1531 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1532 mbuf[seen] = 0;
1537 seen = BIO_read(sbio,mbuf,BUFSIZZ);
1538 mbuf[seen] = 0;
1541 seen = BIO_read(sbio,sbuf,BUFSIZZ);
1542 sbuf[seen] = 0;

Completed in 1489 milliseconds

12