/build/tools/zipalign/ |
ZipAlign.cpp | 150 static int verify(const char* fileName, int alignment, bool verbose) 156 printf("Verifying alignment of %s (%d)...\n", fileName, alignment); 158 if (zipFile.open(fileName, ZipFile::kOpenReadOnly) != NO_ERROR) { 159 fprintf(stderr, "Unable to open '%s' for verification\n", fileName);
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
MultipartForm.java | 52 public MultipartForm addFormFile(String name, String fileName, byte[] data) { 54 mFileName = fileName; 136 private void writeFormFileHeader(PrintWriter writer, String name, String fileName) { 139 writer.append("\"; filename=\"").append(fileName).println("\"");
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
rhino-python.prog | 3 function loadFile(fileName, encoding) { 4 var f = new java.io.File(fileName),
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
FileUtils.js | 93 fileName: function() { }, 154 fileName: function() 225 * @param {string} fileName 228 open: function(fileName, callback) 232 this._fileName = fileName;
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
ImeOnFocusTest.cpp | 70 void runImeOnFocusTest(std::string fileName, int, IntPoint tapPoint = IntPoint(-1, -1), const WTF::AtomicString& focusElement = WTF::nullAtom, std::string frame = ""); 98 void ImeOnFocusTest::runImeOnFocusTest(std::string fileName, int expectedImeRequestCount, IntPoint tapPoint, const WTF::AtomicString& focusElement, std::string frame) 101 registerMockedURLFromBaseURL(WebString::fromUTF8(m_baseURL), WebString::fromUTF8(fileName)); 105 loadFrame(webView->mainFrame(), m_baseURL + fileName);
|
ProgrammaticScrollTest.cpp | 41 void registerMockedHttpURLLoad(const std::string& fileName) 43 URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(m_baseURL.c_str()), WebString::fromUTF8(fileName.c_str()));
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
usprep.h | 174 * @param fileName name of the profile file to be opened 184 const char* fileName,
|
/external/chromium_org/third_party/icu/source/samples/layout/ |
FontMap.h | 22 FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
crestst.c | 775 char* fileName = (char*) malloc(uprv_strlen(testdatapath) +10); 797 uprv_strcpy(fileName,testdatapath); 798 uprv_strcat(fileName,".dat"); 799 stream = T_FileStream_open(fileName, "r"); 801 log_data_err("T_FileStream_open failed to open %s\n",fileName); 803 if(!T_FileStream_file_exists(fileName)){ 804 log_data_err("T_FileStream_file_exists failed to verify existence of %s \n",fileName); 809 log_data_err("T_FileStream_read failed to read from %s \n",fileName); 815 log_data_err("T_FileStream_rewind failed to rewind %s \n",fileName); 820 log_data_err("T_FileStream_peek failed to peekd %s \n",fileName); [all...] |
/external/chromium_org/third_party/skia/tools/lua/ |
bitmap_statistics.lua | 18 function sk_scrape_startcanvas(c, fileName) 22 function sk_scrape_endcanvas(c, fileName)
|
/external/deqp/framework/common/ |
tcuFunctionLibrary.hpp | 77 DynamicFunctionLibrary (const char* fileName);
|
/external/deqp/framework/delibs/deimage/ |
deTarga.c | 30 deImage* deImage_loadTarga (const char* fileName) 35 file = fopen(fileName, "rb"); 119 deBool deImage_saveTarga (const deImage* image, const char* fileName) 137 file = fopen(fileName, "wb");
|
/external/icu/icu4c/source/common/unicode/ |
usprep.h | 174 * @param fileName name of the profile file to be opened 184 const char* fileName,
|
/external/icu/icu4c/source/samples/layout/ |
FontMap.h | 22 FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
|
/external/icu/icu4c/source/test/cintltst/ |
crestst.c | 773 char* fileName = (char*) malloc(uprv_strlen(testdatapath) +10); 795 uprv_strcpy(fileName,testdatapath); 796 uprv_strcat(fileName,".dat"); 797 stream = T_FileStream_open(fileName, "r"); 799 log_data_err("T_FileStream_open failed to open %s\n",fileName); 801 if(!T_FileStream_file_exists(fileName)){ 802 log_data_err("T_FileStream_file_exists failed to verify existence of %s \n",fileName); 807 log_data_err("T_FileStream_read failed to read from %s \n",fileName); 813 log_data_err("T_FileStream_rewind failed to rewind %s \n",fileName); 818 log_data_err("T_FileStream_peek failed to peekd %s \n",fileName); [all...] |
/external/skia/tools/ |
image_expectations.h | 106 * @param fileName relative path to the image output file on local disk 110 void add(const char *sourceName, const char *fileName, const ImageDigest &digest, 127 * @param filename path to write the summary to 129 void writeToFile(const char *filename) const;
|
/external/skia/tools/lua/ |
bitmap_statistics.lua | 18 function sk_scrape_startcanvas(c, fileName) 22 function sk_scrape_endcanvas(c, fileName)
|
/external/srec/tools/grxmlcompile/ |
hashmap.h | 45 void writeFile( std::string fileName );
|
/frameworks/base/tools/preload/ |
Root.java | 134 void toFile(String fileName) throws IOException { 135 FileOutputStream out = new FileOutputStream(fileName); 151 static Root fromFile(String fileName) 153 FileInputStream fin = new FileInputStream(fileName);
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldJarFileTest.java | 54 String fileName = (new File(resources, jarName)).getCanonicalPath(); 55 new JarFile(fileName); 66 String fileName = (new File(resources, jarName)).getCanonicalPath(); 67 new JarFile(fileName, true);
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
OldAndroidZipFileTest.java | 100 static void scanZip(String fileName) throws IOException { 101 ZipFile zipFile = new ZipFile(fileName); 123 static void read2(String fileName) throws IOException { 131 zipFile = new ZipFile(fileName);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/ |
file_utils.cpp | 108 const char *const fileName) { 109 return strlen(dirPath) + 1 /* '/' */ + strlen(fileName) + 1 /* terminator */; 112 /* static */ void FileUtils::getFilePath(const char *const dirPath, const char *const fileName, 114 snprintf(outFilePath, filePathBufSize, "%s/%s", dirPath, fileName);
|
mmapped_buffer.h | 38 static MmappedBufferPtr openBuffer(const char *const dirPath, const char *const fileName,
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
NewXmlFileWizard.java | 391 * Returns the destination filename or an empty string. 393 * @return the filename, never null. 396 String fileName; 398 fileName = ""; //$NON-NLS-1$ 400 fileName = name.trim(); 401 if (fileName.length() > 0 && fileName.indexOf('.') == -1) { 402 fileName = fileName + SdkConstants.DOT_XML; 406 return fileName; [all...] |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceRandomScript.java | 63 for (String fileName: scriptFileNames) { 64 mScriptSources.add(new MonkeySourceScript(random, fileName, throttle,
|