Searched refs:dataDir (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/icu/source/tools/gensprep/
H A Dgensprep.h55 generateData(const char *dataDir, const char* bundleName);
H A Dstore.c548 generateData(const char *dataDir, const char* bundleName) { argument
587 pData=udata_create(dataDir, DATA_TYPE, fileName, &dataInfo,
/external/icu/icu4c/source/tools/gensprep/
H A Dgensprep.h55 generateData(const char *dataDir, const char* bundleName);
H A Dstore.c548 generateData(const char *dataDir, const char* bundleName) { argument
587 pData=udata_create(dataDir, DATA_TYPE, fileName, &dataInfo,
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DContextTest.java64 File dataDir = new File(ShadowContext.FILES_DIR, "data");
65 assertThat(dataDir.mkdir(), is(true));
67 dataDir = context.getDir("data", Context.MODE_PRIVATE);
68 assertThat(dataDir, not(nullValue()));
69 assertThat(dataDir.exists(), is(true));
75 File dataDir = new File(ShadowContext.FILES_DIR, "data");
76 assertThat(dataDir.exists(), is(false));
78 dataDir = context.getDir("data", Context.MODE_PRIVATE);
79 assertThat(dataDir, not(nullValue()));
80 assertThat(dataDir
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java88 File dataDir = new File("/data/data/" + packageName);
89 if (isWriteableDirectory(dataDir)) {
90 File cacheDir = new File(dataDir, "cache");
/external/littlemock/src/com/google/testing/littlemock/
H A DAppDataDirGuesser.java103 File dataDir = new File("/data/data/" + packageName);
104 if (isWriteableDirectory(dataDir)) {
105 File cacheDir = new File(dataDir, "cache");
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dhpmufn.c61 const char *dataDir = u_getDataDirectory(); /* Returned string vanashes with u_cleanup */ local
63 if (dataDir != NULL) {
64 retStr = (char *)malloc(strlen(dataDir)+1);
65 strcpy(retStr, dataDir);
H A Dcintltst.c444 const char *dataDir = u_getDataDirectory(); /* Returned string vanashes with u_cleanup */ local
446 if (dataDir != NULL) {
447 retStr = (char *)malloc(strlen(dataDir)+1);
448 strcpy(retStr, dataDir);
455 char *dataDir = safeGetICUDataDirectory(); local
462 u_setDataDirectory(dataDir);
463 free(dataDir);
H A Dudatatst.c494 const char *dataDir = u_getDataDirectory(); /* Returned string vanashes with u_cleanup */ local
496 if (dataDir != NULL) {
497 retStr = (char *)malloc(strlen(dataDir)+1);
498 strcpy(retStr, dataDir);
/external/icu/icu4c/source/test/cintltst/
H A Dhpmufn.c61 const char *dataDir = u_getDataDirectory(); /* Returned string vanashes with u_cleanup */ local
63 if (dataDir != NULL) {
64 retStr = (char *)malloc(strlen(dataDir)+1);
65 strcpy(retStr, dataDir);
H A Dcintltst.c444 const char *dataDir = u_getDataDirectory(); /* Returned string vanashes with u_cleanup */ local
446 if (dataDir != NULL) {
447 retStr = (char *)malloc(strlen(dataDir)+1);
448 strcpy(retStr, dataDir);
455 char *dataDir = safeGetICUDataDirectory(); local
462 u_setDataDirectory(dataDir);
463 free(dataDir);
H A Dudatatst.c494 const char *dataDir = u_getDataDirectory(); /* Returned string vanashes with u_cleanup */ local
496 if (dataDir != NULL) {
497 retStr = (char *)malloc(strlen(dataDir)+1);
498 strcpy(retStr, dataDir);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DPerformancesView.java137 File dataDir; field in class:PerformancesView
209 String filter = (this.dataDir == null) ? localDataDir : this.dataDir.getPath();
210 File dir = this.dataDir;
211 this.dataDir = changeDir(filter, "Select directory for data local files");
213 if (this.dataDir != null) {
214 this.preferences.put(IPerformancesConstants.PRE_LOCAL_DATA_DIR, this.dataDir.getAbsolutePath());
215 if (dir != null && dir.getPath().equals(this.dataDir.getPath())) {
235 return resultsView.dataDir = this.dataDir;
[all...]
H A DBuildsView.java143 BuildsView.this.dataDir,
202 if (BuildsView.this.dataDir == null) {
526 this.dataDir = null;
527 siblingView.dataDir = null;
568 this.dataDir = null;
569 siblingView.dataDir = null;
636 if (this.dataDir == null) {
641 this.results.updateBuild(null, true, this.dataDir, monitor);
643 this.results.updateBuilds(builds, force, this.dataDir, monitor);
648 if (this.dataDir
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DPerformanceResults.java348 private String[] read(boolean local, String buildName, String[][] configs, boolean force, File dataDir, String taskName, SubMonitor subMonitor) { argument
349 if (local && dataDir == null) {
424 componentResults.readLocalFile(dataDir, scenarios);
434 componentResults.updateBuild(buildName, scenarios, force, dataDir, subMonitor.newChild(1), timeGuess);
441 writeData(dataDir);
460 * @param dataDir The directory where data will be read/stored locally.
469 public String[] readAll(String buildName, String[][] configs, String pattern, File dataDir, int threshold, IProgressMonitor monitor) { argument
480 reset(dataDir);
481 String[] names = read(true, null, configs, true, dataDir, null, subMonitor.newChild(100));
485 return read(false, null, configs, true, dataDir, nul
518 readLocal(File dataDir, IProgressMonitor monitor) argument
639 reset(File dataDir) argument
812 updateBuilds(String[] builds, boolean force, File dataDir, IProgressMonitor monitor) argument
856 updateBuild(String buildName, boolean force, File dataDir, IProgressMonitor monitor) argument
[all...]
H A DComponentResults.java324 void updateBuild(String buildName, List scenarios, boolean force, File dataDir, SubMonitor subMonitor, PerformanceResults.RemainingTimeGuess timeGuess) { argument
372 if (dataDir != null && dirty && (System.currentTimeMillis() - readTime) > 300000) { // save every 5mn
373 writeData(buildName, dataDir, true, true);
385 if (dataDir != null) {
386 writeData(buildName, dataDir, false, dirty);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DPerformanceResultsElement.java160 public void readLocal(File dataDir, IProgressMonitor monitor, String lastBuild) { argument
164 performanceResults.readLocal(dataDir, monitor);
181 public void updateBuild(String buildName, boolean force, File dataDir, IProgressMonitor monitor) { argument
185 getPerformanceResults().updateBuild(buildName, force, dataDir, monitor);
188 public void updateBuilds(String[] builds, boolean force, File dataDir, IProgressMonitor monitor) { argument
192 getPerformanceResults().updateBuilds(builds, force, dataDir, monitor);
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A Dpkgtypes.h115 const char *dataDir; /* parent of dir for package (default: tmpdir) */ member in struct:UPKGOptions_
/external/icu/icu4c/source/tools/pkgdata/
H A Dpkgtypes.h115 const char *dataDir; /* parent of dir for package (default: tmpdir) */ member in struct:UPKGOptions_
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DGenerateResults.java68 * This field is set using <b>-dataDir</b> argument.
71 * <pre>-dataDir /tmp</pre>
73 File dataDir; field in class:GenerateResults
190 this.dataDir = data;
315 if (arg.equals("-dataDir")) {
321 this.dataDir = new File(dir);
322 if (!this.dataDir.exists() && !this.dataDir.mkdirs()) {
1040 this.performanceResults.readAll(buildName, this.configDescriptors, this.scenarioPattern, this.dataDir, this.failure_threshold, null);
/external/libselinux/src/
H A Dandroid.c894 char *dataDir; member in struct:pkgInfo
955 pkgInfo->dataDir = strdup(cur);
956 if (!pkgInfo->dataDir)
984 selinux_log(SELINUX_INFO, "%s: name=%s uid=%u debuggable=%s dataDir=%s seinfo=%s\n",
986 pkgInfo->name, pkgInfo->uid, pkgInfo->debuggable ? "true" : "false", pkgInfo->dataDir, pkgInfo->seinfo);
1007 free(pkgInfo->dataDir);
/external/qemu/distrib/libselinux/src/
H A Dandroid.c868 char *dataDir; member in struct:pkgInfo
929 pkgInfo->dataDir = strdup(cur);
930 if (!pkgInfo->dataDir)
958 selinux_log(SELINUX_INFO, "%s: name=%s uid=%u debuggable=%s dataDir=%s seinfo=%s\n",
960 pkgInfo->name, pkgInfo->uid, pkgInfo->debuggable ? "true" : "false", pkgInfo->dataDir, pkgInfo->seinfo);
981 free(pkgInfo->dataDir);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 962 milliseconds

12