HomeSort by relevance Sort by last modified time
    Searched full:rootdir (Results 126 - 150 of 709) sorted by null

1 2 3 4 56 7 8 91011>>

  /developers/samples/android/wearable/wear/WearDrawers/buildSrc/
build.gradle 12 srcDir new File(rootDir, "../../../../../../build/buildSrc/src/main/groovy")
  /developers/samples/android/wearable/wear/WearSpeakerSample/buildSrc/
build.gradle 11 srcDir new File(rootDir, "../../../../../../build/buildSrc/src/main/groovy")
  /developers/samples/android/wearable/wear/XYZTouristAttractions/buildSrc/
build.gradle 11 srcDir new File(rootDir, "../../../../../../build/buildSrc/src/main/groovy")
  /tools/external/fat32lib/
build.gradle 1 apply from: "$rootDir/buildSrc/base/baseJava.gradle"
  /hardware/bsp/intel/peripheral/libmraa/tests/
check_clean.py 6 rootDir = 'src/java'
14 for fileName in os.listdir(rootDir):
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 34 private final File rootDir;
36 public FileSystemResourceLoader(File rootDir) {
37 this.rootDir = rootDir;
40 public FileSystemResourceLoader(String rootDir) {
41 this(new File(rootDir));
46 File file = new File(rootDir, name);
61 + rootDir + "'");
73 File file = new File(rootDir, filename);
  /frameworks/opt/setupwizard/tools/gradle/
settings.gradle 2 project(':setup-wizard-lib').projectDir = new File(rootDir, 'frameworks/opt/setupwizard/library')
5 File supportLibsRoot = new File(rootDir, "prebuilts/fullsdk/linux/platforms/android-22/support")
7 supportLibsRoot = new File(rootDir, "prebuilts/fullsdk/darwin/platforms/android-22/support")
docs.gradle 9 def DOCSDIR = "$rootDir/frameworks/opt/setupwizard/tools/docs"
38 file("$rootDir/build/tools/droiddoc/templates-sdk-dev").canonicalPath)
  /build/target/product/
embedded.mk 95 system/core/rootdir/init.usb.rc:root/init.usb.rc \
96 system/core/rootdir/init.usb.configfs.rc:root/init.usb.configfs.rc \
97 system/core/rootdir/ueventd.rc:root/ueventd.rc \
98 system/core/rootdir/etc/hosts:system/etc/hosts
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateMapFileReader.java 43 private final String rootDir;
53 * rootDir to update template file paths.
54 * @param rootDir optional string to prepend to all non-absolute template filenames. Should be set
57 public PrecompiledTemplateMapFileReader(String filename, String dirPattern, String rootDir) {
60 this.rootDir = rootDir;
65 templateMap = makeTemplateMap(mapFileName, rootDir);
70 private Map<Object, String> makeTemplateMap(String templateMapFile, String rootDir)
80 rootDir);
91 Map<Object, String> templateMap, String templateMapFile, String rootDir) {
    [all...]
  /device/generic/qemu/
qemu_base.mk 80 system/core/rootdir/init.usb.rc:root/init.usb.rc \
81 system/core/rootdir/init.usb.configfs.rc:root/init.usb.configfs.rc \
82 system/core/rootdir/ueventd.rc:root/ueventd.rc \
83 system/core/rootdir/etc/hosts:system/etc/hosts \
  /developers/build/templates/create/buildSrc/
build.gradle.ftl 27 srcDir new File(rootDir, "../${meta.build}/buildSrc/src/main/groovy")
  /developers/samples/android/ui/window/DragAndDropAcrossApps/buildSrc/
build.gradle 28 srcDir new File(rootDir, "../../../../../../build/buildSrc/src/main/groovy")
  /development/ndk/tests/
run-all.sh 9 ROOTDIR=`dirname $PROGDIR`
105 SAMPLE_DIRS=`cd $ROOTDIR && ls -d samples/*`
106 SAMPLE_DIRS="$SAMPLE_DIRS "`cd $ROOTDIR && ls -d platforms/android-*/samples/*`
115 SAMPLEDIR=$ROOTDIR/$1
  /external/autotest/server/
server_job_unittest.py 20 server_job.__file__ = '/rootdir/atest/server/server_job.py'
24 self.assertEqual(autodir, '/rootdir/atest')
25 self.assertEqual(clientdir, '/rootdir/atest/client')
26 self.assertEqual(serverdir, '/rootdir/atest/server')
  /external/selinux/policycoreutils/sepolicy/
sepolicy-manpage.8 8 .B sepolicy manpage [\-w] [\-h] [\-p PATH ] [\-r ROOTDIR ] [\-a | \-d ]
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 194 rootDir = os.path.abspath(
201 os.path.join(rootDir, 'tool', 'target', 'classes'),
202 os.path.join(rootDir, 'runtime', 'Java', 'target', 'classes')
206 os.path.join(rootDir, 'archive',
211 os.path.join(rootDir, 'lib', 'antlr-2.7.7.jar'),
212 os.path.join(rootDir, 'lib', 'stringtemplate-3.2.1.jar'),
213 os.path.join(rootDir, 'lib', 'ST-4.0.2.jar'),
214 os.path.join(rootDir, 'lib', 'junit-4.2.jar')
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/build/
CompatibilityBuildHelper.java 84 File rootDir = ((IFolderBuildInfo) mBuildInfo).getRootDir();
85 if (rootDir != null) {
86 rootDirPath = rootDir.getAbsolutePath();
94 File rootDir = new File(rootDirPath);
95 if (!rootDir.exists()) {
97 String.format("Root directory doesn't exist %s", rootDir.getAbsolutePath()));
99 mBuildInfo.addBuildAttribute(ROOT_DIR, rootDir.getAbsolutePath());
  /prebuilts/go/darwin-x86/src/os/exec/
lp_windows_test.go 57 rootDir string
68 cmd.Dir = test.rootDir
90 if p[:len(test.rootDir)] != test.rootDir {
91 t.Fatalf("test=%+v: %s output is wrong: %q must have %q prefix", test, cmdText, p, test.rootDir)
93 return p[len(test.rootDir)+1:], nil
128 test.rootDir = tmpdir
129 createFiles(t, test.rootDir, test.files, printpathExe)
130 env := createEnv(test.rootDir, test.PATH, test.PATHEXT)
333 func (test commandTest) isSuccess(rootDir, output string, err error) error
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
lp_windows_test.go 57 rootDir string
68 cmd.Dir = test.rootDir
90 if p[:len(test.rootDir)] != test.rootDir {
91 t.Fatalf("test=%+v: %s output is wrong: %q must have %q prefix", test, cmdText, p, test.rootDir)
93 return p[len(test.rootDir)+1:], nil
128 test.rootDir = tmpdir
129 createFiles(t, test.rootDir, test.files, printpathExe)
130 env := createEnv(test.rootDir, test.PATH, test.PATHEXT)
333 func (test commandTest) isSuccess(rootDir, output string, err error) error
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
cgen.sh 63 rootdir=${srcdir}/..
117 ${rootdir}/move-if-change ${tmp}-desc.h ${srcdir}/${prefix}-desc.h
121 ${rootdir}/move-if-change ${tmp}-desc.c ${srcdir}/${prefix}-desc.c
124 ${rootdir}/move-if-change ${tmp}-opc.h ${srcdir}/${prefix}-opc.h
128 ${rootdir}/move-if-change ${tmp}-opc.c ${srcdir}/${prefix}-opc.c
134 ${rootdir}/move-if-change ${tmp}-opinst.c ${srcdir}/${prefix}-opinst.c
141 ${rootdir}/move-if-change ${tmp}-ibld.c ${srcdir}/${prefix}-ibld.c
146 ${rootdir}/move-if-change ${tmp}-asm.c ${srcdir}/${prefix}-asm.c
151 ${rootdir}/move-if-change ${tmp}-dis.c ${srcdir}/${prefix}-dis.c
  /build/kati/testcase/tools/
findleaves.py 29 for rootdir in dirlist:
30 rootdepth = rootdir.count("/")
31 for root, dirs, files in os.walk(rootdir, followlinks=True):
  /build/tools/
findleaves.py 29 for rootdir in dirlist:
30 rootdepth = rootdir.count("/")
31 for root, dirs, files in os.walk(rootdir, followlinks=True):
  /external/autotest/client/tests/kvm/
migration_control.srv 21 rootdir = '/tmp/kvm_autotest_root'
84 params['rootdir'] = rootdir
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/awslambda/
test_awslambda.py 63 rootdir = tempfile.mkdtemp()
64 self.addCleanup(shutil.rmtree, rootdir)
68 full_path = os.path.join(rootdir, filename)

Completed in 742 milliseconds

1 2 3 4 56 7 8 91011>>