HomeSort by relevance Sort by last modified time
    Searched defs:MatchString (Results 1 - 10 of 10) sorted by null

  /prebuilts/go/darwin-x86/src/testing/internal/testdeps/
deps.go 26 func (TestDeps) MatchString(pat, str string) (result bool, err error) {
34 return matchRe.MatchString(str), nil
  /prebuilts/go/linux-x86/src/testing/internal/testdeps/
deps.go 26 func (TestDeps) MatchString(pat, str string) (result bool, err error) {
34 return matchRe.MatchString(str), nil
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
RegularExpressionProtocol.h 156 EFI_REGULAR_EXPRESSION_MATCH MatchString;
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
SerialStatusCode.c     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/BsSerialStatusCode/
BsSerialStatusCode.c     [all...]
  /prebuilts/go/darwin-x86/src/regexp/
regexp.go 414 // MatchString reports whether the Regexp matches the string s.
415 func (re *Regexp) MatchString(s string) bool {
435 // MatchString checks whether a textual regular expression
438 func MatchString(pattern string, s string) (matched bool, err error) {
443 return re.MatchString(s), nil
    [all...]
  /prebuilts/go/darwin-x86/src/testing/
testing.go 762 func (f matchStringOnly) MatchString(pat, str string) (bool, error) { return f(pat, str) }
774 func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
775 os.Exit(MainStart(matchStringOnly(matchString), tests, benchmarks, examples).Run())
791 MatchString(pat, str string) (bool, error)
822 testRan, testOk := runTests(m.deps.MatchString, m.tests)
823 exampleRan, exampleOk := runExamples(m.deps.MatchString, m.examples)
828 if !testOk || !exampleOk || !runBenchmarks(m.deps.MatchString, m.benchmarks) || race.Errors() > 0 {
858 func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool) {
859 ran, ok := runTests(matchString, tests)
866 func runTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ran, ok bool)
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
regexp.go 414 // MatchString reports whether the Regexp matches the string s.
415 func (re *Regexp) MatchString(s string) bool {
435 // MatchString checks whether a textual regular expression
438 func MatchString(pattern string, s string) (matched bool, err error) {
443 return re.MatchString(s), nil
    [all...]
  /prebuilts/go/linux-x86/src/testing/
testing.go 762 func (f matchStringOnly) MatchString(pat, str string) (bool, error) { return f(pat, str) }
774 func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
775 os.Exit(MainStart(matchStringOnly(matchString), tests, benchmarks, examples).Run())
791 MatchString(pat, str string) (bool, error)
822 testRan, testOk := runTests(m.deps.MatchString, m.tests)
823 exampleRan, exampleOk := runExamples(m.deps.MatchString, m.examples)
828 if !testOk || !exampleOk || !runBenchmarks(m.deps.MatchString, m.benchmarks) || race.Errors() > 0 {
858 func RunTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ok bool) {
859 ran, ok := runTests(matchString, tests)
866 func runTests(matchString func(pat, str string) (bool, error), tests []InternalTest) (ran, ok bool)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/
BootMaintenance.c 371 CHAR16 *MatchString;
379 MatchString = String;
382 while(MatchString != NULL){
383 LastMatch = MatchString + 1;
384 MatchString = StrStr(LastMatch,L"\\");
    [all...]

Completed in 328 milliseconds