HomeSort by relevance Sort by last modified time
    Searched defs:match (Results 126 - 150 of 2151) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/parameter-framework/upstream/test/test-platform/
main.cpp 75 auto match = std::find_first_of(begin(options), end(options), begin(helpOpts), end(helpOpts)); local
76 if (match != end(options)) {
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /external/swiftshader/third_party/LLVM/lib/Support/
Regex.cpp 55 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches){ function in class:Regex
74 // There was a match.
76 if (Matches) { // match position requested
81 // this group didn't match
101 // Return the input if there was no match.
102 if (!match(String, &Matches))
106 // the match.
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.cpp 12 /// match against. This is specified as a comma-separated list of clauses.
127 /// Determine whether the given Name/Number combo match the specification given
129 /// includes. If the combo doesn't match any explicit include or exclude:
133 bool RangeSpec::match(const std::string &Name, uint32_t Number) const { function in class:Ice::RangeSpec
134 // No match if it is explicitly excluded by name or number.
142 // Positive match if it is explicitly included by name or number.
IceRangeSpec.h 12 /// as functions to match.
52 bool match(const std::string &Name, uint32_t Number) const;
53 bool match(GlobalString Name, uint32_t Number) const { function in class:Ice::RangeSpec
54 return match(Name.toStringOrEmpty(), Number);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode_inline.h 26 UInt end, match; local
31 match = 1 << 31;
37 while (match >= end)
39 if ((match&bitmapzz[0]) == 0)
43 match >>= 1;
47 match >>= 1;
72 match = 1 << 31;
74 while (match >= end)
76 if ((match&bitmapzz[1]) == 0)
80 match >>= 1
117 UInt end, match; local
125 ldr match, [bitmapzz] local
137 bic match, match, end \/* remove it from bitmap *\/ local
168 ldr match, [bitmapzz, #4] local
178 bic match, match, end \/* remove it from bitmap *\/ local
231 UInt end = 0, match; local
    [all...]
  /frameworks/base/core/java/android/text/method/
DialerKeyListener.java 69 int match = super.lookup(event, content); local
71 if (match != 0) {
72 return match;
  /frameworks/base/tools/aapt/
ResourceFilter.cpp 66 // since we don't know any better and they might as well be a match.
69 // true if and only if they are an exact match.
75 return true; // both scripts are empty. We match for backward compatibility reasons.
81 if (scriptBuffer[0] == '\0') { // We can't compute the script, so we match.
88 if (scriptBuffer[0] == '\0') { // We can't compute the script, so we match.
98 WeakResourceFilter::match(const ResTable_config& config) const function in class:WeakResourceFilter
117 // we match.
119 // Exception: we won't match if a script is specified for at least
123 // we match.)
133 // Special case if the smallest screen width doesn't match. We check that th
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertStoreSpiTest.java 81 public boolean match (CRL crl) { method in class:CertStoreSpiTest.tmpCRLSelector
89 public boolean match (Certificate crl) { method in class:CertStoreSpiTest.tmpCertSelector
  /packages/apps/Email/src/com/android/email/mail/internet/
EmailHtmlUtil.java 36 Matcher match = pattern.matcher(text); local
38 if (match.find()) {
42 int start = match.start();
44 end = match.end();
61 } while (match.find());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcherImpl.java 53 public T match(Uri uri) { method in class:TypedUriMatcherImpl
54 int match = mUriMatcher.match(uri); local
55 if (match == UriMatcher.NO_MATCH) {
58 return mValues[match];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_owner.h 15 __u8 match, invert; member in struct:xt_owner_match_info
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
xmethod.py 54 When looking for xmethods, GDB invokes the `match' method of a
55 registered xmethod matcher to match the object type and method name.
56 The `match' method in concrete classes derived from this class should
58 objects if there is a match (see below for 'XMethodWorker' class).
67 the 'match' method below to know how this sequence is used.
76 xmethods returned by the `match' method.
82 def match(self, class_type, method_name): member in class:XMethodMatcher
83 """Match class type and method name.
91 class_type: The class type (gdb.Type object) to match.
92 method_name: The name (string) of the method to match
204 def match(self, class_type, method_name): member in class:SimpleXMethodMatcher
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
xmethod.py 54 When looking for xmethods, GDB invokes the `match' method of a
55 registered xmethod matcher to match the object type and method name.
56 The `match' method in concrete classes derived from this class should
58 objects if there is a match (see below for 'XMethodWorker' class).
67 the 'match' method below to know how this sequence is used.
76 xmethods returned by the `match' method.
82 def match(self, class_type, method_name): member in class:XMethodMatcher
83 """Match class type and method name.
91 class_type: The class type (gdb.Type object) to match.
92 method_name: The name (string) of the method to match
204 def match(self, class_type, method_name): member in class:SimpleXMethodMatcher
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
rewrite.go 73 if match(m, pat, val) {
157 // match reports whether pattern matches val,
159 // If m == nil, match checks whether pattern == val.
160 func match(m map[string]reflect.Value, pattern, val reflect.Value) bool { func
162 // times in the pattern, it must match the same expression
167 // wildcards only match valid (non-nil) expressions.
170 return match(nil, old, val)
178 // Otherwise, pattern and val must match recursively.
189 // For identifiers, only the names need to match
197 // object pointers and token positions always match
    [all...]
  /prebuilts/go/darwin-x86/src/image/
format.go 29 // string can contain "?" wildcards that each match any one byte.
50 // Match reports whether magic matches b. Magic may contain "?" wildcards.
51 func match(magic string, b []byte) bool { func
67 if err == nil && match(f.magic, b) {
  /prebuilts/go/darwin-x86/src/net/http/
sniff.go 32 if ct := sig.match(data, firstNonWS); ct != "" {
49 // match returns the MIME type of the data, or "" if unknown.
50 match(data []byte, firstNonWS int) string
159 func (e *exactSig) match(data []byte, firstNonWS int) string { func
172 func (m *maskedSig) match(data []byte, firstNonWS int) string { func
196 func (h htmlSig) match(data []byte, firstNonWS int) string { func
222 func (mp4Sig) match(data []byte, firstNonWS int) string { func
249 func (textSig) match(data []byte, firstNonWS int) string { func
  /prebuilts/go/linux-x86/src/cmd/gofmt/
rewrite.go 73 if match(m, pat, val) {
157 // match reports whether pattern matches val,
159 // If m == nil, match checks whether pattern == val.
160 func match(m map[string]reflect.Value, pattern, val reflect.Value) bool { func
162 // times in the pattern, it must match the same expression
167 // wildcards only match valid (non-nil) expressions.
170 return match(nil, old, val)
178 // Otherwise, pattern and val must match recursively.
189 // For identifiers, only the names need to match
197 // object pointers and token positions always match
    [all...]
  /prebuilts/go/linux-x86/src/image/
format.go 29 // string can contain "?" wildcards that each match any one byte.
50 // Match reports whether magic matches b. Magic may contain "?" wildcards.
51 func match(magic string, b []byte) bool { func
67 if err == nil && match(f.magic, b) {
  /prebuilts/go/linux-x86/src/net/http/
sniff.go 32 if ct := sig.match(data, firstNonWS); ct != "" {
49 // match returns the MIME type of the data, or "" if unknown.
50 match(data []byte, firstNonWS int) string
159 func (e *exactSig) match(data []byte, firstNonWS int) string { func
172 func (m *maskedSig) match(data []byte, firstNonWS int) string { func
196 func (h htmlSig) match(data []byte, firstNonWS int) string { func
222 func (mp4Sig) match(data []byte, firstNonWS int) string { func
249 func (textSig) match(data []byte, firstNonWS int) string { func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 105 # Don't match the node if it's within another match.
106 def match(self, node): member in class:FixImports
107 match = super(FixImports, self).match
108 results = match(node)
113 any(match(obj) for obj in attr_chain(node, "parent")):
137 results = self.match(node)

Completed in 955 milliseconds

1 2 3 4 56 7 8 91011>>