HomeSort by relevance Sort by last modified time
    Searched defs:grep (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
list_ports.py 15 Additionally a grep function is supplied that can be used to search for ports
36 def grep(regexp): function
84 iterator = sorted(grep(args[0]))
  /external/libcxx/test/std/re/re.regex/re.regex.construct/
iter_iter_flg.pass.cpp 60 test(F(s1.begin()), F(s1.end()), std::regex_constants::grep, 1); member in class:std::regex_constants
61 test(F(s2.begin()), F(s2.end()), std::regex_constants::grep, 1); member in class:std::regex_constants
62 test(F(s3.begin()), F(s3.end()), std::regex_constants::grep, 2); member in class:std::regex_constants
63 test(F(s4.begin()), F(s4.end()), std::regex_constants::grep, 0); member in class:std::regex_constants
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
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
iter_iter_flg.pass.cpp 60 test(F(s1.begin()), F(s1.end()), std::regex_constants::grep, 1); member in class:std::regex_constants
61 test(F(s2.begin()), F(s2.end()), std::regex_constants::grep, 1); member in class:std::regex_constants
62 test(F(s3.begin()), F(s3.end()), std::regex_constants::grep, 2); member in class:std::regex_constants
63 test(F(s4.begin()), F(s4.end()), std::regex_constants::grep, 0); member in class:std::regex_constants
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
  /dalvik/dx/src/com/android/dx/command/grep/
Grep.java 17 package com.android.dx.command.grep;
31 public final class Grep {
42 public Grep(final Dex dex, Pattern pattern, final PrintWriter out) {
88 public int grep() { method in class:Grep
Main.java 17 package com.android.dx.command.grep;
31 int count = new Grep(dex, Pattern.compile(pattern), new PrintWriter(System.out)).grep();
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
GrepDialog.py 8 def grep(text, io=None, flist=None): function
20 icon = "Grep"
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
GrepDialog.py 8 def grep(text, io=None, flist=None): function
20 icon = "Grep"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 8 def grep(text, io=None, flist=None): function
20 icon = "Grep"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 8 def grep(text, io=None, flist=None): function
20 icon = "Grep"
  /external/testng/src/test/java/test/failedreporter/
FailedReporterTest.java 53 grep(failed, expectedLine.format(s), resultLines); method
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex_constants.h 77 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
148 * that used by POSIX utility grep in IEEE Std 1003.1-2001. This option is
152 constexpr syntax_option_type grep = 1 << _S_grep; member in namespace:regex_constants
156 * that used by POSIX utility grep when given the -E option in
regex.h 358 static constexpr flag_type grep = regex_constants::grep; member in class:basic_regex
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex_constants.h 77 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
148 * that used by POSIX utility grep in IEEE Std 1003.1-2001. This option is
152 constexpr syntax_option_type grep = 1 << _S_grep; member in namespace:regex_constants
156 * that used by POSIX utility grep when given the -E option in
regex.h 358 static constexpr flag_type grep = regex_constants::grep; member in class:basic_regex
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_constants.h 77 * elements @c ECMAScript, @c basic, @c extended, @c awk, @c grep, @c egrep
148 * that used by POSIX utility grep in IEEE Std 1003.1-2001. This option is
152 constexpr syntax_option_type grep = 1 << _S_grep; member in namespace:regex_constants
156 * that used by POSIX utility grep when given the -E option in
regex.h 358 static constexpr flag_type grep = regex_constants::grep; member in class:basic_regex
    [all...]
  /external/autotest/client/bin/
base_utils.py 15 def grep(pattern, file): function
17 This is mainly to fix the return code inversion from grep
22 command = 'grep "%s" > /dev/null' % pattern
474 meminfo = utils.system_output('grep %s /proc/meminfo' % key)
672 grep = 'zgrep'
674 grep = 'grep'
675 grep += ' ^CONFIG_%s= %s' % (feature, config)
677 if not utils.system_output(grep, ignore_status=True):
800 cmd2 = 'grep -E "ID_(NAME|MODEL)="
    [all...]
  /external/testng/src/test/java/test/
BaseTest.java 398 public static List<Integer> grep(File fileName, String regexp, List<String> resultLines) { method in class:BaseTest
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex.h 426 static constexpr flag_type grep = regex_constants::grep; member in class:basic_regex
    [all...]
  /external/toybox/generated/
globals.h 1018 // toys/posix/grep.c
1408 struct grep_data grep; member in union:global_union
  /prebuilts/tools/common/m2/repository/net/sf/trove4j/trove4j/1.1/
trove4j-1.1.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.1.0/
builder-2.1.0.jar 

Completed in 1454 milliseconds

1 2