/prebuilts/go/darwin-x86/src/net/ |
hosts.go | 33 byName map[string][]string 42 if len(hosts.byName) == 0 || now.After(hosts.expire) || hosts.path != hp { 71 hosts.byName = hs 82 if len(hosts.byName) != 0 { 83 if ips, ok := hosts.byName[host]; ok {
|
/prebuilts/go/linux-x86/src/net/ |
hosts.go | 33 byName map[string][]string 42 if len(hosts.byName) == 0 || now.After(hosts.expire) || hosts.path != hp { 71 hosts.byName = hs 82 if len(hosts.byName) != 0 { 83 if ips, ok := hosts.byName[host]; ok {
|
/prebuilts/go/darwin-x86/src/cmd/nm/ |
nm.go | 108 sort.Sort(byName(syms)) 141 type byName []objfile.Sym 143 func (x byName) Len() int { return len(x) } 144 func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } 145 func (x byName) Less(i, j int) bool { return x[i].Name < x[j].Name }
|
/prebuilts/go/linux-x86/src/cmd/nm/ |
nm.go | 108 sort.Sort(byName(syms)) 141 type byName []objfile.Sym 143 func (x byName) Len() int { return len(x) } 144 func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } 145 func (x byName) Less(i, j int) bool { return x[i].Name < x[j].Name }
|
/prebuilts/go/darwin-x86/src/io/ioutil/ |
ioutil.go | 91 // byName implements sort.Interface. 92 type byName []os.FileInfo 94 func (f byName) Len() int { return len(f) } 95 func (f byName) Less(i, j int) bool { return f[i].Name() < f[j].Name() } 96 func (f byName) Swap(i, j int) { f[i], f[j] = f[j], f[i] } 110 sort.Sort(byName(list))
|
/prebuilts/go/linux-x86/src/io/ioutil/ |
ioutil.go | 91 // byName implements sort.Interface. 92 type byName []os.FileInfo 94 func (f byName) Len() int { return len(f) } 95 func (f byName) Less(i, j int) bool { return f[i].Name() < f[j].Name() } 96 func (f byName) Swap(i, j int) { f[i], f[j] = f[j], f[i] } 110 sort.Sort(byName(list))
|
/cts/libs/vogar-expect/src/vogar/ |
ExpectationStore.java | 76 Expectation byName = getByNameOrPackage(name); 77 return byName != null ? byName : SUCCESS; 101 Expectation byName = getByNameOrPackage(outcome.getName()); 102 return byName != null ? byName : SUCCESS;
|
/external/vogar/src/vogar/ |
ExpectationStore.java | 64 Expectation byName = getByNameOrPackage(name); 65 return byName != null ? byName : Expectation.SUCCESS; 89 Expectation byName = getByNameOrPackage(outcome.getName()); 90 return byName != null ? byName : Expectation.SUCCESS;
|
/prebuilts/go/darwin-x86/src/crypto/x509/ |
cert_pool.go | 14 byName map[string][]int 41 candidates = s.byName[string(cert.RawIssuer)] 76 s.byName[name] = append(s.byName[name], n)
|
/prebuilts/go/linux-x86/src/crypto/x509/ |
cert_pool.go | 14 byName map[string][]int 41 candidates = s.byName[string(cert.RawIssuer)] 76 s.byName[name] = append(s.byName[name], n)
|
/libcore/support/src/test/java/libcore/tlswire/handshake/ |
CipherSuite.java | 381 Map<String, CipherSuite> byName = new HashMap<String, CipherSuite>(); 388 if (byName.put(name, cipherSuite) != null) { 394 if (byName.put(androidName, cipherSuite) != null) { 402 NAME_TO_CIPHER_SUITE = byName;
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
ClassPathTest.java | 60 Map<String, ResourceInfo> byName = Maps.newHashMap(); 66 byName.put(resource.getResourceName(), resource); 71 assertThat(byName.keySet()).has().allOf( 82 byName.get("com/google/common/reflect/test.txt").url());
|
/external/wpa_supplicant_8/src/crypto/ |
tls_openssl_ocsp.c | 87 * byName [1] Name, 93 X509_NAME *byName; 177 ASN1_EXP(ResponderID, value.byName, X509_NAME, 1), 279 X509_NAME_print_ex(out, rid->value.byName, 0, XN_FLAG_ONELINE); 466 /* byName */ 467 return X509_find_by_subject(certs, rid->value.byName);
|
/prebuilts/go/darwin-x86/src/cmd/fix/ |
fix.go | 26 // main runs sort.Sort(byName(fixes)) before printing list of fixes. 27 type byName []fix 29 func (f byName) Len() int { return len(f) } 30 func (f byName) Swap(i, j int) { f[i], f[j] = f[j], f[i] } 31 func (f byName) Less(i, j int) bool { return f[i].name < f[j].name }
|
main.go | 46 sort.Sort(byName(fixes))
|
/prebuilts/go/darwin-x86/src/runtime/pprof/ |
pprof.go | 148 sort.Sort(byName(all)) 152 type byName []*Profile 154 func (x byName) Len() int { return len(x) } 155 func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } 156 func (x byName) Less(i, j int) bool { return x[i].name < x[j].name }
|
/prebuilts/go/linux-x86/src/cmd/fix/ |
fix.go | 26 // main runs sort.Sort(byName(fixes)) before printing list of fixes. 27 type byName []fix 29 func (f byName) Len() int { return len(f) } 30 func (f byName) Swap(i, j int) { f[i], f[j] = f[j], f[i] } 31 func (f byName) Less(i, j int) bool { return f[i].name < f[j].name }
|
main.go | 46 sort.Sort(byName(fixes))
|
/prebuilts/go/linux-x86/src/runtime/pprof/ |
pprof.go | 148 sort.Sort(byName(all)) 152 type byName []*Profile 154 func (x byName) Len() int { return len(x) } 155 func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } 156 func (x byName) Less(i, j int) bool { return x[i].name < x[j].name }
|
/build/tools/signapk/src/com/android/signapk/ |
SignApk.java | 313 TreeMap<String, JarEntry> byName = new TreeMap<String, JarEntry>(); 317 byName.put(entry.getName(), entry); 320 for (JarEntry entry: byName.values()) { [all...] |
/prebuilts/go/darwin-x86/src/encoding/json/ |
encode.go | 953 // byName sorts field by name, breaking ties with depth, 956 type byName []field 958 func (x byName) Len() int { return len(x) } 960 func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } 962 func (x byName) Less(i, j int) bool { 1092 sort.Sort(byName(fields))
|
/prebuilts/go/linux-x86/src/encoding/json/ |
encode.go | 953 // byName sorts field by name, breaking ties with depth, 956 type byName []field 958 func (x byName) Len() int { return len(x) } 960 func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } 962 func (x byName) Less(i, j int) bool { 1092 sort.Sort(byName(fields))
|
/external/owasp/sanitizer/tools/findbugs/lib/ |
jdepend-2.9.jar | |
/prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-remote-driver/2.42.2/ |
selenium-remote-driver-2.42.2.jar | |
/prebuilts/tools/common/m2/repository/org/assertj/assertj-core/2.0.0/ |
assertj-core-2.0.0.jar | |