Lines Matching refs:found

21 	a, found := tc.Get("a")
22 if found || a != nil {
26 b, found := tc.Get("b")
27 if found || b != nil {
31 c, found := tc.Get("c")
32 if found || c != nil {
40 x, found := tc.Get("a")
41 if !found {
50 x, found = tc.Get("b")
51 if !found {
60 x, found = tc.Get("c")
61 if !found {
72 var found bool
81 _, found = tc.Get("c")
82 if found {
87 _, found = tc.Get("a")
88 if found {
92 _, found = tc.Get("b")
93 if !found {
97 _, found = tc.Get("d")
98 if !found {
103 _, found = tc.Get("d")
104 if found {
121 a, found := tc.Get("a")
122 if !found {
128 b, found := tc.Get("b")
129 if !found {
140 x, found := tc.Get("foo")
141 if !found {
147 y, found := tc.Get("foo")
148 if !found {
164 x, found := tc.Get("tint")
165 if !found {
180 x, found := tc.Get("tint8")
181 if !found {
196 x, found := tc.Get("tint16")
197 if !found {
212 x, found := tc.Get("tint32")
213 if !found {
228 x, found := tc.Get("tint64")
229 if !found {
244 x, found := tc.Get("tuint")
245 if !found {
261 x, found := tc.Get("tuintptr")
262 if !found {
277 x, found := tc.Get("tuint8")
278 if !found {
294 x, found := tc.Get("tuint16")
295 if !found {
310 x, found := tc.Get("tuint32")
311 if !found {
327 x, found := tc.Get("tuint64")
328 if !found {
343 x, found := tc.Get("float32")
344 if !found {
359 x, found := tc.Get("float64")
360 if !found {
375 x, found := tc.Get("float32")
376 if !found {
391 x, found := tc.Get("float64")
392 if !found {
407 x, found := tc.Get("int")
408 if !found {
423 x, found := tc.Get("int8")
424 if !found {
439 x, found := tc.Get("int16")
440 if !found {
455 x, found := tc.Get("int32")
456 if !found {
471 x, found := tc.Get("int64")
472 if !found {
487 x, found := tc.Get("uint")
488 if !found {
503 x, found := tc.Get("uintptr")
504 if !found {
519 x, found := tc.Get("uint8")
520 if !found {
535 x, found := tc.Get("uint16")
536 if !found {
551 x, found := tc.Get("uint32")
552 if !found {
567 x, found := tc.Get("uint64")
568 if !found {
583 x, found := tc.Get("float32")
584 if !found {
599 x, found := tc.Get("float64")
600 if !found {
615 x, found := tc.Get("float32")
616 if !found {
631 x, found := tc.Get("float64")
632 if !found {
650 x, found := tc.Get("tint")
651 if !found {
669 x, found := tc.Get("tint8")
670 if !found {
688 x, found := tc.Get("tint16")
689 if !found {
707 x, found := tc.Get("tint32")
708 if !found {
726 x, found := tc.Get("tint64")
727 if !found {
745 x, found := tc.Get("tuint")
746 if !found {
764 x, found := tc.Get("tuintptr")
765 if !found {
783 x, found := tc.Get("tuint8")
784 if !found {
802 x, found := tc.Get("tuint16")
803 if !found {
821 x, found := tc.Get("tuint32")
822 if !found {
840 x, found := tc.Get("tuint64")
841 if !found {
859 x, found := tc.Get("float32")
860 if !found {
878 x, found := tc.Get("float64")
879 if !found {
897 x, found := tc.Get("int8")
898 if !found {
916 x, found := tc.Get("int16")
917 if !found {
935 x, found := tc.Get("int32")
936 if !found {
954 x, found := tc.Get("int64")
955 if !found {
973 x, found := tc.Get("uint")
974 if !found {
992 x, found := tc.Get("uintptr")
993 if !found {
1011 x, found := tc.Get("uint8")
1012 if !found {
1030 x, found := tc.Get("uint16")
1031 if !found {
1049 x, found := tc.Get("uint32")
1050 if !found {
1068 x, found := tc.Get("uint64")
1069 if !found {
1087 x, found := tc.Get("float32")
1088 if !found {
1106 x, found := tc.Get("float64")
1107 if !found {
1144 x, found := tc.Get("foo")
1145 if found {
1168 x, found := tc.Get("foo")
1169 if found {
1175 x, found = tc.Get("baz")
1176 if found {
1293 a, found := oc.Get("a")
1294 if !found {
1301 b, found := oc.Get("b")
1302 if !found {
1309 c, found := oc.Get("c")
1310 if !found {
1318 _, found = oc.Get("expired")
1319 if found {
1323 s1, found := oc.Get("*struct")
1324 if !found {
1331 s2, found := oc.Get("[]struct")
1332 if !found {
1346 s3, found := oc.get("[]*struct")
1347 if !found {
1361 s4, found := oc.get("structception")
1362 if !found {
1395 a, found := oc.Get("a")
1396 if !found {
1407 b, found := oc.Get("b")
1408 if !found {
1683 a, expiration, found := tc.GetWithExpiration("a")
1684 if found || a != nil || !expiration.IsZero() {
1688 b, expiration, found := tc.GetWithExpiration("b")
1689 if found || b != nil || !expiration.IsZero() {
1693 c, expiration, found := tc.GetWithExpiration("c")
1694 if found || c != nil || !expiration.IsZero() {
1704 x, expiration, found := tc.GetWithExpiration("a")
1705 if !found {
1717 x, expiration, found = tc.GetWithExpiration("b")
1718 if !found {
1730 x, expiration, found = tc.GetWithExpiration("c")
1731 if !found {
1743 x, expiration, found = tc.GetWithExpiration("d")
1744 if !found {
1756 x, expiration, found = tc.GetWithExpiration("e")
1757 if !found {