/prebuilts/go/darwin-x86/src/strconv/ |
atob.go | 7 // ParseBool returns the boolean value represented by the string. 10 func ParseBool(str string) (value bool, err error) { 17 return false, syntaxError("ParseBool", str)
|
doc.go | 17 // ParseBool, ParseFloat, ParseInt, and ParseUint convert strings to values: 19 // b, err := strconv.ParseBool("true")
|
atob_test.go | 38 b, e := ParseBool(test.in)
|
atoi.go | 17 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat)
|
example_test.go | 193 if s, err := strconv.ParseBool(v); err == nil {
|
/prebuilts/go/linux-x86/src/strconv/ |
atob.go | 7 // ParseBool returns the boolean value represented by the string. 10 func ParseBool(str string) (value bool, err error) { 17 return false, syntaxError("ParseBool", str)
|
doc.go | 17 // ParseBool, ParseFloat, ParseInt, and ParseUint convert strings to values: 19 // b, err := strconv.ParseBool("true")
|
atob_test.go | 38 b, e := ParseBool(test.in)
|
atoi.go | 17 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat)
|
example_test.go | 193 if s, err := strconv.ParseBool(v); err == nil {
|
/prebuilts/go/darwin-x86/src/database/sql/driver/ |
types.go | 52 // - for strings and []byte, same rules as strconv.ParseBool 67 b, err := strconv.ParseBool(s) 73 b, err := strconv.ParseBool(string(s))
|
/prebuilts/go/linux-x86/src/database/sql/driver/ |
types.go | 52 // - for strings and []byte, same rules as strconv.ParseBool 67 b, err := strconv.ParseBool(s) 73 b, err := strconv.ParseBool(string(s))
|
/system/update_engine/ |
omaha_request_action.cc | 677 bool ParseBool(const string& str) { [all...] |
/frameworks/base/tools/aapt2/ |
ResourceUtils_test.cpp | 26 TEST(ResourceUtilsTest, ParseBool) {
|
/external/nanopb-c/generator/google/protobuf/ |
text_format.py | 485 result = ParseBool(self.token) 686 def ParseBool(text):
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
testflag.go | 261 x, err := strconv.ParseBool(value)
|
/prebuilts/go/linux-x86/src/cmd/go/ |
testflag.go | 261 x, err := strconv.ParseBool(value)
|
/external/protobuf/python/google/protobuf/ |
text_format.py | 651 result = ParseBool(self.token) 820 def ParseBool(text):
|
/prebuilts/go/darwin-x86/src/cmd/vet/ |
main.go | 81 b, err := strconv.ParseBool(value)
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
main.go | 81 b, err := strconv.ParseBool(value)
|
/prebuilts/go/darwin-x86/src/encoding/xml/ |
read.go | 590 value, err := strconv.ParseBool(strings.TrimSpace(string(src)))
|
/prebuilts/go/linux-x86/src/encoding/xml/ |
read.go | 590 value, err := strconv.ParseBool(strings.TrimSpace(string(src)))
|
/prebuilts/go/darwin-x86/src/cmd/dist/ |
test.go | 87 t.cgoEnabled, _ = strconv.ParseBool(strings.TrimSpace(string(slurp)))
|
/prebuilts/go/linux-x86/src/cmd/dist/ |
test.go | 87 t.cgoEnabled, _ = strconv.ParseBool(strings.TrimSpace(string(slurp)))
|
/prebuilts/go/darwin-x86/src/flag/ |
flag.go | 89 v, err := strconv.ParseBool(s)
|