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

1 2 3

  /external/webkit/Tools/Scripts/
show-pretty-diff 63 my $prettyPatchDir = sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/";
64 my $prettyPatchTool = sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/prettify.rb";
66 my $pathToPrettify = "ruby -I " . sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/ " . sourceDir() . "/Websites/bugs.webkit.org/PrettyPatch/prettify.rb";
run-webkit-tests 79 push(@ARGV, sourceDir() . "/layout-test-results");
update-webkit-support-libs 44 my $sourceDir = sourceDir();
47 my $zipDirectory = toUnixPath($ENV{'WEBKITSUPPORTLIBRARIESZIPDIR'}) || $sourceDir;
49 my $webkitLibrariesDir = toUnixPath($ENV{'WEBKITLIBRARIESDIR'}) || "$sourceDir/WebKitLibraries/win";
142 $sourceDir
run-webkit-websocketserver 47 my $srcDir = sourceDir();
webkitdirs.pm 60 my $sourceDir;
89 return if $sourceDir;
90 $sourceDir = $FindBin::Bin;
91 $sourceDir =~ s|/+$||; # Remove trailing '/' as we would die later
95 until ((-d "$sourceDir/Source" && -d "$sourceDir/Source/WebCore" && -d "$sourceDir/Source/WebKit") || (-d "$sourceDir/Internal" && -d "$sourceDir/OpenSource"))
97 if ($sourceDir !~ s|/[^/]+$||)
    [all...]
run-pageloadtest 71 my $webkitPath = sourceDir();
update-webkit-dependency 67 my $sourceDir = sourceDir();
70 my $webkitLibrariesDir = toUnixPath($ENV{'WEBKITLIBRARIESDIR'}) || "$sourceDir/WebKitLibraries/win";
update-iexploder-cssproperties 61 my $path = File::Spec->abs2rel($filename, sourceDir());
112 $iexploderPath = File::Spec->catfile(sourceDir(), "Tools", "iExploder", "iExploder-1.3.2", "htdocs", split("/", $iexploderPath));
113 $webcorePath = File::Spec->catfile(sourceDir(), "Source", "WebCore", split("/", $webcorePath));
  /external/webkit/Tools/BuildSlaveSupport/
build-launcher-app 52 my $sourceDir = sourceDir();
53 if (isSVNDirectory($sourceDir)) {
55 } elsif (isGitDirectory($sourceDir)) {
56 my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
64 my $sourceDir = sourceDir();
66 if (isSVNDirectory($sourceDir)) {
67 my $svnInfo = `LC_ALL=C svn info $sourceDir | grep URL:`;
69 } elsif (isGitDirectory($sourceDir)) {
    [all...]
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
CtsJavaScanner.java 34 File sourceDir = null;
39 sourceDir = new File(getArg(args, ++i, "Missing value for source directory"));
48 if (sourceDir == null) {
58 DocletRunner runner = new DocletRunner(sourceDir, docletPath);
DocletRunner.java 30 DocletRunner(File sourceDir, File docletPath) {
31 mSourceDir = sourceDir;
64 private String getSourcePath(File sourceDir) {
76 sourcePath.add(sourceDir.toString());
86 private List<String> getSourceFiles(File sourceDir) {
89 File[] files = sourceDir.listFiles(new FileFilter() {
  /cts/tools/cts-native-scanner/src/com/android/cts/nativescanner/
CtsNativeScanner.java 35 File sourceDir = null;
40 sourceDir = new File(getArg(args, ++i, "Missing value for source directory"));
49 if (sourceDir == null) {
59 TestScanner scanner = new TestScanner(sourceDir, testSuite);
TestScanner.java 50 TestScanner(File sourceDir, String testSuite) {
51 mSourceDir = sourceDir;
  /frameworks/base/core/java/android/content/pm/
InstrumentationInfo.java 37 public String sourceDir;
41 * and manifest). For non-forward-locked apps this will be the same as {@link #sourceDir).
71 sourceDir = orig.sourceDir;
92 dest.writeString(sourceDir);
113 sourceDir = source.readString();
ApplicationInfo.java 382 public String sourceDir;
387 * non-forward-locked apps this will be the same as {@link #sourceDir).
478 pw.println(prefix + "sourceDir=" + sourceDir);
479 if (sourceDir == null) {
483 } else if (!sourceDir.equals(publicSourceDir)) {
555 sourceDir = orig.sourceDir;
595 dest.writeString(sourceDir);
634 sourceDir = source.readString()
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryFactory.java 104 final String sourceDir = context.getApplicationInfo().sourceDir;
105 final File packagePath = new File(sourceDir);
108 Log.e(TAG, "sourceDir is not a file: " + sourceDir);
111 return new BinaryDictionary(sourceDir, afd.getStartOffset(), afd.getLength(),
  /external/smali/smali/
build.gradle 58 for (sourceDir in (sourceDirs + testSourceDirs)) {
59 excludeDirs.remove(sourceDir);
60 while ((sourceDir = sourceDir.getParentFile()) != null) {
61 excludeDirs.remove(sourceDir);
  /cts/tests/tests/content/src/android/content/pm/cts/
InstrumentationInfoTest.java 61 assertEquals(expected.sourceDir, actual.sourceDir);
ApplicationInfoTest.java 64 assertEquals(mApplicationInfo.sourceDir, info.sourceDir);
PackageInfoTest.java 95 assertEquals(expected.sourceDir, actual.sourceDir);
  /pdk/build/
prepare_pdk_tree.py 115 sourceDir = os.path.abspath('.')
142 mountf.write("mount --bind " + sourceDir + "/" + subdir + " " + targetDir + "/" + subdir + \
146 create_symbolic_link(sourceDir, targetDir, file_name)
  /external/libffi/testsuite/
run-all-tests 65 sourceDir=`pwd`
  /external/icu4c/tools/ctestfw/unicode/
uperf.h 154 const char* sourceDir;
  /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);
64 AKLOGE("DICT: Can't open sourceDir. sourceDirChars=%s errno=%d", sourceDirChars, errno);
82 AKLOGE("DICT: Can't fopen sourceDir. sourceDirChars=%s errno=%d", sourceDirChars, errno);
  /external/icu4c/tools/ctestfw/
uperf.cpp 31 "\t-s or --sourcedir source directory for files followed by path\n"
51 SOURCEDIR,
85 fileName(NULL), sourceDir("."),
101 fileName(NULL), sourceDir("."),
142 if(options[SOURCEDIR].doesOccur) {
143 sourceDir = options[SOURCEDIR].value;
190 ucbuf_resolveFileName(sourceDir, fileName, NULL, &len, &status);
199 ucbuf_resolveFileName(sourceDir, fileName, resolvedFileName, &len, &status);

Completed in 1124 milliseconds

1 2 3