Searched refs:fullFileName (Results 1 – 6 of 6) sorted by relevance
/external/toolchain-utils/compiler_wrapper/ |
D | testutil_test.go | 209 func (ctx *testContext) writeFile(fullFileName string, fileContent string) { 210 if !filepath.IsAbs(fullFileName) { 211 fullFileName = filepath.Join(ctx.tempDir, fullFileName) 213 if err := os.MkdirAll(filepath.Dir(fullFileName), 0777); err != nil { 216 if err := ioutil.WriteFile(fullFileName, []byte(fileContent), 0777); err != nil {
|
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/ |
D | TestPathsModule.java | 66 String fullFileName = PathUtilities.getNormalizedPathString(file); in TestMain() local 77 reader.read(fullFileName, XMLFileReader.CONTENT_HANDLER, true); in TestMain()
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | SimpleFactory.java | 618 …public static CLDRFile makeFromFile(String fullFileName, String localeName, DraftStatus minimalDra… in makeFromFile() argument 619 return makeFromFile(new File(fullFileName), localeName, minimalDraftStatus); in makeFromFile()
|
D | XMLNormalizingLoader.java | 155 String fullFileName = PathUtilities.getNormalizedPathString(f); in loadXMLFile() local 158 XMLFileReader.read(fullFileName, fis, -1, true, XML_HANDLER); in loadXMLFile()
|
D | CLDRFile.java | 249 String fullFileName = f.getAbsolutePath(); in loadFromFile() local 251 fullFileName = PathUtilities.getNormalizedPathString(f); in loadFromFile() 253 System.out.println("Parsing: " + fullFileName); in loadFromFile() 254 Log.logln(LOG_PROGRESS, "Parsing: " + fullFileName); in loadFromFile() 261 cldrFile = load(fullFileName, localeName, fis, minimalDraftStatus, source); in loadFromFile() 267 cldrFile = load(fullFileName, localeName, fis, minimalDraftStatus, source); in loadFromFile() 275 sb.append(fullFileName); in loadFromFile()
|
/external/libpcap/ |
D | pcap.c | 4125 CHAR fullFileName[MAX_PATH]; local 4149 memcpy(fullFileName, path, res * sizeof(TCHAR)); 4150 fullFileName[res] = '\\'; 4151 memcpy(&fullFileName[res + 1], name, (strlen(name) + 1) * sizeof(TCHAR)); 4153 hModule = LoadLibraryA(fullFileName);
|