HomeSort by relevance Sort by last modified time
    Searched refs:seen (Results 26 - 50 of 800) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
Decoder.java 93 public DecoderException(byte seen, int pos) {
94 super(String.format("Unexpected byte %c seen at position %d", (char)seen, pos));
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 45 // If a non-mappable instruction is seen, this entire def-use graph is marked
69 ConstantRange seen(Instruction *I, ConstantRange R);
152 ConstantRange Float2Int::seen(Instruction *I, ConstantRange R) { function in class:Float2Int
195 // Seen already.
202 seen(I, badRange());
210 seen(I, validateRange(ConstantRange(Min, Max)));
219 seen(I, validateRange(ConstantRange(SMin, SMax)));
229 seen(I, unknownRange());
241 seen(I, badRange());
247 // Walk forwards down the list of seen instructions, so we visit defs befor
    [all...]
PlaceSafepoints.cpp 283 std::set<BasicBlock *> &seen,
299 if (seen.count(Succ) == 0) {
301 seen.insert(Succ);
309 std::set<BasicBlock *> &seen) {
312 seen.insert(start->getParent());
313 scanOneBB(start, end, calls, seen, worklist);
317 scanOneBB(&*BB->begin(), end, calls, seen, worklist);
479 std::set<T> seen; local
484 if (seen.insert(V).second) {
    [all...]
  /external/gmock/src/
gmock-matchers.cc 208 // '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) {
261 if ((*seen)[irhs])
266 (*seen)[irhs] = 1
    [all...]
  /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...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
ModelTest.java 183 BitSet seen = new BitSet(ITEM_COUNT); local
193 seen.set(c.getPosition());
197 assertEquals(ITEM_COUNT, seen.cardinality());
210 BitSet seen = new BitSet(ITEM_COUNT); local
214 seen.set(c.getPosition());
221 assertEquals(ITEM_COUNT, seen.cardinality());
245 BitSet seen = new BitSet(ITEM_COUNT); local
251 seen.set(cOut.getPosition());
259 // Reset the previous size seen, because documents are bucketed separately by
271 assertEquals(ITEM_COUNT, seen.cardinality())
    [all...]
  /external/opencv3/modules/ts/misc/
perf_tests_timing.py 29 seen = set() variable
34 files.extend([ x for x in flist if x not in seen and not seen.add(x)])
37 if fname not in seen and not seen.add(fname):
report.py 30 seen = set() variable
31 files = [ x for x in files if x not in seen and not seen.add(x)]
  /external/autotest/client/cros/
liststorage.py 116 seen = False
122 seen = True # at least one match occurred
138 if not seen:
  /external/deqp/scripts/egl/
proc_address_tests.py 93 seen = set()
96 if not name in seen:
98 seen.add(name)
  /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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixpath.py 372 def _joinrealpath(path, rest, seen):
396 if newpath in seen:
397 # Already seen this path
398 path = seen[newpath]
405 seen[newpath] = None # not resolved symlink
406 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
409 seen[newpath] = path # resolved symlink
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixpath.py 372 def _joinrealpath(path, rest, seen):
396 if newpath in seen:
397 # Already seen this path
398 path = seen[newpath]
405 seen[newpath] = None # not resolved symlink
406 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
409 seen[newpath] = path # resolved symlink
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixpath.py 372 def _joinrealpath(path, rest, seen):
396 if newpath in seen:
397 # Already seen this path
398 path = seen[newpath]
405 seen[newpath] = None # not resolved symlink
406 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
409 seen[newpath] = path # resolved symlink
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixpath.py 372 def _joinrealpath(path, rest, seen):
396 if newpath in seen:
397 # Already seen this path
398 path = seen[newpath]
405 seen[newpath] = None # not resolved symlink
406 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
409 seen[newpath] = path # resolved symlink
  /build/core/
node_fns.mk 224 $(if $($(1).$(_in).seen), \
227 $(eval $(1).$(_in).seen := true) \
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 131 * this result was last seen.
136 * Timestamp representing date when this result was last seen, in milliseconds from 1970
139 public long seen; field in class:ScanResult
156 if (seen == 0) {
157 seen = System.currentTimeMillis();
159 long age = seen - previousSeen;
162 // Average the RSSI with previously seen instances of this scan result
450 seen = source.seen;
528 dest.writeLong(seen);
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
Dot.py 147 seen = set()
156 seen.add(node)
158 for head in seen:
159 for tail in (n for n in edgefn(head) if n in seen):
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 169 std::set<InstructionOperand, CompareOperandModuloType> seen; local
172 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
174 seen.insert(mo.destination());
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ScanDetail.java 53 //mScanResult.seen = mSeen;
66 long tsf, long seen) {
69 mSeen = seen;
70 //mScanResult.seen = mSeen;
83 mSeen = mScanResult.seen;
107 //mScanResult.seen = mSeen;
183 * Return the time this network was last seen.
190 * Update the time this network was last seen to the current system time.
194 mScanResult.seen = mSeen;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 309 Set<String> seen = Sets.newHashSet(); local
311 checkDir(new File(git, "packages" + File.separator + "apps"), false, attributeMap, seen);
315 Map<String, AttributeInfo> map, Set<String> seen) throws IOException {
321 checkXmlFile(file, map, seen);
323 checkDir(file, isResourceDir || file.getName().equals("res"), map, seen);
330 Set<String> seen) throws IOException {
336 checkElement(file, doc.getDocumentElement(), map, seen);
342 Set<String> seen) {
373 if (!seen.contains(name)) {
374 seen.add(name)
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/
testharness.js 186 function format_value(val, seen)
188 if (!seen) {
189 seen = [];
192 if (seen.indexOf(val) >= 0) {
195 seen.push(val);
198 return "[" + val.map(function(x) {return format_value(x, seen);}).join(", ") + "]";
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
auth.py 110 seen = set()
112 return [a for a in attrs if a not in seen and not seen.add(a)]
120 seen = set()
122 return [a for a in attrs if a not in seen and not seen.add(a)]
  /external/elfutils/libdwfl/
dwfl_frame.c 306 bool seen; local
316 if (! oa->seen && INTUSE(dwfl_thread_tid) (thread) == oa->tid)
318 oa->seen = true;
367 .arg = arg, .seen = false };
370 if (err == DWARF_CB_ABORT && oa.seen)
373 if (err == DWARF_CB_OK && ! oa.seen)
  /frameworks/base/services/core/java/com/android/server/
MmsServiceBroker.java 144 long timestampMillis, boolean seen, boolean read) throws RemoteException {
150 long timestampSecs, boolean seen, boolean read) throws RemoteException {
374 long timestampMillis, boolean seen, boolean read) throws RemoteException {
382 callingPkg, address, type, text, timestampMillis, seen, read);
387 String messageId, long timestampSecs, boolean seen, boolean read)
396 callingPkg, contentUri, messageId, timestampSecs, seen, read);

Completed in 667 milliseconds

12 3 4 5 6 7 8 91011>>