Searched refs:readFile (Results 1 - 25 of 48) sorted by relevance

12

/external/icu4c/samples/layout/
H A DUnicodeReader.h28 static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
H A Ducreader.cpp17 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
H A DUnicodeReader.cpp26 const UChar *UnicodeReader::readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount) function in class:UnicodeReader
H A Dparagraph.cpp256 const UChar *text = UnicodeReader::readFile(fileName, guiSupport, charCount);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DFileUtils.java50 public static byte[] readFile(String fileName) method in class:FileUtils
53 return readFile(file);
63 public static byte[] readFile(File file) method in class:FileUtils
65 return readFile(file, 0, -1);
78 public static byte[] readFile(File file, int offset, int length) method in class:FileUtils
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFileUtils.java41 public static byte[] readFile(String fileName) { method in class:FileUtils
43 return readFile(file);
53 public static byte[] readFile(File file) { method in class:FileUtils
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DmergeChangeLogs.pl34 sub readFile($) subroutine
120 ok(readFile($fileMine) eq $fileMineContent, "$title: \$fileMine should be unchanged");
121 ok(readFile($fileOlder) eq $fileOlderContent, "$title: \$fileOlder should be unchanged");
132 ok(readFile($fileNewer) eq $expectedContent, "$title: \$fileNewer should be updated to include patch");
189 ok(readFile($fileMine) eq $fileMineContent, "$title: \$fileMine should be unchanged");
190 ok(readFile($fileOlder) eq $fileOlderContent, "$title: \$fileOlder should be unchanged");
191 ok(readFile($fileNewer) eq $fileNewerContent, "$title: \$fileNewer should be unchanged");
246 ok(readFile($fileMine) eq $fileMineContent, "$title: \$fileMine should be unchanged");
247 ok(readFile($fileOlder) eq $fileOlderContent, "$title: \$fileOlder should be unchanged");
259 ok(readFile(
[all...]
/external/icu4c/tools/gencfu/
H A Dgencfu.cpp122 static const char *readFile(const char *fileName, int32_t *len);
208 const char *confusables = readFile(confFileName, &confusablesLen);
215 const char *wsConfsables = readFile(confWSFileName, &wsConfusablesLen);
302 static const char *readFile(const char *fileName, int32_t *len) { function
/external/jsilver/src/org/clearsilver/
H A DHDF.java39 boolean readFile(String filename) throws IOException; method in interface:HDF
54 * Serializes HDF contents to a file (readable by readFile)
H A DDelegatedHdf.java75 public boolean readFile(String filename) throws IOException, FileNotFoundException { method in class:DelegatedHdf
76 return getHdf().readFile(filename);
/external/doclava/src/com/google/doclava/
H A DDocFile.java30 public static String readFile(String filename) { method in class:DocFile
62 String filedata = readFile(docfile);
H A DSampleCode.java133 SampleTagInfo.readFile(new SourcePositionInfo(filename, -1, -1), filename, "sample code",
149 SampleTagInfo.readFile(new SourcePositionInfo(filename, -1, -1), filename, "sample code",
H A DSampleTagInfo.java82 mIncluded = readFile(position, filename, id, trim, true, false);
198 static String readFile(SourcePositionInfo pos, String filename, String id, boolean trim, method in class:SampleTagInfo
/external/webkit/PerformanceTests/SunSpider/
H A Dsunspider-compare-results115 sub readFile($) subroutine
152 $file1 = readFile("$resultDirectory/baseline-filename.txt");
/external/icu4c/samples/ugrep/
H A Dugrep.cpp74 void readFile(const char *name);
131 readFile(argv[fileNum]);
254 // readFile Read a file into memory, and convert it to Unicode.
261 void readFile(const char *name) { function
/external/jdiff/src/jdiff/
H A DJDiff.java86 API oldAPI = XMLToAPI.readFile(tempOldFileName, false, oldFileName);
92 API newAPI = XMLToAPI.readFile(tempNewFileName, true, newFileName);
113 Comments existingComments = Comments.readFile(commentsFileName);
/external/libxslt/libxslt/
H A Dsecurity.c66 xsltSecurityCheck readFile; member in struct:_xsltSecurityPrefs
135 sec->readFile = func; return(0);
163 return(sec->readFile);
/external/icu4c/test/thaitest/
H A Dthaitest.cpp111 static const UChar *readFile(char *fileName, int32_t &charCount);
305 const UChar *ThaiWordbreakTest::readFile(char *fileName, int32_t &charCount) function in class:ThaiWordbreakTest
467 spaces = ThaiWordbreakTest::readFile(fileName, spaceCount);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java94 readFile(in);
98 protected void readFile(DataInputStream in) throws IOException { method in class:SerializedGrammar
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/
H A DDesignerPlugin.java96 public static String readFile(InputStream inputStream, Charset charset) { method in class:DesignerPlugin
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java202 readFile (inFile);
311 private void readFile (final File file) method in class:ClassPathProcessorST
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DTestResultsGenerator.java178 testResultsTemplateString = readFile(testResultsTemplateFileName);
179 dropTemplateString = readFile(dropTemplateFileName);
194 platformTemplateString.add(readFile(platformTemplateFile));
256 String fileContents = readFile(log);
445 public String readFile(String fileName) { method in class:TestResultsGenerator
/external/icu4c/tools/makeconv/
H A Dmakeconv.c561 readFile(ConvData *data, const char* converterName, function
648 dataIsBase=readFile(data, converterName, pErrorCode);
733 dataIsBase=readFile(&baseData, baseFilename, pErrorCode);
/external/v8/tools/
H A Dtickprocessor.js50 function readFile(fileName) { function
137 var contents = readFile(fileName);
291 var contents = readFile(fileName);
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DJHdf.java82 public boolean readFile(String filename) throws IOException { method in class:JHdf

Completed in 441 milliseconds

12