HomeSort by relevance Sort by last modified time
    Searched full:sourcedir (Results 51 - 75 of 179) sorted by null

1 23 4 5 6 7 8

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
XLIFF2ICUConverter.java 42 private static final int SOURCEDIR = 2;
52 UOption.SOURCEDIR(),
142 private String sourceDir = null;
170 if(options[SOURCEDIR].doesOccur) {
171 sourceDir = options[SOURCEDIR].value;
219 "-s or --sourcedir source directory for files followed by path, default is current directory.\n" +
257 if(sourceDir != null && fName != null) {
258 str = sourceDir + File.separator + fName;
    [all...]
  /external/icu/icu4c/source/test/perf/dicttrieperf/
dicttrieperf.cpp 20 * ./dicttrieperf --sourcedir <ICU build tree>/data/out/tmp --passes 3 --iterations 1000
67 const char *getSourceDir() const { return sourceDir; }
77 // from the -s or --sourcedir path.
324 // from the -s or --sourcedir path plus -f or --file-name.
675 puts("Running BytesTrie perf tests on the .dat package file from the --sourcedir.\n"
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/
FileWrapper.java 506 boolean sourceDir = isDirectory();
507 if (!sourceDir) {
518 if (!sourceDir) dest = dest.child(name());
592 static private void copyDirectory (FileWrapper sourceDir, FileWrapper destDir) {
594 FileWrapper[] files = sourceDir.list();
PreloaderBundleGenerator.java 149 private void copyDirectory (FileWrapper sourceDir, FileWrapper destDir, AssetFilter filter, ArrayList<Asset> assets) {
153 FileWrapper[] files = sourceDir.list();
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 45 static jlong latinime_BinaryDictionary_open(JNIEnv *env, jclass clazz, jstring sourceDir,
49 const jsize sourceDirUtf8Length = env->GetStringUTFLength(sourceDir);
51 AKLOGE("DICT: Can't get sourceDir string");
55 env->GetStringUTFRegion(sourceDir, 0, env->GetStringLength(sourceDir), sourceDirChars);
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 121 private static Class<?> getIdClass(String packageName, String sourceDir)
128 sourceDir, "/data/local/tmp",
174 klass = getIdClass(packageName, appInfo.sourceDir);
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 96 CompilationDatabase::autoDetectFromDirectory(StringRef SourceDir,
98 SmallString<1024> AbsolutePath(getAbsolutePath(SourceDir));
105 SourceDir + "\"\n" + ErrorMessage).str();
  /external/icu/icu4c/source/tools/gensprep/
filterRFC3454.pl 35 "--sourcedir=s" => \$sourceDir,
61 usage() unless defined $sourceDir;
66 $infile = $sourceDir."/".$srcFileName;
639 --sourcedir=<directory>
667 e.g.: filterRFC3454.pl --sourcedir=. --destdir=./output --src-filename=rfc3454.txt --dest-filename=NamePrepProfile.txt --A1 --B1 --B2 --C12 --C22 --C3 --C4 --C5 --C6 --C7 --C8 --C9 --normalize --check-bidi
  /development/build/tools/
mk_sources_zip.py 93 [ "exec-zip", "verbose", "dry", "sourcedir=" ])
105 elif o in [ "-s", "--sourcedir" ]:
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 105 /// Looks for a compilation database in directory 'SourceDir' and all
108 autoDetectFromDirectory(StringRef SourceDir, std::string &ErrorMessage);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/
UOption.java 77 public static UOption SOURCEDIR() { return create("sourcedir", 's', REQUIRES_ARG); }
  /frameworks/base/services/core/java/com/android/server/
PinnerService.java 154 if (mPinnedCameraFiles.get(i).mFilename.equals(cameraInfo.sourceDir)) {
219 String camAPK = cameraInfo.sourceDir;
  /external/icu/icu4c/source/tools/genrb/
genrb.cpp 60 SOURCEDIR,
196 "\t-s or --sourcedir source directory for files followed by path, defaults to %s\n"
246 if(options[SOURCEDIR].doesOccur) {
247 inputDir = options[SOURCEDIR].value;
  /external/icu/icu4c/source/tools/toolutil/
uoptions.h 74 #define UOPTION_SOURCEDIR UOPTION_DEF("sourcedir", 's', UOPT_REQUIRES_ARG)
  /frameworks/base/core/java/android/webkit/
WebViewDelegate.java 184 final String newAssetPath = WebViewFactory.getLoadedPackageInfo().applicationInfo.sourceDir;
WebViewFactory.java 340 webViewContext.getApplicationInfo().sourceDir);
533 path32 = getLoadFromApkPath(ai.sourceDir,
542 path64 = getLoadFromApkPath(ai.sourceDir,
  /packages/services/Car/service/src/com/android/car/cluster/
InstrumentClusterRendererLoader.java 93 String clusterRendererApk = packageManager.getApplicationInfo(packageName, 0).sourceDir;
  /external/libgdx/gdx/src/com/badlogic/gdx/files/
FileHandle.java 571 boolean sourceDir = isDirectory();
572 if (!sourceDir) {
583 if (!sourceDir) dest = dest.child(name());
689 static private void copyDirectory (FileHandle sourceDir, FileHandle destDir) {
691 FileHandle[] files = sourceDir.list();
  /frameworks/multidex/library/src/android/support/multidex/
MultiDexExtractor.java 87 Log.i(TAG, "MultiDexExtractor.load(" + applicationInfo.sourceDir + ", " + forceReload + ")");
88 final File sourceApk = new File(applicationInfo.sourceDir);
  /development/apps/Development/src/com/android/development/
PackageSummary.java 128 mSource.setText(info.applicationInfo.sourceDir);
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 207 SOURCEDIR,
232 options[DESTDIR].value=options[SOURCEDIR].value=u_getDataDirectory();
251 "\t-s or --sourcedir source directory, followed by the path\n",
267 path=options[SOURCEDIR].value;
    [all...]
  /external/proguard/docs/manual/
attributes.html 81 <code><b>SourceDir</b></code></dt>
  /external/testng/ant/3rdparty/
DTDDoc.jar 
  /frameworks/base/core/java/android/app/
LoadedApk.java 303 mAppDir = aInfo.sourceDir;
304 mResDir = aInfo.uid == myUid ? aInfo.sourceDir : aInfo.publicSourceDir;
318 final String appDir = aInfo.sourceDir;
581 codePaths.add(mApplicationInfo.sourceDir);
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
BroadcastRecord.java 176 pw.println(curReceiver.applicationInfo.sourceDir);

Completed in 1300 milliseconds

1 23 4 5 6 7 8