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

12 3 4 5 6 7 8 91011>>

  /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
collections.py 312 seen = set()
319 or name in seen):
321 seen.add(name)
332 seen = set()
337 if name in seen:
339 seen.add(name)
  /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
collections.py 312 seen = set()
319 or name in seen):
321 seen.add(name)
332 seen = set()
337 if name in seen:
339 seen.add(name)
  /build/core/
node_fns.mk 224 $(if $($(1).$(_in).seen), \
227 $(eval $(1).$(_in).seen := true) \
  /external/chromium_org/third_party/sqlite/src/test/
make-where7.tcl 99 if {[info exists seen($w)]} {
103 set seen($w) 1
  /external/chromium_org/v8/test/cctest/compiler/
test-gap-resolver.cc 113 std::set<InstructionOperand*, InstructionOperandComparator> seen; local
116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) {
118 seen.insert(mo.destination());
  /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...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfiguration.java 387 * BSSID list on which this configuration was seen.
398 * it is seen with good RSSI, it is blacklisted faster)
486 public long age5; // timestamp of the strongest 5GHz BSSID (last time it was seen)
487 public long age24; // timestamp of the strongest 2.4GHz BSSID (last time it was seen)
567 if (result.seen == 0)
580 if ((now_ms - result.seen) > age) continue;
585 status.age5 = result.seen;
591 status.age24 = result.seen;
929 * most recent time we have seen this configuration
942 if (result.seen != 0
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Pipeline.py 66 def use_utility_code_definitions(scope, target, seen=None):
67 if seen is None:
68 seen = set()
71 if entry in seen:
74 seen.add(entry)
80 use_utility_code_definitions(entry.as_module, target, seen)
  /device/htc/flounder/audio/soundtrigger/
Android.mk 18 # device specific modules are present. The exact load order can be seen in
  /external/chromium_org/net/dns/
dns_response.cc 46 // 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/third_party/cython/src/Cython/Build/
Dependencies.py 71 seen = set()
79 if path not in seen:
80 seen.add(path)
83 if path not in seen:
84 seen.add(path)
549 seen = self._transitive_cache[extract, merge]
551 seen = self._transitive_cache[extract, merge] = {}
553 node, extract, merge, seen, {}, self.cimported_files)[0]
555 def transitive_merge_helper(self, node, extract, merge, seen, stack, outgoing):
556 if node in seen
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
anytrans.cpp 336 Hashtable seen(TRUE, ec);
352 if (seen.geti(target) != 0) continue;
354 seen.puti(target, 1, ec);
  /external/fio/engines/
posixaio.c 87 io_u->seen = 0;
117 if (io_u->seen || !(io_u->flags & IO_U_F_FLIGHT))
129 io_u->seen = 1;
  /external/chromium_org/components/translate/core/browser/
translate_prefs.cc 63 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/chromium_org/third_party/sqlite/src/src/
func.c 559 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 ){
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 70 * of BSSIDs on which that network is seen.
249 if (result.seen > mSeen) {
250 mSeen = result.seen;
337 if (result.seen > mSeen) {
338 mSeen = result.seen;
486 if (result.seen == 0)
503 // Ignore results seen, older than 20 seconds
504 if (now - result.seen > VISIBILITY_OUTDATED_AGE_IN_MILLI) continue;
662 // Add RSSI/band information for this config, what was seen up to 6 seconds ago
  /external/icu/icu4c/source/i18n/
anytrans.cpp 355 Hashtable seen(TRUE, ec);
371 if (seen.geti(target) != 0) continue;
373 seen.puti(target, 1, ec);
  /external/lldb/source/Breakpoint/
Breakpoint.cpp 365 // 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)
  /frameworks/base/services/core/java/com/android/server/
MmsServiceBroker.java 266 long timestampMillis, boolean seen, boolean read) throws RemoteException {
275 callingPkg, address, type, text, timestampMillis, seen, read);
280 String messageId, long timestampSecs, boolean seen, boolean read)
290 callingPkg, contentUri, messageId, timestampSecs, seen, read);
  /external/chromium_org/v8/test/webkit/
declaration-in-block.js 25 "This test checks that declarations in an if block can be seen outside it."
  /hardware/libhardware/modules/audio/
Android.mk 18 # device specific modules are present. The exact load order can be seen in
  /hardware/libhardware/modules/local_time/
Android.mk 23 # seen in libhardware/hardware.c
  /packages/services/Mms/src/com/android/mms/service/
MmsService.java 235 long timestampMillis, boolean seen, boolean read) {
238 return importSms(address, type, text, timestampMillis, seen, read, callingPkg);
243 String messageId, long timestampSecs, boolean seen, boolean read) {
246 return importMms(contentUri, messageId, timestampSecs, seen, read, callingPkg);
474 boolean seen, boolean read, String creator) {
492 values.put(Telephony.Sms.SEEN, seen ? 1 : 0);
513 boolean seen, boolean read, String creator) {
560 values.put(Telephony.Mms.READ, seen ? 1 : 0);
561 values.put(Telephony.Mms.SEEN, read ? 1 : 0)
    [all...]

Completed in 6154 milliseconds

12 3 4 5 6 7 8 91011>>