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

1 2 3 4 5 6 7 8 91011>>

  /external/jemalloc/
coverage.sh 14 for f in `find . -maxdepth 1 -type f -name '*.gcov'` ; do
  /external/harfbuzz_ng/src/
check-c-linkage-decls.sh 9 test "x$HBHEADERS" = x && HBHEADERS=`cd "$srcdir"; find . -maxdepth 1 -name 'hb*.h'`
10 test "x$HBSOURCES" = x && HBSOURCES=`cd "$srcdir"; find . -maxdepth 1 -name 'hb*.h'`
check-header-guards.sh 9 test "x$HBHEADERS" = x && HBHEADERS=`cd "$srcdir"; find . -maxdepth 1 -name 'hb*.h'`
10 test "x$HBSOURCES" = x && HBSOURCES=`cd "$srcdir"; find . -maxdepth 1 -name 'hb-*.cc' -or -name 'hb-*.hh'`
check-includes.sh 9 test "x$HBHEADERS" = x && HBHEADERS=`cd "$srcdir"; find . -maxdepth 1 -name 'hb*.h'`
10 test "x$HBSOURCES" = x && HBSOURCES=`cd "$srcdir"; find . -maxdepth 1 -name 'hb-*.cc' -or -name 'hb-*.hh'`
  /external/autotest/site_utils/admin/
deploy_private_tests.sh 64 find ${PRIVATE_SERVER_TESTS_DIR} -mindepth 1 -maxdepth 1 \
67 find ${PRIVATE_CLIENT_TESTS_DIR} -mindepth 1 -maxdepth 1 \
71 find ${PRIVATE_SERVER_SUITES_DIR} -mindepth 1 -maxdepth 1 -type f \
  /device/google/marlin/
preloads_copy.sh 28 for file in $(find ${mountpoint}/preloads -mindepth 1 -maxdepth 1); do
  /external/dbus/
cleanup-man-pages.sh 28 (find . -maxdepth 1 -name "_*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all underscore-prefixed items"
29 (find . -maxdepth 1 -name "DBus*Internal*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all internal-containing items"
30 (find . -maxdepth 1 -name "dbus_*_internal_*" | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move all internal-containing items"
65 (find . -maxdepth 1 -name "dbus_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all dbus-prefixed items"
66 (find . -maxdepth 1 -name "DBUS_*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all DBUS_-prefixed items"
67 (find . -maxdepth 1 -name "DBus*" | xargs -I ITEMS /bin/mv ITEMS keep) || die "could not move all DBus-prefixed items"
71 (find . -maxdepth 1 -type f | xargs -I ITEMS /bin/mv ITEMS nuke) || die "could not move remaining items"
75 MISSING_COUNT=`find . -maxdepth 1 -type f -name "*" | wc -l`
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
feedManipulationEclipse.sh 19 for f in `find $ECLIPSE_HOME/plugins -maxdepth 1 -name "org.eclipse.ant.ui*.jar" -type f`; do unzip $f lib/*.jar -d $tmpfolder; done
24 for f in `find $d -maxdepth 1 -name "*.jar" -type f -not -name "xercesImpl.jar"`; do CLASSPATH=$CLASSPATH":"$f; done
  /build/kati/
pathutil_test.go 149 maxdepth := 1<<31 - 1
159 depth: maxdepth,
167 depth: maxdepth,
175 depth: maxdepth,
183 depth: maxdepth,
191 depth: maxdepth,
199 depth: maxdepth,
207 depth: maxdepth,
215 depth: maxdepth,
223 depth: maxdepth,
    [all...]
  /development/build/tools/
patch_windows_sdk.sh 83 find $TEMP_SDK_DIR -maxdepth 1 -name "*.[ht]*" -type f -print0 | xargs -0 $UNIX2DOS
84 find $TEMP_SDK_DIR -maxdepth 3 -name "*.bat" -type f -print0 | xargs -0 $UNIX2DOS
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONWriter.java 60 private static final int maxdepth = 20; field in class:JSONWriter
99 this.stack = new JSONObject[maxdepth];
271 if (this.top >= maxdepth) {
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBodyHelpers.h 61 int maxdepth=-1);
66 int maxdepth=-1);
71 int maxdepth=-1);
  /external/toybox/toys/posix/
du.c 40 long maxdepth;
57 if (TT.maxdepth && TT.depth > TT.maxdepth) return;
  /build/soong/
bootstrap.bash 43 if [[ $(find $BUILDDIR -maxdepth 1 -name Android.bp) ]]; then
  /external/cmockery/cmockery_0_1_2/packages/
deb.sh 67 mv $(find tmp -mindepth 1 -maxdepth 1 -type f) "$destdir"
  /external/webrtc/tools/valgrind-webrtc/
webrtc_tests.sh 80 find /tmp -maxdepth 1 \(\
  /build/kati/testcase/
find_command.mk 103 @echo maxdepth
104 $(call run_find, find testdir -maxdepth 1)
105 $(call run_find, find testdir -maxdepth 2)
106 $(call run_find, find testdir -maxdepth 0)
107 $(call run_find, find testdir -maxdepth hoge)
108 $(call run_find, find testdir -maxdepth 1hoge)
109 $(call run_find, find testdir -maxdepth -1)
  /external/e2fsprogs/lib/ext2fs/
get_pathname.c 72 ext2_ino_t ino, int maxdepth,
87 if (!dir || (maxdepth < 0)) {
120 retval = ext2fs_get_pathname_int(fs, gp.parent, dir, maxdepth-1,
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/
btSoftBodyHelpers.java 75 public static void DrawNodeTree(btSoftBody psb, btIDebugDraw idraw, int mindepth, int maxdepth) {
76 SoftbodyJNI.btSoftBodyHelpers_DrawNodeTree__SWIG_0(btSoftBody.getCPtr(psb), psb, btIDebugDraw.getCPtr(idraw), idraw, mindepth, maxdepth); local
87 public static void DrawFaceTree(btSoftBody psb, btIDebugDraw idraw, int mindepth, int maxdepth) {
88 SoftbodyJNI.btSoftBodyHelpers_DrawFaceTree__SWIG_0(btSoftBody.getCPtr(psb), psb, btIDebugDraw.getCPtr(idraw), idraw, mindepth, maxdepth); local
99 public static void DrawClusterTree(btSoftBody psb, btIDebugDraw idraw, int mindepth, int maxdepth) {
100 SoftbodyJNI.btSoftBodyHelpers_DrawClusterTree__SWIG_0(btSoftBody.getCPtr(psb), psb, btIDebugDraw.getCPtr(idraw), idraw, mindepth, maxdepth); local
  /external/apache-harmony/
Android.mk 29 # We need to use -maxdepth 4 because there's a non-resource directory called "resources" deeper in the tree.
31 $(foreach dir,$(1),$(patsubst %,./%,$(shell cd $(LOCAL_PATH) && find $(dir) -maxdepth 4 -name resources 2> /dev/null)))
  /external/autotest/client/site_tests/firmware_TouchMTB/tools/
host_replay.sh 106 boards=`find tests/logs/* -maxdepth 0 -type d`
  /external/deqp/android/cts/
Android.mk 33 find -L master -maxdepth 1 -name "*.txt") \
  /prebuilts/tools/common/proguard/proguard4.7/build/
build.sh 48 (cd "$SRC"; find $(dirname $1) -maxdepth 1 \
  /external/libunwind/src/x86_64/
Gtrace.c 403 int maxdepth = 0; local
408 if (unlikely(! cursor || ! buffer || ! size || (maxdepth = *size) <= 0))
436 while (depth < maxdepth)
  /developers/build/
gradlew 119 ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`

Completed in 1440 milliseconds

1 2 3 4 5 6 7 8 91011>>