HomeSort by relevance Sort by last modified time
    Searched refs:seen (Results 1 - 25 of 312) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/make/
filter-inputs 17 seen = set()
20 if base not in seen:
21 seen.add(base)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
ea-nonzero.asm 2 ; Also tests that this isn't seen as a circular reference.
  /external/chromium_org/tools/
include_tracer.py 140 def Walk(seen, filename, parent, indent):
156 if filename in seen:
158 seen.add(filename)
184 seen, line.split('"')[1], resolved_filename, indent + 2)
188 seen, include, resolved_filename, indent + 2)
191 seen, line.split('"')[1], resolved_filename, indent + 2)
  /external/lldb/test/pexpect-2.4/examples/
ssh_session.py 50 seen = child.expect(self.keys)
52 if seen == 0:
54 seen = child.expect(self.keys)
55 if seen == 1:
63 seen = child.expect(self.keys)
64 if seen == 2:
89 seen = self.ssh("/bin/ls -ld %s" % file)
90 if string.find(seen, "No such file") > -1:
93 return seen.split()[0] # Return permission field of listing.
  /external/openfst/src/include/fst/
symbol-table-ops.h 40 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/tools/android/findbugs_plugin/src/org/chromium/tools/findbugs/plugin/
SynchronizedThisDetector.java 39 public void sawOpcode(int seen) {
40 if (PATTERN[mStep] == seen) {
52 switch (seen) {
  /development/tools/elftree/
elftree.c 51 struct seen { struct
53 struct seen *next;
58 struct seen *seen; member in struct:tree_state
61 static int seen(struct tree_state *t, char *name) function
63 struct seen *s;
65 for (s = t->seen; s; s = s->next) {
75 struct seen *s = malloc(sizeof(*s));
78 s->next = t->seen;
79 t->seen = s
    [all...]
  /external/chromium_org/base/files/
dir_reader_posix_unittest.cc 45 std::set<unsigned> seen; local
72 EXPECT_EQ(0u, seen.count(value));
73 seen.insert(value);
89 EXPECT_EQ(kNumFiles, seen.size());
  /frameworks/base/test-runner/src/android/test/
TestCaseUtil.java 58 Set<Class<?>> seen) {
71 seen);
83 testCases.addAll(getTests(childTest, flatten, seen));
96 Set<Class<?>> seen) {
107 && !seen.contains(testClass)) {
108 seen.add(testClass);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
predicates.rb 14 /* With this true, enum is seen as a keyword. False, it's an identifier */
  /external/chromium_org/v8/src/compiler/
gap-resolver.cc 31 std::set<InstructionOperand*, InstructionOperandComparator> seen; local
33 SLOW_DCHECK(seen.find(i->destination()) == seen.end());
34 seen.insert(i->destination());
  /external/chromium_org/chrome/browser/power/
process_power_collector.h 54 void set_seen_this_cycle(bool seen) { seen_this_cycle_ = seen; }
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 63 * this result was last seen.
68 * Timestamp representing date when this result was last seen, in milliseconds from 1970
71 public long seen; field in class:ScanResult
88 if (seen == 0) {
89 seen = System.currentTimeMillis();
91 long age = seen - previousSeen;
94 // Average the RSSI with previously seen instances of this scan result
266 seen = source.seen;
332 dest.writeLong(seen);
    [all...]
  /external/chromium_org/tools/grit/grit/format/
rc_header.py 58 seen = set()
63 if tid in tids and tid not in seen:
64 seen.add(tid)
74 if tid in tids and tid not in seen:
75 seen.add(tid)
resource_map.py 110 seen = set()
118 if tid not in tids or key in seen:
120 seen.add(key)
  /external/guava/guava-tests/test/com/google/common/io/
CharStreamsTest.java 107 int seen;
110 seen++;
115 return seen;
123 int seen;
126 seen++;
131 return seen;
140 int seen;
143 seen++;
145 return seen < 2;
149 return seen;
    [all...]
  /external/jemalloc/test/unit/
ckh.c 148 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", j)
    [all...]
  /external/chromium_org/third_party/re2/re2/
make_unicode_casefold.py 113 seen = {}
118 if c[i-1] in seen:
120 seen[c[i-1]] = True
  /external/regex-re2/re2/
make_unicode_casefold.py 113 seen = {}
118 if c[i-1] in seen:
120 seen[c[i-1]] = True
  /external/libsepol/src/
module.c 456 /* 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 |= SEEN_NETFILTER
655 unsigned i, seen = 0; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IMms.aidl 78 * @param seen if the message is seen
83 long timestampMillis, boolean seen, boolean read);
92 * @param seen if the message is seen
97 long timestampSecs, boolean seen, boolean read);
  /external/chromium_org/third_party/sqlite/src/tool/
fragck.tcl 108 global seen
111 if {[info exists seen($pg)]} return
112 set seen($pg) 1
  /external/ltrace/
dict.c 233 /* 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)
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), seen)
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
notify.c 60 int seen = 0; local
68 if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1;
69 assert( p2->xUnlockNotify==p->xUnlockNotify || !seen );
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 87 * @see UIProvider.ConversationColumns#SEEN
89 public boolean seen; field in class:Conversation
187 dest.writeInt(seen ? 1 : 0);
213 seen = (in.readInt() != 0);
289 seen = cursor.getInt(UIProvider.CONVERSATION_SEEN_COLUMN) != 0;
328 seen = other.seen;
351 boolean seen, boolean starred, FolderList rawFolders, int convFlags, int personalLevel,
367 this.seen = seen;
    [all...]

Completed in 664 milliseconds

1 2 3 4 5 6 7 8 91011>>