Home
last modified time | relevance | path

Searched refs:v1 (Results 1 – 4 of 4) sorted by relevance

/build/blueprint/proptools/
Dtypeequal.go26 func typeEqual(v1, v2 reflect.Value) bool { argument
27 if v1.Type() != v2.Type() {
31 if v1.Kind() == reflect.Interface {
32 if v1.IsNil() != v2.IsNil() {
35 if v1.IsNil() {
38 v1 = v1.Elem()
40 if v1.Type() != v2.Type() {
45 if v1.Kind() == reflect.Ptr {
46 if v1.Type().Elem().Kind() != reflect.Struct {
49 if v1.IsNil() && !v2.IsNil() {
[all …]
/build/make/core/tasks/check_boot_jars/
Dpackage_allowed_list.txt111 org\.xmlpull\.v1
112 org\.xmlpull\.v1\.sax2
/build/make/target/product/
Dbase_system.mk53 com.android.apex.cts.shim.v1 \
/build/blueprint/
Dcontext.go278 for k, v1 := range vm {
279 if v2, ok := other[k]; ok && v1 != v2 {