HomeSort by relevance Sort by last modified time
    Searched refs:seen (Results 76 - 100 of 1475) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/chan/
doubleselect.go 50 seen := make(map[int]bool)
53 if _, ok := seen[v]; ok {
57 seen[v] = true
  /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/make/core/
node_fns.mk 224 $(if $($(1).$(_in).seen), \
227 $(eval $(1).$(_in).seen := true) \
  /dalvik/dx/tests/127-merge-stress/com/android/dx/merge/
MergeTest.java 71 HashSet<Integer> seen = new HashSet<>(); local
84 if (!seen.add(fileNames.hashCode())) {
85 // Skip, already seen set of file names with the same hash.
  /external/chromium-trace/catapult/devil/devil/utils/
lsusb.py 89 'Expected bus_id value: %r, seen %r', bus_id, m.group(1))
92 'Expected dev_id value: %r, seen %r', dev_id, m.group(2))
  /frameworks/minikin/libs/minikin/
LocaleListCache.cpp 83 std::unordered_set<uint64_t> seen; local
93 const bool isNewLocale = seen.insert(locale.getIdentifier()).second;
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/src/libgo4/
libgo4.go 45 // Return the number of SIGIO signals seen.
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/src/libgo4/
libgo4.go 45 // Return the number of SIGIO signals seen.
  /external/scapy/scapy/modules/
nmap.py 131 def nmap_match_one_sig(seen, ref):
133 for key, val in six.iteritems(seen))
134 if cnt == 0 and seen.get("Resp") == "N":
136 return float(cnt) / len(seen)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
deadstore.go 141 seen := make(map[GCNode]bool)
156 // If we haven't seen the auto yet
159 if !seen[n] {
169 seen[n] = true
178 if seen[n] {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
deadstore.go 141 seen := make(map[GCNode]bool)
156 // If we haven't seen the auto yet
159 if !seen[n] {
169 seen[n] = true
178 if seen[n] {
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
structtag.go 27 var seen map[[2]string]token.Pos
29 checkCanonicalFieldTag(f, field, &seen)
37 func checkCanonicalFieldTag(f *File, field *ast.Field, seen *map[[2]string]token.Pos) {
78 if *seen == nil {
79 *seen = map[[2]string]token.Pos{}
81 if pos, ok := (*seen)[[2]string{key, val}]; ok {
90 (*seen)[[2]string{key, val}] = field.Pos()
  /prebuilts/go/darwin-x86/src/go/types/
methodset.go 84 // Named types that we have seen already, allocated lazily.
91 var seen map[*Named]bool
107 if seen[named] {
108 // We have seen this type before, at a more shallow depth
115 if seen == nil {
116 seen = make(map[*Named]bool)
118 seen[named] = true
  /prebuilts/go/linux-x86/src/cmd/vet/
structtag.go 27 var seen map[[2]string]token.Pos
29 checkCanonicalFieldTag(f, field, &seen)
37 func checkCanonicalFieldTag(f *File, field *ast.Field, seen *map[[2]string]token.Pos) {
78 if *seen == nil {
79 *seen = map[[2]string]token.Pos{}
81 if pos, ok := (*seen)[[2]string{key, val}]; ok {
90 (*seen)[[2]string{key, val}] = field.Pos()
  /prebuilts/go/linux-x86/src/go/types/
methodset.go 84 // Named types that we have seen already, allocated lazily.
91 var seen map[*Named]bool
107 if seen[named] {
108 // We have seen this type before, at a more shallow depth
115 if seen == nil {
116 seen = make(map[*Named]bool)
118 seen[named] = true
  /build/soong/cmd/zipsync/
zipsync.go 78 seen := make(map[string]string)
99 if prev, exists := seen[f.Name]; exists {
102 seen[f.Name] = input
  /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)
  /external/python/cpython3/Lib/
posixpath.py 391 def _joinrealpath(path, rest, seen):
424 if newpath in seen:
425 # Already seen this path
426 path = seen[newpath]
433 seen[newpath] = None # not resolved symlink
434 path, ok = _joinrealpath(path, os.readlink(newpath), seen)
437 seen[newpath] = path # resolved symlink
  /prebuilts/go/darwin-x86/src/runtime/
type.go 494 // Add to typehash if not seen before.
514 seen := map[_typePair]struct{}{}
515 if typesEqual(t, candidate, seen) {
545 func typesEqual(t, v *_type, seen map[_typePair]struct{}) bool {
547 if _, ok := seen[tp]; ok {
551 // mark these types as seen, and thus equivalent which prevents an infinite loop if
554 seen[tp] = struct{}{}
587 return typesEqual(at.elem, av.elem, seen) && at.len == av.len
591 return ct.dir == cv.dir && typesEqual(ct.elem, cv.elem, seen)
600 if !typesEqual(tin[i], vin[i], seen) {
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
type.go 494 // Add to typehash if not seen before.
514 seen := map[_typePair]struct{}{}
515 if typesEqual(t, candidate, seen) {
545 func typesEqual(t, v *_type, seen map[_typePair]struct{}) bool {
547 if _, ok := seen[tp]; ok {
551 // mark these types as seen, and thus equivalent which prevents an infinite loop if
554 seen[tp] = struct{}{}
587 return typesEqual(at.elem, av.elem, seen) && at.len == av.len
591 return ct.dir == cv.dir && typesEqual(ct.elem, cv.elem, seen)
600 if !typesEqual(tin[i], vin[i], seen) {
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/src/
msan5.go 7 // Using reflect to set a value was not seen by msan.
  /prebuilts/go/darwin-x86/misc/linkcheck/
linkcheck.go 7 // that it's seen and prints a report of missing links at the end.
52 seen := map[string]bool{}
59 if !seen[ref] {
60 seen[ref] = true
  /prebuilts/go/darwin-x86/src/debug/dwarf/
type_test.go 94 seen := make(map[string]bool)
117 if seen[t1.Name] {
120 seen[t1.Name] = true
132 if !seen[k] {

Completed in 895 milliseconds

1 2 34 5 6 7 8 91011>>