Searched refs:matches (Results 451 - 475 of 860) sorted by relevance

<<11121314151617181920>>

/external/icu/icu4c/source/test/intltest/
H A Ddadrcal.cpp222 if (!fromSet.matches(fromCalendar, diffSet, status)) {
270 } else if (!toSet.matches(toCalendar, diffSet, status)) {
306 if (!fromSet.matches(fromCalendar, diffSet, status)) {
328 if (!fromSet.matches(fromCalendar, diffSet, status)) {
348 if (!toSet.matches(toCalendar, diffSet, status)) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcallchain.c322 u64 matches; local
353 /* matches not, relay on the parent */
360 matches = cursor->pos - start;
363 if (matches < root->val_nr) {
364 split_add_child(root, cursor, cnode, start, matches, period);
369 if (matches == root->val_nr && cursor->pos == cursor->nr) {
/external/proguard/src/proguard/retrace/
H A DReTrace.java201 if (matcher.matches())
377 if (fieldInfo.matches(type))
452 if (methodInfo.matches(lineNumber, type, arguments))
639 private boolean matches(String type) method in class:ReTrace.FieldInfo
669 private boolean matches(int lineNumber, String type, String arguments) method in class:ReTrace.MethodInfo
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
H A DPrettyPatch.rb826 matches = START_OF_SECTION_FORMAT.match(lines[0])
828 if matches
829 from, to = [matches[1].to_i, matches[3].to_i]
830 if matches[2] and matches[4]
831 from_end = from + matches[2].to_i
832 to_end = to + matches[4].to_i
919 @blocks.unshift(ContextLine.new(matches[5])) unless matches
[all...]
/external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
H A Dgbm_dri.c143 struct dri_extension_match *matches,
150 for (j = 0; matches[j].name; j++) {
151 if (strcmp(extensions[i]->name, matches[j].name) == 0 &&
152 extensions[i]->version >= matches[j].version) {
153 field = ((char *) dri + matches[j].offset);
159 for (j = 0; matches[j].name; j++) {
160 field = ((char *) dri + matches[j].offset);
142 dri_bind_extensions(struct gbm_dri_device *dri, struct dri_extension_match *matches, const __DRIextension **extensions) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.cpp638 int matches; local
640 for (matches = 0; matches < 4; matches++) {
641 if (prog_data->pull_param[j + matches] != values[matches])
645 if (matches == 4) {
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp10 // Implements an algorithm to efficiently search for matches on AST nodes.
11 // Uses memoization to support recursive matches like HasDescendant.
79 // Creates an AST visitor that matches 'matcher' on all children or
238 // Sets 'Matched' to true if 'Matcher' matches 'Node' and:
250 if (Matcher->matches(ast_type_traits::DynTypedNode::create(Node), Finder,
258 if (Matcher->matches(ast_type_traits::DynTypedNode::create(Node), Finder,
354 // find out whether the type name matches.
449 // result callback for every node that matches.
457 if (I->first.matches(Node, this, &Builder)) {
478 // Returns whether an ancestor of \p Node matches \
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/mesa3d/src/gbm/backends/dri/
H A Dgbm_dri.c143 struct dri_extension_match *matches,
150 for (j = 0; matches[j].name; j++) {
151 if (strcmp(extensions[i]->name, matches[j].name) == 0 &&
152 extensions[i]->version >= matches[j].version) {
153 field = ((char *) dri + matches[j].offset);
159 for (j = 0; matches[j].name; j++) {
160 field = ((char *) dri + matches[j].offset);
142 dri_bind_extensions(struct gbm_dri_device *dri, struct dri_extension_match *matches, const __DRIextension **extensions) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.cpp638 int matches; local
640 for (matches = 0; matches < 4; matches++) {
641 if (prog_data->pull_param[j + matches] != values[matches])
645 if (matches == 4) {
/external/clang/lib/Driver/
H A DTools.cpp54 if (LastPICArg->getOption().matches(options::OPT_fPIC) ||
55 LastPICArg->getOption().matches(options::OPT_fpic) ||
56 LastPICArg->getOption().matches(options::OPT_fPIE) ||
57 LastPICArg->getOption().matches(options::OPT_fpie)) {
200 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx))
202 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext))
262 } else if (A->getOption().matches(options::OPT_M) ||
263 A->getOption().matches(options::OPT_MM)) {
296 if (A->getOption().matches(options::OPT_M) ||
297 A->getOption().matches(option
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLDocumentParser.cpp62 if (contextTag.matches(titleTag) || contextTag.matches(textareaTag))
64 if (contextTag.matches(styleTag)
65 || contextTag.matches(xmpTag)
66 || contextTag.matches(iframeTag)
67 || (contextTag.matches(noembedTag) && options.pluginsEnabled)
68 || (contextTag.matches(noscriptTag) && options.scriptEnabled)
69 || contextTag.matches(noframesTag))
71 if (contextTag.matches(scriptTag))
73 if (contextTag.matches(plaintextTa
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java1200 int[] matches = new int[npairs];
1203 matches[j] = ByteArray.read32bit(code, i0);
1208 jumps.add(new Lookup(i, defaultbyte, matches, offsets));
1549 int[] matches; field in class:CodeIterator.Lookup
1551 Lookup(int pos, int defaultByte, int[] matches, int[] offsets) { argument
1553 this.matches = matches;
1557 int n = matches.length;
1561 ByteArray.write32bit(matches[i], newcode, dest);
1569 int tableSize() { return 4 + 8 * matches
[all...]
/external/iproute2/ip/
H A Dxfrm_state.c1194 if (matches(*argv, "add") == 0)
1197 if (matches(*argv, "update") == 0)
1200 if (matches(*argv, "allocspi") == 0)
1202 if (matches(*argv, "delete") == 0)
1204 if (matches(*argv, "deleteall") == 0 || matches(*argv, "delall") == 0)
1206 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0
1207 || matches(*argv, "lst") == 0)
1209 if (matches(*arg
[all...]
H A Dipntable.c641 if (matches(*argv, "change") == 0 ||
642 matches(*argv, "chg") == 0)
646 if (matches(*argv, "show") == 0 ||
647 matches(*argv, "lst") == 0 ||
648 matches(*argv, "list") == 0)
650 if (matches(*argv, "help") == 0)
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_provider_unittest.cc190 // UpdateAssociatedKeywords, and checks that the matches have associated
379 ACMatches matches; local
387 matches.push_back(match);
391 result.AppendMatches(matches);
411 ACMatches matches; local
419 matches.push_back(match);
422 result_.AppendMatches(matches);
449 // Send the controller input which exactly matches the keyword provider we
453 // be from SearchProvider. (It provides all verbatim search matches,
499 // highest relevance matches shoul
[all...]
H A Dhistory_url_provider_unittest.cc57 // matches.
68 // autocompleted if they are shorter substitutes for longer matches that would
221 // Should the matches be sorted and duplicates removed?
302 matches_ = autocomplete_->matches();
361 // Test that if we have a synthesized host that matches a suggestion, they
419 // Exact matches should always be best no matter how much more another match
584 matches_ = autocomplete_->matches();
592 matches_ = autocomplete_->matches();
599 // Ensure that we will still produce matches for navigation when there is no
626 // None of the matches shoul
978 ExpectedMatch matches[kMaxMatches]; member in struct:TestCase
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_rule.cpp230 * Internal method. Returns true if this rule matches the given
233 * It matches this rule if it matches the first character of the
248 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
281 * matches everything ab matches, and {a}b matches {|a|}b but ab
344 * @param incremental if TRUE, test for partial matches that may
393 match = anteContext->matches(tex
[all...]
/external/icu/icu4c/source/i18n/
H A Drbt_rule.cpp230 * Internal method. Returns true if this rule matches the given
233 * It matches this rule if it matches the first character of the
248 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
281 * matches everything ab matches, and {a}b matches {|a|}b but ab
344 * @param incremental if TRUE, test for partial matches that may
393 match = anteContext->matches(tex
[all...]
/external/lldb/source/Core/
H A DLog.cpp390 Log::AutoCompleteChannelName (const char *channel_name, StringList &matches) argument
401 matches.AppendString(pos_channel_name);
405 matches.AppendString(pos_channel_name);
/external/lldb/source/Interpreter/
H A DOptionValue.cpp593 StringList &matches)
596 matches.Clear();
597 return matches.GetSize();
588 AutoComplete(CommandInterpreter &interpreter, const char *s, int match_start_point, int max_return_elements, bool &word_complete, StringList &matches) argument
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py289 matches = [m for m in [m_r, m_s, m_irs] if m]
292 matches.sort(key=lambda x: x.start())
293 if len(matches):
294 m = matches[0]
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_view_views_browsertest.cc249 ACMatches matches; local
255 matches.push_back(match);
257 matches.push_back(match);
258 results.AppendMatches(matches);
/external/chromium_org/chrome/third_party/mock4js/
H A Dmock4js.js308 matches: function(invokedMethodName, invokedMethodArgs) {
365 matches: function(invokedMethodName, invokedMethodArgs) {
367 return this._stubInvocation.matches(invokedMethodName, invokedMethodArgs);
599 if(expectedInvocation.matches(methodName, arguments)) {
/external/chromium_org/components/history/core/browser/
H A Durl_database.h178 // We allow matches of exactly |base| iff |allow_base| is true.
189 // which match the |query| string. Returns any matches in |results|.
218 std::vector<KeywordSearchTermVisit>* matches);

Completed in 685 milliseconds

<<11121314151617181920>>