Home
last modified time | relevance | path

Searched refs:v1 (Results 1 – 5 of 5) 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/kati/
Dexpr.h41 static Value* NewExpr(Value* v1, Value* v2);
42 static Value* NewExpr(Value* v1, Value* v2, Value* v3);
Dexpr.cc70 ValueList(Value* v1, Value* v2, Value* v3) : ValueList() { in ValueList() argument
72 vals_.push_back(v1); in ValueList()
77 ValueList(Value* v1, Value* v2) : ValueList() { in ValueList() argument
79 vals_.push_back(v1); in ValueList()
266 Value* Value::NewExpr(Value* v1, Value* v2) { in NewExpr() argument
267 return new ValueList(v1, v2); in NewExpr()
270 Value* Value::NewExpr(Value* v1, Value* v2, Value* v3) { in NewExpr() argument
271 return new ValueList(v1, v2, v3); in NewExpr()
/build/make/core/tasks/check_boot_jars/
Dpackage_whitelist.txt107 org\.xmlpull\.v1
108 org\.xmlpull\.v1\.sax2
/build/blueprint/
Dcontext.go250 for k, v1 := range vm {
251 if v2, ok := other[k]; ok && v1 != v2 {