Lines Matching refs:ok
41 if k, v, ok := decodeKeyValue(envVar); ok {
54 if k, v, ok := decodeKeyValue(envVar); ok && k == key {
64 if v, ok := e.Get(key); ok {
83 if key, _, ok := decodeKeyValue(envVar); ok && inList(key, keys) {
96 if key, _, ok := decodeKeyValue(envVar); ok && strings.HasPrefix(key, prefix) {
109 if key, _, ok := decodeKeyValue(envVar); ok && inList(key, keys) {
133 if value, ok := e.Get(key); ok {
141 if value, ok := e.Get(key); ok {
179 str, ok := singleUnquote(cmd[1])
180 if !ok {
187 key, value, ok := decodeKeyValue(cmd[1])
188 if !ok {
192 key, ok = singleUnquote(key)
193 if !ok {
196 value, ok = singleUnquote(value)
197 if !ok {