/external/deqp/scripts/ |
convert_case_list_to_xml.py | 13 matches = [] 19 matches.append(ndx) 20 return matches
|
/external/lldb/source/Core/ |
FileSpecList.cpp | 103 // Find the index of the file in the file spec list that matches 106 // Returns the valid index of the file that matches "file_spec" if 188 FileSpecList::GetFilesMatchingPartialPath (const char *path, bool dir_okay, FileSpecList &matches) 191 matches.Clear(); 204 matches.Append (path_spec);
|
/external/lldb/source/Interpreter/ |
CommandInterpreter.cpp | 627 StringList &matches) 629 CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_str, matches); 633 CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_str, matches); 636 return matches.GetSize(); 640 CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches) 670 // We will only get into here if we didn't find any exact matches. 675 if (matches == NULL) 676 matches = &local_matches; 683 // them in toto, then return that, otherwise return an empty CommandObjectSP and the list of matches. 687 num_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches); 948 StringList matches; local 1614 StringList matches; local 1831 StringList matches; local [all...] |
/prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/ |
hamcrest-core-1.3.jar | |
/external/lldb/scripts/Python/interface/ |
SBModule.i | 214 /// matches. 261 /// Allow the number of matches to be limited to \a max_matches. 327 matches = [] 332 matches.append(symbol) 333 return matches 335 matches = [] 343 matches.append(symbol) 350 matches.append(symbol) 351 return matches 393 matches = [ [all...] |
/bootable/recovery/mtdutils/ |
mounts.c | 120 int matches; local 124 matches = sscanf(bufp, "%63s %63s %63s %127s", 127 if (matches == 4) { 140 printf("matches was %d on <<%.40s>>\n", matches, bufp);
|
/external/chromium_org/chrome/browser/autocomplete/ |
keyword_extensions_delegate_impl.h | 51 ACMatches* matches() { return &provider_->matches_; } function in class:KeywordExtensionsDelegateImpl 69 // we need to reset our matches without asking the extension again.
|
/external/chromium_org/chrome/browser/nacl_host/ |
nacl_browser_delegate_impl.cc | 173 bool matches = false; local 177 matches = true; 182 return !matches; 184 return matches;
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
passwords_helper.h | 33 // LivePasswordsSyncTest and adds the results to |matches|. Note that the 34 // caller is responsible for deleting the forms added to |matches|. 36 std::vector<autofill::PasswordForm>& matches);
|
/external/chromium_org/chromeos/network/ |
client_cert_resolver.h | 76 // |matches| contains networks for which a matching certificate was found. 78 void ConfigureCertificates(std::vector<NetworkAndMatchingCert>* matches);
|
/external/chromium_org/components/autofill/core/common/ |
password_form_fill_data.h | 72 // |preferred_match| should equal (address) one of matches. 79 const PasswordFormMap& matches,
|
/external/chromium_org/components/url_matcher/ |
regex_set_matcher.h | 24 // Efficiently matches URLs against a collection of regular expressions, 43 // to |matches|. 45 std::set<StringPattern::ID>* matches) const;
|
/external/chromium_org/rlz/lib/ |
crc8.cc | 73 unsigned char check_sum, bool* matches) { 74 if (!matches) 77 *matches = false; 85 *matches = check_sum == calculated_crc;
|
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/ |
SourceListDirective.cpp | 28 return m_sourceList.matches(url.isEmpty() ? policy()->url() : url);
|
/external/chromium_org/third_party/icu/source/common/ |
unifilt.cpp | 36 * Default implementation of UnicodeMatcher::matches() for Unicode 37 * filters. Matches a single code point at offset (either one or 40 UMatchDegree UnicodeFilter::matches(const Replaceable& text, function in class:UnicodeFilter
|
/external/chromium_org/third_party/icu/source/i18n/ |
quant.h | 70 virtual UMatchDegree matches(const Replaceable& text, 87 * @return true if this rule matches the given index value.
|
/external/clang/test/CXX/temp/temp.spec/ |
no-body.cpp | 39 template<> void f0<int>(int) { } // expected-error {{no function template matches function template specialization 'f0'}} 52 expected-error {{no function template matches function template specialization 'f1'}}
|
/external/easymock/src/org/easymock/internal/matchers/ |
Captures.java | 45 public boolean matches(Object actual) {
method in class:Captures
|
Compare.java | 46 public boolean matches(Object actual) {
method in class:Compare
|
Equals.java | 33 public boolean matches(Object actual) {
method in class:Equals
|
/external/guava/guava/src/com/google/common/io/ |
PatternFilenameFilter.java | 60 return pattern.matcher(fileName).matches();
|
/external/hamcrest/library/src/org/hamcrest/ |
TypeSafeMatcher.java | 53 public final boolean matches(Object item) { method in class:TypeSafeMatcher
|
/external/hamcrest/library/src/org/hamcrest/collection/ |
IsArray.java | 20 if (!elementMatchers[i].matches(array[i])) return false;
|
IsArrayContaining.java | 19 if (elementMatcher.matches(item)) {
|
/external/hamcrest/src/org/hamcrest/core/ |
IsAnything.java | 26 public boolean matches(Object o) { method in class:IsAnything
|