HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 251 - 275 of 3121) sorted by null

<<11121314151617181920>>

  /external/skqp/tools/lua/
count_effects.lua 21 function sk_scrape_startcanvas(c, fileName) end
23 function sk_scrape_endcanvas(c, fileName) end
  /external/testng/src/main/java/org/testng/reporters/jq/
Main.java 78 for (String fileName : RESOURCES) {
79 try (InputStream is = getClass().getResourceAsStream("/" + fileName)) {
81 throw new AssertionError("Couldn't find resource: " + fileName);
83 Files.copyFile(is, new File(m_outputDirectory, fileName));
  /external/webrtc/webrtc/modules/media_file/
media_file_impl.h 41 const char* fileName,
66 int32_t StartRecordingAudioFile(const char* fileName,
88 int32_t FileDurationMs(const char* fileName,
101 // Returns true if the filename is valid
102 static bool ValidFileName(const char* fileName);
  /external/webrtc/webrtc/test/testsupport/
iosfileutils.mm 48 NSString* fileName = path.lastPathComponent;
51 NSString* pathString = [[NSBundle mainBundle] pathForResource:fileName
  /frameworks/base/core/java/android/content/res/
ApkAssets.java 145 * @param fileName The path to the file within the APK.
149 public @NonNull XmlResourceParser openXml(@NonNull String fileName) throws IOException {
150 Preconditions.checkNotNull(fileName, "fileName");
152 long nativeXmlPtr = nativeOpenXml(mNativePtr, fileName);
194 private static native long nativeOpenXml(long ptr, @NonNull String fileName) throws IOException;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/license/
LicenseHtmlGeneratorFromXml.java 204 String fileName = readText(parser).trim();
205 if (!TextUtils.isEmpty(fileName)) {
206 fileNameToContentIdMap.put(fileName, contentId);
253 for (String fileName : fileNameList) {
254 String contentId = fileNameToContentIdMap.get(fileName);
265 contentIdAndFileNamesList.get(id).mFileNameList.add(fileName);
266 writer.format("<li><a href=\"#id%d\">%s</a></li>\n", id, fileName);
277 for (String fileName : contentIdAndFileNames.mFileNameList) {
278 writer.format("%s <br/>\n", fileName);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
IconInfo.java 37 * | Width | Height | Language | Type Length | Type | Filename Length | Filename |
50 public IconInfo(int width, int height, String language, String iconType, String fileName) {
55 mFileName = fileName;
77 String fileName =
80 return new IconInfo(width, height, language, iconType, fileName);
132 + ", FileName='" + mFileName + "\'"
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FilterInputStreamTest.java 37 private String fileName;
100 fileName = temp.getAbsolutePath();
104 is = new MyFilterInputStream(new java.io.FileInputStream(fileName));
118 new File(fileName).delete();
  /platform_testing/libraries/device-collectors/src/main/java/android/device/collectors/
ScreenshotListener.java 109 final String fileName = String.format("%s.%s.png", description.getClassName(),
111 File img = takeScreenshot(fileName);
127 public File takeScreenshot(String fileName){
128 File img = new File(mDestDir, fileName);
  /system/core/fastboot/
fs.cpp 114 static int generate_ext4_image(const char* fileName, long long partSize,
140 mke2fs_args.push_back(fileName);
160 fileName, nullptr};
165 static int generate_f2fs_image(const char* fileName, long long partSize, const std::string& initial_dir,
182 mkf2fs_args.push_back(fileName);
196 "-f", initial_dir.c_str(), fileName, nullptr};
205 int (*generate)(const char* fileName, long long partSize, const std::string& initial_dir,
222 int fs_generator_generate(const struct fs_generator* gen, const char* fileName, long long partSize,
225 return gen->generate(fileName, partSize, initial_dir, eraseBlkSize, logicalBlkSize);
  /external/lz4/tests/
test-lz4-speed.py 140 if (len(words) == 8) or (len(words) == 9): # results: "filename" or "XX files"
148 testFilePath, fileName, last_csize, last_cspeed, last_dspeed):
165 log("WARNING: No data for comparison for branch=%s file=%s " % (branch, fileName))
170 print("%s:%s -%d cSpeed=%6.2f cLast=%6.2f cDiff=%1.4f dSpeed=%6.2f dLast=%6.2f dDiff=%1.4f ratioDiff=%1.4f %s" % (branch, commit, i+1, cspeed[i], last_cspeed[i], cspeed[i]/last_cspeed[i], dspeed[i], last_dspeed[i], dspeed[i]/last_dspeed[i], float(last_csize[i])/csize[i], fileName))
172 text += "WARNING: %s -%d cSpeed=%.2f cLast=%.2f cDiff=%.4f %s\n" % (executableName, i+1, cspeed[i], last_cspeed[i], cspeed[i]/last_cspeed[i], fileName)
174 text += "WARNING: %s -%d dSpeed=%.2f dLast=%.2f dDiff=%.4f %s\n" % (executableName, i+1, dspeed[i], last_dspeed[i], dspeed[i]/last_dspeed[i], fileName)
176 text += "WARNING: %s -%d cSize=%d last_cSize=%d diff=%.4f %s\n" % (executableName, i+1, csize[i], last_csize[i], float(last_csize[i])/csize[i], fileName)
193 def double_check(branch, commit, args, executableName, md5sum, compilerVersion, resultsFileName, filePath, fileName):
196 text = benchmark_and_compare(branch, commit, last_commit, args, executableName, md5sum, compilerVersion, resultsFileName, filePath, fileName, csize, cspeed, dspeed)
199 text = benchmark_and_compare(branch, commit, last_commit, args, executableName, md5sum, compilerVersion, resultsFileName, filePath, fileName, csize, cspeed, dspeed
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaRecorderStressTest.java 162 public void removeRecordedVideo(String fileName){
163 File video = new File(fileName);
164 Log.v(TAG, "remove recorded video " + fileName);
209 String fileName = String.format("%s/temp%d%s",
211 Log.v(TAG, fileName);
233 mRecorder.setOutputFile(fileName);
251 mp.setDataSource(fileName);
257 validateRecordedVideo(fileName);
259 removeRecordedVideo(fileName);
313 String fileName = String.format("%s/temp%d_%d%s"
    [all...]
  /external/fonttools/Lib/fontTools/
ttx.py 88 dirName, fileName = os.path.split(input)
89 fileName, ext = os.path.splitext(fileName)
92 fileName = numberAddedRE.split(fileName)[0]
93 output = os.path.join(dirName, fileName + extension)
96 output = os.path.join(dirName, fileName + "#" + repr(n) + extension)
223 def guessFileType(fileName):
224 base, ext = os.path.splitext(fileName)
226 f = open(fileName, "rb"
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Utils.java 103 public static void writeUtf8File(@Nullable String outputDir, String fileName, XMLStringBuffer xsb, String prefix) {
109 final File file = new File(outDir, fileName);
125 * Writes the content of the sb string to the file named filename in outDir encoding the output as UTF-8.
129 * @param fileName the filename
132 public static void writeUtf8File(@Nullable String outputDir, String fileName, String sb) {
135 writeFile(outDir, fileName, escapeUnicode(sb), "UTF-8", false /* don't append */);
139 * Writes the content of the sb string to the file named filename in outDir. If
143 * @param fileName the filename
    [all...]
  /art/test/671-npe-field-opts/src/
Main.java 67 String fileName, int lineNumber) {
70 assertEquals(fileName, element.getFileName());
  /cts/hostsidetests/security/securityPatch/CVE-2016-2460/
poc.cpp 44 const char *fileName = "/sdcard/test";
45 int fd = open(fileName, O_RDWR | O_CREAT, 0744);
  /external/deqp/framework/common/
tcuFunctionLibrary.cpp 63 DynamicFunctionLibrary::DynamicFunctionLibrary (const char* fileName)
64 : m_dynamicLibrary(fileName)
  /external/deqp/modules/glshared/
glsShaderLibrary.cpp 74 std::vector<tcu::TestNode*> ShaderLibrary::loadShaderFile (const char* fileName)
78 return glu::sl::parseFile(m_testCtx.getArchive(), fileName, &caseFactory);
  /external/icu/icu4c/source/samples/layout/
gdiglue.cpp 59 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status)
61 return (fm_fontMap *) new GDIFontMap((GDISurface *) surface, fileName, pointSize, (GDIGUISupport *) guiSupport, *status);
gnomelayout.cpp 53 GtkWidget *newSample(const gchar *fileName);
95 gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection));
100 newPara = Paragraph::paragraphFactory(fileName, font, guiSupport);
103 gchar *title = prettyTitle(fileName);
120 g_free(fileName);
236 GtkWidget *newSample(const gchar *fileName)
242 context->paragraph = Paragraph::paragraphFactory(fileName, font, guiSupport);
244 gchar *title = prettyTitle(fileName);
  /external/icu/icu4c/source/test/letest/
cfonts.cpp 18 le_font *le_portableFontOpen(const char *fileName,
22 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
  /external/icu/icu4c/source/test/perf/leperf/
cfonts.cpp 17 le_font *le_portableFontOpen(const char *fileName,
21 return (le_font *) new PortableFontInstance(fileName, pointSize, *status);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
HDFDataFactory.java 60 public void error(int line, String lineContent, String fileName, String errorMessage) {
62 lineContent, fileName, line, JSilverBadSyntaxException.UNKNOWN_POSITION, null);
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.h 93 void Init(const FString &folderPrefix, const FString &fileName)
96 if (!_fileInfo.Find(_folderPrefix + fileName))
  /external/lzma/CPP/Common/
StdInStream.cpp 23 bool CStdInStream::Open(LPCTSTR fileName) throw()
26 _stream = _tfopen(fileName, kFileOpenMode);

Completed in 773 milliseconds

<<11121314151617181920>>