Searched defs:match (Results 151 - 175 of 673) sorted by relevance

1234567891011>>

/external/lldb/source/Core/
H A DRegularExpression.cpp121 // Execute a regular expression match using the compiled regular
122 // expression that is already in this object against the match
129 RegularExpression::Execute(const char* s, Match *match, int execute_flags) const argument
134 if (match)
138 match->GetSize(),
139 match->GetData(),
155 if (match)
156 match->Clear();
/external/llvm/lib/Support/
H A DRegex.cpp59 bool Regex::match(StringRef String, SmallVectorImpl<StringRef> *Matches){ function in class:Regex
78 // There was a match.
80 if (Matches) { // match position requested
85 // this group didn't match
105 // Return the input if there was no match.
106 if (!match(String, &Matches))
110 // the match.
/external/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp134 bool match = false; local
137 if (RegEx.match(GA->getName())) {
139 match = true;
142 if (!match) {
168 bool match = false; local
170 if (RegEx.match(GV.getName())) {
172 match = true;
175 if (!match) {
201 bool match = false; local
204 if (RegEx.match(
[all...]
/external/mesa3d/src/glsl/
H A Dir_function.cpp34 * \brief Check if two parameter lists match.
46 /* This is set to true if there is an inexact match requiring an implicit
55 * do not match.
106 * match.
129 ir_function_signature *match = NULL; local
134 * "If an exact match is found, the other signatures are ignored, and
135 * the exact match is used. Otherwise, if no exact match is found, then
137 * be applied to the calling arguments if this can make their types match
140 * call such that the call can be made to match multipl
[all...]
H A Ds_expression.cpp177 s_pattern::match(s_expression *expr) function in class:s_pattern
209 if (expr == NULL || !pattern[i].match(expr))
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DStatusLine.java65 * match templates are 0's
68 public boolean match(Object matchObj) { method in class:StatusLine
74 return sl.matchExpression.match(this.encode());
96 /** set the flag on a match template.
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowUriMatcher.java46 public int match(Uri uri) { method in class:ShadowUriMatcher
/external/skia/src/animator/
H A DSkGetCondensedInfo.cpp38 unsigned char match = (unsigned char) type; local
43 if (gTypeIDs[mid] < match)
82 const char* match = *matchPtr; local
84 int index = _searchByName(&info->fName, count, strings, match);
/external/skia/src/pathops/
H A DSkDQuadImplicit.cpp92 * OPTIMIZATION -- since comparison short-circuits on no match,
96 bool SkDQuadImplicit::match(const SkDQuadImplicit& p2) const { function in class:SkDQuadImplicit
116 return i1.match(i2);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dupnp_xml.c192 const char *match = item; local
206 if (!os_strncasecmp(tagname, match, match_len) &&
/external/wpa_supplicant_8/src/wps/
H A Dupnp_xml.c192 const char *match = item; local
206 if (!os_strncasecmp(tagname, match, match_len) &&
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dupnp_xml.c192 const char *match = item; local
206 if (!os_strncasecmp(tagname, match, match_len) &&
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java70 * @param pattern The pattern to match against. Must not be
72 * @param str The path to match, as a String. Must not be
90 * @param pattern The pattern to match against. Must not be
92 * @param str The path to match, as a String. Must not be
125 * @param patDirs The tokenized pattern to match against. Must not be
127 * @param strDirs The tokenized path to match. Must not be
148 if (!match(patDir, strDirs[strIdxStart], isCaseSensitive)) {
179 * @param pattern The pattern to match against. Must not be
181 * @param str The path to match, as a String. Must not be
200 * @param pattern The pattern to match agains
339 public static boolean match(String pattern, String str) { method in class:SelectorUtils
360 public static boolean match(String pattern, String str, method in class:SelectorUtils
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DLexer.java32 * uses simplified match() and error recovery mechanisms in the interest
69 /** Return a token from this source; i.e., match a token on the char
104 // match() routine has already called recover()
168 public void match(String s) throws MismatchedTokenException { method in class:Lexer
191 public void match(int c) throws MismatchedTokenException { method in class:Lexer
284 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c);
324 /** Lexers can normally match any char in it's vocabulary after matching
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSpelunker.java67 protected void match(String expecting) throws IOException { method in class:GrammarSpelunker
68 //System.out.println("match "+expecting+"; is "+token);
108 match("grammar");
115 match("options");
116 match("{");
122 match(";");
126 match("}");
131 match("import");
137 match(";");
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_util.c54 int match = 0; local
63 ++match;
70 if (match == 12)
72 if (match == 14)
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateHolder.java267 public boolean match(Object obj) method in class:AttributeCertificateHolder
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateHolder.java328 public boolean match(Certificate cert) method in class:AttributeCertificateHolder
411 public boolean match(Object obj) method in class:AttributeCertificateHolder
418 return match((Certificate)obj);
H A DX509CRLStoreSelector.java92 public boolean match(Object obj) method in class:X509CRLStoreSelector
160 return super.match((X509CRL)obj);
163 public boolean match(CRL crl) method in class:X509CRLStoreSelector
165 return match((Object)crl);
169 * Returns if this selector must match CRLs with the delta CRL indicator
/external/chromium_org/chrome/browser/autocomplete/
H A Dkeyword_extensions_delegate_impl.cc83 // ensure it is less than the main match's relevance.
175 // We recompute the first match's relevance; we know that |complete|
182 // default match, lest we introduce race conditions in the omnibox user
190 AutocompleteMatch* match = &extension_suggest_matches_.back(); local
191 match->contents.assign(base::UTF8ToUTF16(suggestion.description));
192 match->contents_class =
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dapp_search_provider.cc87 TokenizedStringMatch match; local
88 if (!match.Calculate(query_terms, (*app_it)->indexed_name()))
91 result->UpdateFromMatch((*app_it)->indexed_name(), match);
H A Domnibox_provider.cc72 const AutocompleteMatch& match)
75 match_(match) {
70 OmniboxResult(Profile* profile, AutocompleteController* autocomplete_controller, const AutocompleteMatch& match) argument
/external/chromium_org/chrome/browser/ui/omnibox/
H A Domnibox_navigation_observer.cc56 const AutocompleteMatch& match,
59 match_(match),
53 OmniboxNavigationObserver( Profile* profile, const base::string16& text, const AutocompleteMatch& match, const AutocompleteMatch& alternate_nav_match) argument
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_search_prerenderer.cc144 bool InstantSearchPrerenderer::IsAllowed(const AutocompleteMatch& match, argument
146 return source && AutocompleteMatch::IsSearchType(match.type) &&
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_root_view.cc202 AutocompleteMatch match; local
205 text, false, false, metrics::OmniboxEventProto::INVALID_SPEC, &match,
207 if (!match.destination_url.is_valid())
211 *url = match.destination_url;

Completed in 545 milliseconds

1234567891011>>