HomeSort by relevance Sort by last modified time
    Searched refs:headerPath (Results 1 - 3 of 3) sorted by null

  /external/catch2/scripts/
generateSingleHeader.py 83 headerPath, sep, headerFile = header.rpartition( "/" )
87 if headerPath == "internal" and path.endswith("internal/"):
88 headerPath = ""
90 if os.path.exists( path + headerPath + sep + headerFile ):
91 parseFile( path + headerPath + sep, headerFile )
93 parseFile( rootPath + headerPath + sep, headerFile )
  /external/boringssl/src/util/
make_errors.go 49 headerPath := filepath.Join(topLevelPath, "include", "openssl", lib+".h")
53 headerFile, err := os.Open(headerPath)
56 return fmt.Errorf("No header %s. Run in the right directory or touch the file.", headerPath)
124 headerFile, err = os.Open(headerPath)
130 newHeaderFile, err := os.OpenFile(headerPath+".tmp", os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0666)
142 if err := os.Rename(headerPath+".tmp", headerPath); err != nil {
doc.go 295 headerPath := filepath.Join(config.BaseDirectory, path)
297 headerFile, err := os.Open(headerPath)
642 for _, headerPath := range section.Headers {
643 header, err := config.parseHeader(headerPath)
645 return nil, errors.New("while parsing " + headerPath + ": " + err.Error())

Completed in 689 milliseconds