HomeSort by relevance Sort by last modified time
    Searched refs:grep (Results 101 - 125 of 467) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/e2fsprogs/debian/
libuuid1.postinst 27 if ! getent group | grep -q libuuid; then
30 if ! getent passwd | grep -q libuuid; then
  /external/eigen/blas/testing/
runblastest.sh 28 if [ `grep "FATAL ERROR" $1.summ | wc -l` -gt 0 ]; then
36 if [ `grep "FAILED THE TESTS OF ERROR-EXITS" $1.summ | wc -l` -gt 0 ]; then
  /external/yaffs2/yaffs2/
patch-ker.sh 50 VERSION=`grep -s VERSION <$LINUXDIR/Makefile | head -n 1 | sed s/'VERSION = '//`
51 PATCHLEVEL=`grep -s PATCHLEVEL <$LINUXDIR/Makefile | head -n 1 | sed s/'PATCHLEVEL = '//`
52 SUBLEVEL=`grep -s SUBLEVEL <$LINUXDIR/Makefile | head -n 1 | sed s/'SUBLEVEL = '//`
64 YAFFS_PATCHED_STRING=`grep -s yaffs <$KCONFIG | head -n 1`
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.construct/
il_flg.pass.cpp 60 test({'\\', '(', 'a', '\\', ')'}, std::regex_constants::grep, 1);
61 test({'\\', '(', 'a', '[', 'b', 'c', ']', '\\', ')'}, std::regex_constants::grep, 1);
62 test({'\\', '(', 'a', '\\', '(', '[', 'b', 'c', ']', '\\', ')', '\\', ')'}, std::regex_constants::grep, 2);
63 test({'(', 'a', '(', '[', 'b', 'c', ']', ')', ')'}, std::regex_constants::grep, 0);
string_flg.pass.cpp 52 test(std::string("\\(a\\)"), std::regex_constants::grep, 1); member in class:std::regex_constants
53 test(std::string("\\(a[bc]\\)"), std::regex_constants::grep, 1); member in class:std::regex_constants
54 test(std::string("\\(a\\([bc]\\)\\)"), std::regex_constants::grep, 2); member in class:std::regex_constants
55 test(std::string("(a([bc]))"), std::regex_constants::grep, 0); member in class:std::regex_constants
  /device/common/
generate-blob-lists.sh 86 MANUFACTURERNAME=$( find device -type d | grep ^[^/]\*/[^/]\*/$DEVICENAME\$ | cut -f 2 -d / )
107 grep -v '\.odex$' |
108 grep '>' |
143 grep -v ^archive- |
144 grep -v ^device$ |
145 grep -v ^device/common$ |
  /external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
update_html_tags_from_sources.sh 28 grep -v "^#" $src_dir/Source/WebCore/css/CSSPropertyNames.in > ${tmp_prefix}.css-properties
29 grep -v "^#" $src_dir/Source/WebCore/css/CSSValueKeywords.in > ${tmp_prefix}.css-values
30 grep -v "^#" $src_dir/Source/WebCore/html/HTMLAttributeNames.in | cut -d" " -f1 | \
32 grep -v "^#" $src_dir/Source/WebCore/html/HTMLTagNames.in | cut -d" " -f1 | \
36 grep -r "protocolIs" $src_dir/Source/WebCore/* | ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts "#{tag}:" }' > ${tmp_prefix}.protocols
37 grep "map->add" $src_dir/Source/WebCore/html/HTMLInputElement.cpp | cut -d\" -f2 >> ${tmp_prefix}.html-values
38 grep "AtomicString,.*Header, (" $src_dir/Source/WebCore/platform/network/ResourceResponseBase.cpp | cut -d\" -f2 > ${tmp_prefix}.headers
39 grep -o -r 'httpHeaderField(".*"' $src_dir | cut -d\" -f2 >> ${tmp_prefix}.headers
41 grep DEFINE_STATIC $src_dir/Source/WebCore/css/CSSSelector.cpp | cut -d\" -f2 \
48 grep "^HTML_.*TAG" $src_dir/parser/htmlparser/public/nsHTMLTagList.h
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/re.regex.const/
constants.pass.cpp 25 // static constexpr regex_constants::syntax_option_type grep = regex_constants::grep;
47 static_assert((BR::grep == std::regex_constants::grep), "");
57 where(BR::grep);
  /external/v8/tools/
common-includes.sh 63 local MATCH=$(git branch | grep "$1" | awk '{print $NF}' | grep -x $1)
112 CURRENT_BRANCH=$(git status -s -b -uno | grep "^##" | awk '{print $2}')
141 VALUE=$(grep "#define $v" "$VERSION_FILE" | awk '{print $NF}')
191 DELETED_FILES=$(git status -s -uno --porcelain | grep "^ D" \
  /external/webkit/Tools/BuildSlaveSupport/
build-launcher-app 56 my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
67 my $svnInfo = `LC_ALL=C svn info $sourceDir | grep URL:`;
70 my $gitLog = `cd $sourceDir && LC_ALL=C git log --grep='git-svn-id: ' -n 1 | grep git-svn-id:`;
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.const/re.synopt/
syntax_option_type.pass.cpp 26 // grep = unspecified,
45 assert(std::regex_constants::grep != 0);
55 assert((std::regex_constants::icase & std::regex_constants::grep) == 0);
64 assert((std::regex_constants::nosubs & std::regex_constants::grep) == 0);
72 assert((std::regex_constants::optimize & std::regex_constants::grep) == 0);
79 assert((std::regex_constants::collate & std::regex_constants::grep) == 0);
85 assert((std::regex_constants::ECMAScript & std::regex_constants::grep) == 0);
90 assert((std::regex_constants::basic & std::regex_constants::grep) == 0);
94 assert((std::regex_constants::extended & std::regex_constants::grep) == 0);
97 assert((std::regex_constants::awk & std::regex_constants::grep) == 0)
    [all...]
  /external/webkit/Source/WebKit2/Scripts/
generate-forwarding-headers.pl 81 if ($filePath =~ '\.h$' && $filePath !~ "ForwardingHeaders" && grep{$file eq $_} keys %neededHeaders) {
83 push(@frameworkHeaders, $headerPath) unless (grep($headerPath =~ "$_/", @skippedPrefixes) || $headerPath =~ "config.h");
94 if(grep($_ =~ "/$headerName\$", @frameworkHeaders) == 1 || $header =~ "/$platform/" ) {
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
phase1-down.sh 27 echo ${INTERNAL_ADDR4} | grep '[0-9]' > /dev/null || exit 0
28 echo ${DEFAULT_GW} | grep '[0-9]' > /dev/null || exit 0
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wps-ap-cli 9 if ! $CLI wps_pbc | grep -q OK; then
  /frameworks/base/core/tests/overlaytests/
runtests.sh 37 $adb wait-for-device logcat | grep -m 1 -e 'PowerManagerService.*bootCompleted' >/dev/null
51 local t=$($adb shell ls -l $dirname | tr -d '\r' | grep -e "${basename}$" | grep -oe '^.')
129 exit $(grep -c -e '^FAILURES' $log)
  /ndk/tests/build/mips-fp4/
build.sh 13 grep -q -w -F -e $INST $FILE
  /development/tools/findunused/
findunusedresources 38 iappname=$(grep LOCAL_PACKAGE_NAME $app/Android.mk | sed 's/.*:= *//')
40 for res in $(echo $app/res/* $(find $ANDROID_BUILD_TOP/vendor -type d -wholename $ANDROID_BUILD_TOP/vendor/*/$appname/res | grep overlay))
42 resources="$resources $(echo $res | grep -v '\-mcc\|[a-z]*-[a-z][a-z]$\|[a-z]*-[a-z][a-z]-.*')"
65 for i in $(cat $rDotJava | grep "\w*=0x\d*" | sed 's/ *public static final int //' | sed 's/=0x.*//')
71 echo $i $(grep -cw R\\..*\\.$i\\\|@style/$p\\\|@drawable/$p\\\|@anim/$p\\\|@color/$p\\\|@xml/$p\\\|@layout/$p\\\|@menu/$p\\\|@+id/$p\\\|@array/$p\\\|@string/$p\\\|@mipmap/$p\\\|@integer/$p\\\|@dimen/$p\\\|\[a-z\]\*:$p\\\|enumname=\"$p\\\|\<item\>$p\< < /tmp/everything$$)
72 done | grep " 0$" | {
  /external/apache-harmony/
run-harmony-tests 14 xargs grep -h '^package ' | sed 's/^package //' | sed 's/;$//' | sort | uniq | tr "\n" " ")
  /external/dnsmasq/contrib/slackware-dnsmasq/
dnsmasq.SlackBuild 39 find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
40 find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
  /external/dropbear/libtomcrypt/
testme.sh 7 echo "Testing verion" `grep "^VERSION=" makefile | sed "s/.*=//"`
8 #grep "VERSION=" makefile | perl -e "@a = split('=', <>); print @a[1];"`
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 59 grep( /^\Q$word\E/, @completions );
70 grep( /\.xml$/, glob( "$word*" ));
  /external/eigen/bench/btl/data/
mk_mean_script.sh 15 DATA_FILE=`find $DIR -name "*.dat" | grep _${WHAT}`
  /external/harfbuzz_ng/src/
check-symbols.sh 24 EXPORTED_SYMBOLS="`nm "$so" | grep ' [BCDGINRSTVW] ' | grep -v ' T _fini\>\| T _init\>\| _fdata\>\| _ftext\>\| __bss_start\>\| __bss_start__\>\| __bss_end__\>\| _edata\>\| _end\>\| _bss_end__\>\| __end__\>' | cut -d' ' -f3`"
37 if echo "$EXPORTED_SYMBOLS" | grep -v 'hb_'; then
  /external/llvm/autoconf/m4/
check_gnu_make.m4 11 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null )
  /external/llvm/projects/sample/autoconf/m4/
check_gnu_make.m4 11 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null )

Completed in 1450 milliseconds

1 2 3 45 6 7 8 91011>>