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

123

/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/openfst/src/include/fst/
H A Dsymbol-table-ops.h40 unordered_set<typename Arc::Label> seen; local
41 seen.insert(0); // Always keep epslion
48 seen.insert(sym);
54 if (seen.find(label) != seen.end()) {
/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/chromium_org/v8/src/compiler/
H A Dgap-resolver.cc31 std::set<InstructionOperand*, InstructionOperandComparator> seen; local
33 SLOW_DCHECK(seen.find(i->destination()) == seen.end());
34 seen.insert(i->destination());
/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/power/
H A Dprocess_power_collector.h54 void set_seen_this_cycle(bool seen) { seen_this_cycle_ = seen; } argument
/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/chromium_org/v8/test/cctest/compiler/
H A Dtest-gap-resolver.cc113 std::set<InstructionOperand*, InstructionOperandComparator> seen; local
116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
118 seen.insert(mo.destination());
/external/fio/
H A Dioengine.h84 unsigned int seen; member in union:io_u::__anon21429
/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.cc947 bool seen() const { function in class:extensions::__anon2887::CheckExtensionInstalledObserver
986 ASSERT_TRUE(should_install.seen());
1016 ASSERT_FALSE(should_not_install.seen());
1046 ASSERT_TRUE(should_install.seen());
1199 // A set of ids of apps we've seen open a app window.
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_prefs.cc63 std::set<std::string> seen; local
68 if (seen.find(language) == seen.end()) {
70 seen.insert(language);
78 if (seen.find(main_part) == seen.end()) {
80 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.cc561 bool seen[kLimit]; local
562 for (unsigned i = 0; i < kLimit; i++) seen[i] = false;
565 CHECK_EQ(seen[k], tree.Find(k, &loc)); \
570 if (seen[next]) {
571 // We've already seen this one. Check the value and remove
578 seen[next] = false;
587 seen[next] = true;
591 if (seen[val]) {
598 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;

Completed in 694 milliseconds

123