Searched refs:decodeKeyValue (Results 1 – 4 of 4) sorted by relevance
/build/soong/ui/build/ |
D | environment.go | 41 if k, v, ok := decodeKeyValue(env); ok && k == key { 70 if key, _, ok := decodeKeyValue(env); ok && inList(key, keys) { 82 if key, _, ok := decodeKeyValue(env); ok && strings.HasPrefix(key, prefix) { 94 if key, _, ok := decodeKeyValue(env); ok && inList(key, keys) { 164 key, value, ok := decodeKeyValue(cmd[1])
|
D | util.go | 123 func decodeKeyValue(str string) (string, string, bool) { func
|
D | dumpvars.go | 120 if key, value, ok := decodeKeyValue(line); ok {
|
D | config.go | 523 } else if k, v, ok := decodeKeyValue(arg); ok && len(k) > 0 {
|