HomeSort by relevance Sort by last modified time
    Searched full:regex (Results 651 - 675 of 1927) sorted by null

<<21222324252627282930>>

  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h 129 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
132 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
307 // On Android, <regex.h> is only available starting with Gingerbread.
316 // On some platforms, <regex.h> needs someone to define size_t, and
320 # include <regex.h> // NOLINT
326 // <regex.h> is not available on Windows. Use our own simple regex
332 // <regex.h> may not be available on this platform. Use our own
333 // simple regex implementation instead.
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h 129 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
132 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
307 // On Android, <regex.h> is only available starting with Gingerbread.
316 // On some platforms, <regex.h> needs someone to define size_t, and
320 # include <regex.h> // NOLINT
326 // <regex.h> is not available on Windows. Use our own simple regex
332 // <regex.h> may not be available on this platform. Use our own
333 // simple regex implementation instead.
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/chromium_org/tools/mac/
symbolicate_crash.py 130 # Compile a regex that matches the start of a thread stack. Note that this
166 regex = '^([0-9]+) +(.+)[ \t]+(0x[0-9a-f]+) (.*) \+ ([0-9]+)$'
167 matches = re.match(regex, line)
171 # Create a stack frame with the information extracted from the regex.
236 # Create the stack frame with the information extracted from the regex.
267 # Create a regex to match the lines of format:
279 # Match the line to the regex.
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 22 #include "llvm/Support/Regex.h"
185 : Directive(DirectiveLoc, DiagnosticLoc, Text, Min, Max), Regex(Text) { }
188 if (Regex.isValid(Error))
194 return Regex.match(S);
198 llvm::Regex Regex;
342 KindStr = "regex";
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
methods_index_changes.html 66 <nobr><A HREF="java.util.regex.Matcher.html#java.util.regex.Matcher.appendReplacement_changed(java.lang.StringBuffer, java.lang.String)" class="hiddenlink" target="rightframe">appendReplacement
99 &nbsp;&nbsp;<nobr><A HREF="java.util.regex.Pattern.html#java.util.regex.Pattern.compile_changed(java.lang.String)" class="hiddenlink" target="rightframe">type&nbsp;
100 (<code>String</code>)&nbsp;in&nbsp;java.util.regex.Pattern
286 <nobr><A HREF="java.util.regex.Matcher.html#java.util.regex.Matcher.start_changed()" class="hiddenlink" target="rightframe">start
  /external/chromium/testing/gtest/test/
gtest-death-test_test.cc 316 // TODO(wan@google.com): <regex.h> doesn't support matching strings
453 const testing::internal::RE regex(regex_c_str);
454 EXPECT_DEATH(GlobalFunction(), regex); local
545 const char* regex = "DieIf"; local
546 const char* regex_save = regex;
547 EXPECT_DEATH(DieIfLessThan(3, 4), regex++);
548 EXPECT_EQ(regex_save + 1, regex);
768 const ::testing::internal::RE* regex,
883 const ::testing::internal::RE* /*regex*/,
    [all...]
  /external/gtest/test/
gtest-death-test_test.cc 316 // TODO(wan@google.com): <regex.h> doesn't support matching strings
453 const testing::internal::RE regex(regex_c_str);
454 EXPECT_DEATH(GlobalFunction(), regex); local
545 const char* regex = "DieIf"; local
546 const char* regex_save = regex;
547 EXPECT_DEATH(DieIfLessThan(3, 4), regex++);
548 EXPECT_EQ(regex_save + 1, regex);
768 const ::testing::internal::RE* regex,
883 const ::testing::internal::RE* /*regex*/,
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 307 // TODO(wan@google.com): <regex.h> doesn't support matching strings
444 const testing::internal::RE regex(regex_c_str);
445 EXPECT_DEATH(GlobalFunction(), regex); local
536 const char* regex = "DieIf"; local
537 const char* regex_save = regex;
538 EXPECT_DEATH(DieIfLessThan(3, 4), regex++);
539 EXPECT_EQ(regex_save + 1, regex);
722 const ::testing::internal::RE* regex,
837 const ::testing::internal::RE* /*regex*/,
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesf.h 792 char* regex; member in class:Regular_Expression_Field
795 OnError(::set_field_type(f.get_field(),fieldtype,regex));
800 regex = new char[1 + ::strlen(source)];
801 (::strcpy)(regex, source);
807 regex(NULL)
816 copy_regex(rhs.regex);
824 regex(NULL)
826 copy_regex(rhs.regex);
830 delete[] regex;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesf.h 792 char* regex; member in class:Regular_Expression_Field
795 OnError(::set_field_type(f.get_field(),fieldtype,regex));
800 regex = new char[1 + ::strlen(source)];
801 (::strcpy)(regex, source);
807 regex(NULL)
816 copy_regex(rhs.regex);
824 regex(NULL)
826 copy_regex(rhs.regex);
830 delete[] regex;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursesf.h 792 char* regex; member in class:Regular_Expression_Field
795 OnError(::set_field_type(f.get_field(),fieldtype,regex));
800 regex = new char[1 + ::strlen(source)];
801 (::strcpy)(regex, source);
807 regex(NULL)
816 copy_regex(rhs.regex);
824 regex(NULL)
826 copy_regex(rhs.regex);
830 delete[] regex;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 32 import java.util.regex.Matcher;
33 import java.util.regex.Pattern;
43 // precompiled regex used by inContext
  /external/chromium/chrome/browser/resources/
about_memory.html 52 var regex = /(\d+)(\d{3})/;
53 while (regex.test(x1)) {
54 x1 = x1.replace(regex, '$1' + ',' + '$2');
  /external/chromium_org/components/url_matcher/
url_matcher_factory_unittest.cc 33 // Invalid regex value: {"urlMatches": "*"}
37 // Invalid regex value: {"originAndPathMatches": "*"}
80 // Test invalid regex in urlMatches.
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
debugallocation_test.cc 68 #define IF_DEBUG_EXPECT_DEATH(statement, regex) do { \
70 fprintf(stderr, "Expected regex:%s\n", regex); \
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
debugallocation_test.cc 68 #define IF_DEBUG_EXPECT_DEATH(statement, regex) do { \
70 fprintf(stderr, "Expected regex:%s\n", regex); \
  /external/droiddriver/src/com/google/android/droiddriver/finders/
By.java 123 * @param regex The regular expression pattern to match against
126 public static ByAttribute<String> textRegex(String regex) {
127 return attribute(Attribute.TEXT, STRING_MATCHES, regex);
  /external/llvm/utils/Misc/
zkill 167 group.add_option("", "--name", dest="execName", metavar="REGEX",
170 group.add_option("", "--exec", dest="execPath", metavar="REGEX",
173 group.add_option("", "--user", dest="userName", metavar="REGEX",
  /frameworks/base/core/java/android/net/
Proxy.java 37 import java.util.regex.Matcher;
38 import java.util.regex.Pattern;
71 // Hostname / IP REGEX validation
  /frameworks/base/core/java/android/webkit/
URLUtil.java 21 import java.util.regex.Matcher;
22 import java.util.regex.Pattern;
385 /** Regex used to parse content-disposition headers */
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 118 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
121 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
268 // On some platforms, <regex.h> needs someone to define size_t, and
272 # include <regex.h> // NOLINT
278 // <regex.h> is not available on Windows. Use our own simple regex
284 // <regex.h> may not be available on this platform. Use our own
285 // simple regex implementation instead.
791 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
800 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLIN
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 119 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
122 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
273 // On some platforms, <regex.h> needs someone to define size_t, and
277 # include <regex.h> // NOLINT
283 // <regex.h> is not available on Windows. Use our own simple regex
289 // <regex.h> may not be available on this platform. Use our own
290 // simple regex implementation instead.
807 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
816 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLIN
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 119 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
122 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
272 // On some platforms, <regex.h> needs someone to define size_t, and
276 # include <regex.h> // NOLINT
282 // <regex.h> is not available on Windows. Use our own simple regex
288 // <regex.h> may not be available on this platform. Use our own
289 // simple regex implementation instead.
825 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
834 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLIN
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 120 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
123 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
276 // On some platforms, <regex.h> needs someone to define size_t, and
280 # include <regex.h> // NOLINT
286 // <regex.h> is not available on Windows. Use our own simple regex
292 // <regex.h> may not be available on this platform. Use our own
293 // simple regex implementation instead.
812 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
821 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLIN
    [all...]

Completed in 1055 milliseconds

<<21222324252627282930>>