Searched refs:headerPath (Results 1 – 4 of 4) sorted by relevance
/external/catch2/scripts/ |
D | generateSingleHeader.py | 96 headerPath, sep, headerFile = header.rpartition( "/" ) 100 if headerPath == "internal" and path.endswith("internal/"): 101 headerPath = "" 103 if os.path.exists( path + headerPath + sep + headerFile ): 104 parseFile( path + headerPath + sep, headerFile ) 106 parseFile( rootPath + headerPath + sep, headerFile )
|
/external/boringssl/src/util/ |
D | 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 {
|
D | 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())
|
/external/angle/src/libANGLE/capture/ |
D | FrameCapture.cpp | 1150 std::string headerPath = headerPathStream.str(); in WriteAuxiliaryContextCppSetupReplay() local 1152 SaveFileHelper saveHeader(headerPath); in WriteAuxiliaryContextCppSetupReplay() 1378 std::string headerPath = headerPathStream.str(); in WriteSharedContextCppReplay() local 1380 SaveFileHelper saveHeader(headerPath); in WriteSharedContextCppReplay() 5523 std::string headerPath = headerPathStream.str(); in writeCppReplayIndexFiles() local 5525 SaveFileHelper saveHeader(headerPath); in writeCppReplayIndexFiles()
|