HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 576 - 600 of 849) sorted by null

<<21222324252627282930>>

  /prebuilts/gradle-plugin/com/android/tools/lint/lint/22.2.0/
lint-22.2.0.jar 
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-gradle/4.9/
proguard-gradle-4.9.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeMoveParticipant.java 211 String fileName = member.getName();
213 if (SdkUtils.endsWith(fileName, DOT_XML)) {
  /build/tools/zipalign/
ZipFile.cpp 146 ZipEntry* ZipFile::getEntryByName(const char* fileName) const
163 strcmp(fileName, pEntry->getFileName()) == 0)
358 status_t ZipFile::addCommon(const char* fileName, const void* data, size_t size,
384 inputFp = fopen(fileName, FILE_OPEN_RO);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecodeEditEncodeTest.java 164 String fileName = "vedit1_" + mWidth + "x" + mHeight + ".mp4";
165 sourceChunks.saveToFile(new File(dirName, fileName));
172 String fileName = "vedit2_" + mWidth + "x" + mHeight + ".mp4";
173 destChunks.saveToFile(new File(dirName, fileName));
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
RandomPhrase.java 182 lexer.fileName = grammarFileName;
  /external/chromium_org/chrome/browser/resources/file_manager/background/js/
file_operation_handler.js 134 var fileName = event.entries[0].name;
135 return strf('DELETE_FILE_NAME', fileName);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
generate_bindings.pl 178 my @interfaceIdlFiles = ($targetDocument->fileName(), @dependencyIdlFiles);
  /external/chromium_org/third_party/icu/source/tools/genrb/
reslist.h 164 struct SResource *bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 96 $fileName = $latestFile[$prefix];
100 $parts = explode("-", $fileName);
103 // echo "<td><a href=license.php?license=drops/$fileName>$parts[1]</a></td>";
106 echo "<td><a href=\"drops/$fileName/index.html\">$parts[1]</a></td>";
108 echo "<td>$timeStamps[$fileName]</td>";
  /external/icu4c/tools/genrb/
reslist.h 164 struct SResource *bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status);
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 60 LineReader(std::string filename) {
62 fstr.open(filename.c_str());
63 theFileName = filename;
65 std::string fileName() { return theFileName; }
180 virtual void emitSrcInText(StringRef filename, unsigned line);
252 // To record filename to ID mapping
  /external/qemu/android/
main.c 114 _getFullFilePath( const char* rootPath, const char* fileName )
116 if (path_is_absolute(fileName)) {
117 return ASTRDUP(fileName);
121 p = bufprint(temp, end, "%s/%s", rootPath, fileName);
    [all...]
  /external/skia/tools/
skdiff_main.cpp 219 SkString fileName;
220 while (fileIterator.next(&fileName, false)) {
221 if (fileName.startsWith(".")) {
228 pathRelativeToRootDir.append(fileName);
257 /// Iterate over dir and get all files whose filename:
391 // Found the same filename in both baseDir and comparisonDir.
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppCacheTest.java 204 String fileName = "testFile1.txt";
208 FileOutputStream fos = con.openFileOutput(fileName, Context.MODE_PRIVATE);
219 String fileName = "testFile1.txt";
222 File file = new File(con.getCacheDir(), fileName);
  /frameworks/base/tools/aapt/
XMLNode.h 23 const char* fileName,
43 sp<XMLNode> newNamespace(const String8& filename, const String16& prefix, const String16& uri) {
44 return new XMLNode(filename, prefix, uri, true);
48 sp<XMLNode> newElement(const String8& filename, const String16& ns, const String16& name) {
49 return new XMLNode(filename, ns, name, false);
53 sp<XMLNode> newCData(const String8& filename) {
54 return new XMLNode(filename);
145 String8 filename; member in struct:XMLNode::ParseState
167 XMLNode(const String8& filename, const String16& s1, const String16& s2, bool isNamespace);
170 XMLNode(const String8& filename);
    [all...]
ZipFile.cpp 146 ZipEntry* ZipFile::getEntryByName(const char* fileName) const
163 strcmp(fileName, pEntry->getFileName()) == 0)
358 status_t ZipFile::addCommon(const char* fileName, const void* data, size_t size,
384 inputFp = fopen(fileName, FILE_OPEN_RO);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 146 String fileName = (new File(resources, jarName)).getCanonicalPath();
147 JarFile jarFile = new JarFile(fileName);
166 String fileName = (new File(resources, jarName)).getCanonicalPath();
167 JarFile jarFile = new JarFile(fileName, true);
    [all...]
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java     [all...]
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 98 SelectionObjAttrs(String fileName, String mimeType) {
99 mFileName = fileName;
588 // the download manager should always find a free filename for cache downloads,
648 String fileName, String mimeType) {
650 mSelectedIds.put(downloadId, new SelectionObjAttrs(fileName, mimeType));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py 58 def __init__(self, filename, mode, encoding=None, delay=0):
60 Use the specified filename for streamed logging
64 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
89 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0):
117 BaseRotatingHandler.__init__(self, filename, mode, encoding, delay)
168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
169 BaseRotatingHandler.__init__(self, filename, 'a', encoding, delay)
174 # seconds between rollovers. Also set the filename suffix used when
215 if os.path.exists(filename):
216 t = os.stat(filename)[ST_MTIME
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py 58 def __init__(self, filename, mode, encoding=None, delay=0):
60 Use the specified filename for streamed logging
64 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
89 def __init__(self, filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0):
117 BaseRotatingHandler.__init__(self, filename, mode, encoding, delay)
168 def __init__(self, filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False):
169 BaseRotatingHandler.__init__(self, filename, 'a', encoding, delay)
174 # seconds between rollovers. Also set the filename suffix used when
215 if os.path.exists(filename):
216 t = os.stat(filename)[ST_MTIME
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 736 String fileName = getDexFileName(inputFile);
738 File dexedLib = new File(dexedLibs, fileName);
746 String.format("Pre-Dexing %1$s -> %2$s", input, fileName));
765 fileName, input));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 117 public boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective) {
  /external/emma/core/java12/com/vladium/emma/report/html/
ReportGenerator.java     [all...]

Completed in 2187 milliseconds

<<21222324252627282930>>