HomeSort by relevance Sort by last modified time
    Searched refs:dirName (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt/tests/
AaptGroupEntry_test.cpp 26 static ::testing::AssertionResult TestParse(AaptGroupEntry& entry, const String8& dirName,
28 if (entry.initFromDirName(dirName, outType)) {
29 return ::testing::AssertionSuccess() << dirName << " was successfully parsed";
31 return ::testing::AssertionFailure() << dirName << " could not be parsed";
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
X509Principal.java 109 String dirName)
111 super(dirName);
123 String dirName)
125 super(reverse, dirName);
141 String dirName)
143 super(reverse, lookUp, dirName);
  /cts/suite/audio_quality/lib/src/
Log.cpp 28 Log* Log::Instance(const char* dirName)
32 ASSERT_PLAIN(mInstance->init(dirName));
65 bool Log::init(const char* dirName)
67 if (dirName == NULL) {
71 if (logFile.appendFormat("%s/log.txt", dirName) != 0) {
Report.cpp 26 Report* Report::Instance(const char* dirName)
30 ASSERT(mInstance->init(dirName));
53 bool Report::init(const char* dirName)
55 if (dirName == NULL) {
59 if (report.appendFormat("%s/report.xml", dirName) != 0) {
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
JarUtils.java 60 public boolean accept(String dirName, String name);
70 final String dirName = (pos >= 0) ? path.substring(0, pos) : "";
72 if (filter.accept(dirName, name)) {
83 public boolean accept(final String dirName, final String name) {
93 final String dirName = jarEntryName.substring(0, jarEntryName.lastIndexOf('/'));
94 final int pos = dirName.lastIndexOf('/');
95 final String parentName = (pos >= 0) ? dirName.substring(pos + 1) : dirName;
  /cts/suite/audio_quality/lib/include/
Report.h 37 static Report* Instance(const char* dirName = NULL);
48 bool init(const char* dirName);
Log.h 36 static Log* Instance(const char* dirName = NULL);
48 virtual bool init(const char* dirName);
  /cts/tools/utils/
rm_dup_holo_imgs.py 51 def getAllHashes(dirName):
53 for f in os.listdir(dirName):
55 files[f] = getHash(open(dirName + "/" + f, 'rb'))
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputFactoryService.java 106 String dirName = options.configProperties().get(LOG_DIRECTORY_PROPERTY);
108 if (dirName != null) {
109 directory = new File(dirName);
114 dirName, LOG_DIRECTORY_PROPERTY));
119 dirName, LOG_DIRECTORY_PROPERTY));
  /frameworks/base/tools/aapt2/
Locale.cpp 228 std::string dirName;
230 dirName += language;
232 return dirName;
236 dirName += "-s";
237 dirName += script;
241 dirName += "-r";
242 dirName += region;
246 dirName += "-v";
247 dirName += variant;
250 return dirName;
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskSave.cpp 61 android::String8 dirName;
62 if (!FileUtil::prepare(dirName)) {
70 dirName.appendPath(caseName);
71 int result = mkdir(dirName.string(), S_IRWXU);
73 LOGE("mkdir of save dir %s failed, error %d", dirName.string(), errno);
88 android::String8 fileName(dirName);
  /external/deqp/scripts/
build_caselists.py 35 def __init__ (self, name, dirName, binName):
37 self.dirName = dirName
74 fullPath = os.path.join(modulesDir, module.dirName)
84 return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseListType))
87 workDir = os.path.join(getModulesPath(buildCfg), module.dirName)
  /cts/suite/audio_quality/executable/src/
main.cpp 87 android::String8 dirName;
88 if (!FileUtil::prepare(dirName)) {
102 if (Log::Instance(dirName.string()) == NULL) {
108 if (Report::Instance(dirName.string()) == NULL) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
X500NameStyle.java 35 * @param dirName the String representation.
38 RDN[] fromString(String dirName);
  /external/deqp/external/vulkancts/
build_spirv_binaries.py 31 sys.path.append(os.path.join(os.path.dirname(__file__), "..", "..", "scripts"))
38 def __init__ (self, name, dirName, binName):
40 self.dirName = dirName
64 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName)
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
BIG5Tool.java 64 String dirName = null;
79 if (dirName == null) {
80 dirName = args[i];
82 System.err.println("Unrecognized option: " + dirName);
86 if (dirName == null) {
87 dirName = ".";
93 File dir = new File(dirName);
95 System.err.println("\"" + dirName + "\" is not a directory");
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/utils/
AssetsFileGenerator.java 35 String dirName = directory.toString().replace("\\", "/").replace(base, "") + "/";
36 System.out.println(dirName);
  /frameworks/base/include/androidfw/
AssetManager.h 184 AssetDir* openDir(const char* dirName);
196 AssetDir* openNonAssetDir(const int32_t cookie, const char* dirName);
260 const String8& dirName, const String8& fileName);
268 const asset_path& path, const char* rootDir, const char* dirName);
271 const asset_path& path, const char* rootDir, const char* dirName);
277 const char* dirName);
281 const char* dirName);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
SharedLibraryLoader.java 144 * @param dirName The name of the subdirectory where the file will be extracted. If null, the file's CRC will be used.
146 public File extractFile (String sourcePath, String dirName) throws IOException {
149 if (dirName == null) dirName = sourceCrc;
151 File extractedFile = getExtractedFile(dirName, new File(sourcePath).getName());
176 private File getExtractedFile (String dirName, String fileName) {
179 System.getProperty("java.io.tmpdir") + "/libgdx" + System.getProperty("user.name") + "/" + dirName, fileName);
184 File file = File.createTempFile(dirName, null);
193 File file = new File(System.getProperty("user.home") + "/.libgdx/" + dirName, fileName);
197 file = new File(".temp/" + dirName, fileName);
    [all...]
  /cts/tests/filesystem/src/android/filesystem/cts/
FileUtil.java 71 * create a new file under the given dirName.
74 * @param dirName
77 public static File createNewFile(Context context, String dirName) {
78 File topDir = new File(context.getFilesDir(), dirName);
105 * @param dirName
109 public static File[] createNewFiles(Context context, String dirName, int count) {
112 files[i] = createNewFile(context, dirName);
138 * @param dirName
143 public static File createNewFilledFile(Context context, String dirName, long length)
145 File file = createNewFile(context, dirName);
    [all...]
  /development/ndk/platforms/android-9/include/android/
asset_manager.h 48 * pass in "" as the dirName.
52 AAssetDir* AAssetManager_openDir(AAssetManager* mgr, const char* dirName);
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.h 52 void CreateDirectory(char* dirName);
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/android/
asset_manager.h 48 * pass in "" as the dirName.
52 AAssetDir* AAssetManager_openDir(AAssetManager* mgr, const char* dirName);
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/android/
asset_manager.h 48 * pass in "" as the dirName.
52 AAssetDir* AAssetManager_openDir(AAssetManager* mgr, const char* dirName);
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/android/
asset_manager.h 48 * pass in "" as the dirName.
52 AAssetDir* AAssetManager_openDir(AAssetManager* mgr, const char* dirName);

Completed in 574 milliseconds

1 2 3 4 5 6 7 8 91011>>