HomeSort by relevance Sort by last modified time
    Searched defs:Pattern (Results 51 - 75 of 186) sorted by null

1 23 4 5 6 7 8

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_parse.py 4 # convert re-style regular expression to sre pattern
66 class Pattern:
67 # master pattern object. keeps track of global attributes
91 def __init__(self, pattern, data=None):
92 self.pattern = pattern
133 return SubPattern(self.pattern, self.data[index])
317 raise error, "pattern not properly closed"
370 raise error, "pattern not properly closed"
381 # parse a simple pattern
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_parse.py 4 # convert re-style regular expression to sre pattern
66 class Pattern:
67 # master pattern object. keeps track of global attributes
91 def __init__(self, pattern, data=None):
92 self.pattern = pattern
133 return SubPattern(self.pattern, self.data[index])
317 raise error, "pattern not properly closed"
370 raise error, "pattern not properly closed"
381 # parse a simple pattern
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
KernelLogParser.java 30 import java.util.regex.Pattern;
48 private static final Pattern LOG_LINE = Pattern.compile(
50 private static final Pattern SELINUX_DENIAL_PATTERN = Pattern.compile(
53 private static final Pattern PAGE_ALLOC_FAILURE_PATTERN = Pattern.compile(
56 private static final Pattern LOW_MEMORY_KILLER_PATTERN = Pattern.compile(
62 public static final Pattern BAD_BOOTREASONS = Pattern.compile
    [all...]
  /external/autotest/client/deps/fakemodem/src/
fakemodem.c 29 } Pattern;
118 Pattern *pat;
155 " as a command-response pattern\n",
229 "Path to pattern file", NULL},
456 Pattern *pat = NULL;
486 pat = (Pattern *)g_ptr_array_index (fakemodem->patterns, i);
529 Pattern *pat;
535 pat = (Pattern *)g_ptr_array_index (fakemodem->patterns, i);
573 Pattern *pat;
577 pat = (Pattern *)g_ptr_array_index (fakemodem->patterns, i)
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 468 Sema::CheckPackExpansion(TypeSourceInfo *Pattern, SourceLocation EllipsisLoc,
471 QualType Result = CheckPackExpansion(Pattern->getType(),
472 Pattern->getTypeLoc().getSourceRange(),
478 TLB.pushFullCopy(Pattern->getTypeLoc());
485 QualType Sema::CheckPackExpansion(QualType Pattern, SourceRange PatternRange,
489 // The pattern of a pack expansion shall name one or more
492 if (!Pattern->containsUnexpandedParameterPack()) {
498 return Context.getPackExpansionType(Pattern, NumExpansions);
501 ExprResult Sema::ActOnPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc) {
502 return CheckPackExpansion(Pattern, EllipsisLoc, None)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 49 // Pattern Handling Code.
52 class Pattern {
55 /// MatchEOF - When set, this pattern only matches the end of file. This is
59 /// FixedStr - If non-empty, this pattern is a fixed string match with the
63 /// RegEx - If non-empty, this is a regex pattern.
67 /// pattern, e.g. "foo[[bar]]baz". In this case, the RegExStr will contain
73 /// the pattern, e.g. "foo[[bar:.*]]baz". In this case, the RegExStr will
80 Pattern(bool matchEOF = false) : MatchEOF(matchEOF) { }
84 /// Match - Match the pattern string against the input buffer Buffer. This
94 /// involving this pattern
    [all...]
  /frameworks/minikin/libs/minikin/
Hyphenator.cpp 59 struct Pattern {
94 const Pattern* patternTable() const {
95 return reinterpret_cast<const Pattern*>(bytes() + pattern_offset);
358 const Pattern* pattern = header->patternTable(); local
376 // into the buf pool. This is the pattern for the substring (i..j) we just matched,
379 uint32_t pat_entry = pattern->data[pat_ix];
380 int pat_len = Pattern::len(pat_entry);
381 int pat_shift = Pattern::shift(pat_entry);
382 const uint8_t* pat_buf = pattern->buf(pat_entry)
    [all...]
  /frameworks/native/libs/vr/libbroadcastring/
broadcast_ring_test.cc 26 static Sized Pattern(uint8_t c) {
297 const Record record_0 = Record::Pattern(0x00);
298 const Record record_1 = Record::Pattern(0x80);
440 const OriginalRecord original_record_0 = OriginalRecord::Pattern(0x00);
441 const OriginalRecord original_record_1 = OriginalRecord::Pattern(0x80);
487 const OriginalRecord original_record_0 = OriginalRecord::Pattern(0x00);
488 const OriginalRecord original_record_1 = OriginalRecord::Pattern(0x80);
531 const OriginalRecord original_record_0 = OriginalRecord::Pattern(0x00);
532 const OriginalRecord original_record_1 = OriginalRecord::Pattern(0x80);
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 49 const PatternToMatch &Pattern;
52 /// PatWithNoTypes - This is a clone of Pattern.getSrcPattern() that starts
85 /// physreg input to the pattern. The first elt is the Register node, the
86 /// second is the recorded slot number the input pattern match saved it in.
96 MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp);
129 /// GetInstPatternNode - Get the pattern for an instruction.
147 MatcherGen::MatcherGen(const PatternToMatch &pattern,
149 : Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0),
151 // We need to produce the matcher tree for the patterns source pattern. To d
    [all...]
DAGISelMatcher.h 1 //===- DAGISelMatcher.h - Representation of DAG pattern matcher -*- C++ -*-===//
31 Matcher *ConvertPatternToMatcher(const PatternToMatch &Pattern,unsigned Variant,
392 /// to see if the entire pattern is capable of matching. This predicate does
652 const ComplexPattern &Pattern;
665 CheckComplexPatMatcher(const ComplexPattern &pattern, unsigned matchnumber,
667 : Matcher(CheckComplexPat), Pattern(pattern), MatchNumber(matchnumber),
670 const ComplexPattern &getPattern() const { return Pattern; }
683 return &cast<CheckComplexPatMatcher>(M)->Pattern == &Pattern &
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelMatcherGen.cpp 51 const PatternToMatch &Pattern;
54 /// PatWithNoTypes - This is a clone of Pattern.getSrcPattern() that starts
86 /// physreg input to the pattern. The first elt is the Register node, the
87 /// second is the recorded slot number the input pattern match saved it in.
97 MatcherGen(const PatternToMatch &pattern, const CodeGenDAGPatterns &cgp);
125 /// GetInstPatternNode - Get the pattern for an instruction.
143 MatcherGen::MatcherGen(const PatternToMatch &pattern,
145 : Pattern(pattern), CGP(cgp), NextRecordedOperandNo(0),
147 // We need to produce the matcher tree for the patterns source pattern. To d
    [all...]
DAGISelMatcher.h 1 //===- DAGISelMatcher.h - Representation of DAG pattern matcher -----------===//
31 Matcher *ConvertPatternToMatcher(const PatternToMatch &Pattern,unsigned Variant,
397 /// to see if the entire pattern is capable of matching. This predicate does
659 const ComplexPattern &Pattern;
672 CheckComplexPatMatcher(const ComplexPattern &pattern, unsigned matchnumber,
674 : Matcher(CheckComplexPat), Pattern(pattern), MatchNumber(matchnumber),
677 const ComplexPattern &getPattern() const { return Pattern; }
687 // Not safe to move a pattern predicate past a complex pattern
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
Vvm3Subscriber.java 65 import java.util.regex.Pattern;
313 static List<Pattern> getSubscribeLinkPatterns(Context context) {
318 List<Pattern> patterns = new ArrayList<>();
322 patterns.add(Pattern.compile(patternsArray.getString(i)));
331 static String findSubscribeLink(@NonNull List<Pattern> patterns, String response)
342 for (Pattern pattern : patterns) {
343 if (pattern.matcher(text).matches()) {
357 Pattern pattern = Pattern.compile("<" + tag + ">(.*)<\\/" + tag + ">") local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java 52 * The next token in the pattern.
167 * Given an string, init an XPath object for pattern matches,
194 Pattern();
320 * be used for pattern matching.
362 * be used for pattern matching.
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 336 std::shared_ptr<llvm::Regex> Pattern = std::make_shared<llvm::Regex>(Val);
337 if (!Pattern->isValid(RegexError)) {
340 Pattern.reset();
342 return Pattern;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 81 * Format pattern enum used for composing location and partial location names
83 public enum Pattern {
84 // The format pattern such as "{0} Time", where {0} is the country or city.
88 // The format pattern such as "{1} Time ({0})", where {1} is the country and {0} is a city.
91 // The format pattern such as "{1} ({0})", where {1} is the metazone, and {0} is the country or city.
97 Pattern(String key, String defaultVal) {
246 name = formatPattern(Pattern.REGION_FORMAT, country);
254 name = formatPattern(Pattern.REGION_FORMAT, city);
277 * Sets the pattern string for the pattern type
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 79 * Format pattern enum used for composing location and partial location names
81 public enum Pattern {
82 // The format pattern such as "{0} Time", where {0} is the country or city.
86 // The format pattern such as "{1} Time ({0})", where {1} is the country and {0} is a city.
89 // The format pattern such as "{1} ({0})", where {1} is the metazone, and {0} is the country or city.
95 Pattern(String key, String defaultVal) {
244 name = formatPattern(Pattern.REGION_FORMAT, country);
252 name = formatPattern(Pattern.REGION_FORMAT, city);
275 * Sets the pattern string for the pattern type
    [all...]
  /external/libchrome/base/test/
trace_event_analyzer.cc 14 #include "base/strings/pattern.h"
269 Query Query::Pattern(const std::string& pattern) {
270 Query query(pattern);
  /external/llvm/utils/FileCheck/
FileCheck.cpp 60 cl::desc("Add an implicit negative check with this pattern to every\n"
62 "this pattern occur which are not matched by a positive pattern"),
63 cl::value_desc("pattern"));
79 // Pattern Handling Code.
92 /// MatchEOF - When set, this pattern only matches the end of file. This is
100 class Pattern {
105 /// FixedStr - If non-empty, this pattern is a fixed string match with the
109 /// RegEx - If non-empty, this is a regex pattern.
112 /// \brief Contains the number of line this pattern is in
    [all...]
  /external/ltp/testcases/kernel/fs/doio/
growfiles.c 172 #define PATTERN_ASCII 1 /* repeating alphabet letter pattern */
186 #define PATTERN_ALT 4 /* alternating bit pattern (i.e. 0x5555555...) */
187 #define PATTERN_CHKER 5 /* checkerboard pattern (i.e. 0xff00ff00ff00...) */
188 #define PATTERN_CNTING 6 /* counting pattern (i.e. 0 - 07, 0 - 07, ...) */
218 int Pattern = PATTERN_OFFSET; /* This pattern is 64 bit word based */
220 int Pattern = PATTERN_ASCII;
263 * generate pattern
265 * write with wrong pattern
268 * The second process truncated the file after the pattern wa
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
traffic.h 80 PVOID Pattern;
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
HermeticLaunchTest.java 57 import java.util.regex.Pattern;
92 private static final Pattern LAUNCH_ENTRY=Pattern.compile("^\\d*-\\d*\\s*\\d*:\\d*:\\d*."
94 private static final Pattern TRACE_ENTRY1 = Pattern.compile(
97 private static final Pattern TRACE_ENTRY2 = Pattern.compile(
100 private static final Pattern ATRACE_BEGIN = Pattern
105 private static final Pattern ATRACE_END = Pattern.compile
    [all...]
  /external/kotlinc/lib/
annotations-13.0.jar 
  /prebuilts/devtools/tools/lib/
annotations-12.0.jar 
  /prebuilts/gradle-plugin/org/jetbrains/annotations/13.0/
annotations-13.0.jar 

Completed in 4255 milliseconds

1 23 4 5 6 7 8