/prebuilts/go/darwin-x86/src/path/filepath/ |
path_plan9.go | 11 return strings.HasPrefix(path, "/") || strings.HasPrefix(path, "#") 20 // HasPrefix exists for historical compatibility and should not be used. 21 func HasPrefix(p, prefix string) bool { 22 return strings.HasPrefix(p, prefix)
|
path_unix.go | 13 return strings.HasPrefix(path, "/") 22 // HasPrefix exists for historical compatibility and should not be used. 23 func HasPrefix(p, prefix string) bool { 24 return strings.HasPrefix(p, prefix)
|
path_windows.go | 67 // HasPrefix exists for historical compatibility and should not be used. 68 func HasPrefix(p, prefix string) bool { 69 if strings.HasPrefix(p, prefix) { 72 return strings.HasPrefix(strings.ToLower(p), strings.ToLower(prefix))
|
/prebuilts/go/linux-x86/src/path/filepath/ |
path_plan9.go | 11 return strings.HasPrefix(path, "/") || strings.HasPrefix(path, "#") 20 // HasPrefix exists for historical compatibility and should not be used. 21 func HasPrefix(p, prefix string) bool { 22 return strings.HasPrefix(p, prefix)
|
path_unix.go | 13 return strings.HasPrefix(path, "/") 22 // HasPrefix exists for historical compatibility and should not be used. 23 func HasPrefix(p, prefix string) bool { 24 return strings.HasPrefix(p, prefix)
|
path_windows.go | 67 // HasPrefix exists for historical compatibility and should not be used. 68 func HasPrefix(p, prefix string) bool { 69 if strings.HasPrefix(p, prefix) { 72 return strings.HasPrefix(strings.ToLower(p), strings.ToLower(prefix))
|
/build/kati/ |
strutil.cc | 144 bool HasPrefix(StringPiece str, StringPiece prefix) { 184 return (HasPrefix(str, pat_.substr(0, percent_index_)) &&
|
/prebuilts/go/darwin-x86/src/bytes/ |
bytes.go | 343 // HasPrefix tests whether the byte slice s begins with prefix. 344 func HasPrefix(s, prefix []byte) bool { 506 if HasPrefix(s, prefix) {
|
/prebuilts/go/darwin-x86/src/strings/ |
strings.go | 409 // HasPrefix tests whether the string s begins with prefix. 410 func HasPrefix(s, prefix string) bool { 660 if HasPrefix(s, prefix) {
|
/prebuilts/go/linux-x86/src/bytes/ |
bytes.go | 343 // HasPrefix tests whether the byte slice s begins with prefix. 344 func HasPrefix(s, prefix []byte) bool { 506 if HasPrefix(s, prefix) {
|
/prebuilts/go/linux-x86/src/strings/ |
strings.go | 409 // HasPrefix tests whether the string s begins with prefix. 410 func HasPrefix(s, prefix string) bool { 660 if HasPrefix(s, prefix) {
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest-printers_test.cc | 538 AssertionResult HasPrefix(const StringType& str, const StringType& prefix) { 564 EXPECT_TRUE(HasPrefix(Print(&Foo::value), 567 EXPECT_TRUE(HasPrefix(Print(p), 576 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), 579 HasPrefix(Print(&Foo::MyVirtualMethod), 582 EXPECT_TRUE(HasPrefix(Print(p), [all...] |
/external/gtest/test/ |
gtest-printers_test.cc | 544 AssertionResult HasPrefix(const StringType& str, const StringType& prefix) { 570 EXPECT_TRUE(HasPrefix(Print(&Foo::value), 573 EXPECT_TRUE(HasPrefix(Print(p), 582 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), 585 HasPrefix(Print(&Foo::MyVirtualMethod), 588 EXPECT_TRUE(HasPrefix(Print(p), [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest-printers_test.cc | 544 AssertionResult HasPrefix(const StringType& str, const StringType& prefix) { 570 EXPECT_TRUE(HasPrefix(Print(&Foo::value), 573 EXPECT_TRUE(HasPrefix(Print(p), 582 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), 585 HasPrefix(Print(&Foo::MyVirtualMethod), 588 EXPECT_TRUE(HasPrefix(Print(p), [all...] |
/ndk/sources/third_party/googletest/googletest/test/ |
gtest-printers_test.cc | 544 AssertionResult HasPrefix(const StringType& str, const StringType& prefix) { 570 EXPECT_TRUE(HasPrefix(Print(&Foo::value), 573 EXPECT_TRUE(HasPrefix(Print(p), 582 EXPECT_TRUE(HasPrefix(Print(&Foo::MyMethod), 585 HasPrefix(Print(&Foo::MyVirtualMethod), 588 EXPECT_TRUE(HasPrefix(Print(p), [all...] |