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