/external/elfutils/src/libdw/ |
dwarf_getsrc_file.c | 54 Dwarf_Line **match = *nsrcs == 0 ? NULL : *srcsp; local 82 no match is performed. */ 98 /* Match the name with the name the user provided. */ 108 /* See whether line and possibly column match. */ 112 /* Cannot match. */ 115 /* Determine whether this is the best match so far. */ 118 if (match[inner]->files == line->files 119 && match[inner]->file == line->file) 122 && (match[inner]->line != line->line 123 || match[inner]->line != linen [all...] |
/external/elfutils/src/libdwfl/ |
dwfl_module_getsrc_file.c | 53 Dwfl_Line **match = *nsrcs == 0 ? NULL : *srcsp; local 76 no match is performed. */ 93 /* Match the name with the name the user provided. */ 102 /* See whether line and possibly column match. */ 106 /* Cannot match. */ 109 /* Determine whether this is the best match so far. */ 112 if (dwfl_line_file (match[inner]) 116 && (dwfl_line (match[inner])->line != line->line 117 || dwfl_line (match[inner])->line != lineno 119 && (dwfl_line (match[inner])->column != line->colum [all...] |
/external/iproute2/include/ |
xt-internal.h | 22 /* optname to check revision support of match */ 25 /* optname to check revision support of match */ 38 struct xtables_match *match; member in struct:xtables_rule_match 61 struct xtables_rule_match **match);
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
JarScanner.java | 44 * method to handle entries in jar files whose names match the supplied 58 * all jar names will match. 64 * unimportant to you. If instead, you want to match particular 65 * jar names, and you want to match them in order, you should 69 * Will iterate over the jar names and match 78 * @param isNullInclusive if true, an empty pattern means all names match, if false, none match 84 super.match(pattern, uris, isNullInclusive); 91 * all jar names in the classloader will match. 97 * unimportant to you. If instead, you want to match particula [all...] |
/external/llvm/lib/Support/ |
Regex.cpp | 59 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/ |
llvm-extract.cpp | 143 bool match = false; local 146 if (RegEx.match(GA->getName())) { 148 match = true; 151 if (!match) { 177 bool match = false; local 179 if (RegEx.match(GV.getName())) { 181 match = true; 184 if (!match) { 210 bool match = false; local 213 if (RegEx.match(F->getName())) [all...] |
/external/mesa3d/src/glsl/ |
ir_function.cpp | 30 PARAMETER_LIST_INEXACT_MATCH /*< Match requires implicit conversion. */ 34 * \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 [all...] |
s_expression.cpp | 177 s_pattern::match(s_expression *expr) function in class:s_pattern 209 if (expr == NULL || !pattern[i].match(expr))
|
/external/skia/src/animator/ |
SkGetCondensedInfo.cpp | 38 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/pdf/ |
SkPDFCanon.cpp | 56 SkPDFFont::Match match = SkPDFFont::IsMatch( local 59 if (SkPDFFont::kExact_Match == match) { 61 } else if (!relatedFont && SkPDFFont::kRelated_Match == match) {
|
/external/skia/tests/ |
MetaDataTest.cpp | 89 int match = 0; local 94 match += 1; 99 REPORTER_ASSERT(reporter, match == 1);
|
/external/v8/src/ic/mips/ |
ic-compiler-mips.cc | 41 Register match = scratch2(); local 43 __ JumpIfSmi(receiver(), smi_target, match); // Reg match is 0 if Smi. local 58 // Check map and tail call if there's a match. 60 __ Subu(match, map_reg, Operand(map)); 65 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq, match,
|
/external/v8/src/ic/mips64/ |
ic-compiler-mips64.cc | 41 Register match = scratch2(); local 43 __ JumpIfSmi(receiver(), smi_target, match); // Reg match is 0 if Smi. local 58 // Check map and tail call if there's a match. 60 __ Dsubu(match, map_reg, Operand(map)); 65 __ Jump(handlers->at(current), RelocInfo::CODE_TARGET, eq, match,
|
/external/wpa_supplicant_8/src/wps/ |
upnp_xml.c | 192 const char *match = item; local 206 if (!os_strncasecmp(tagname, match, match_len) &&
|
/frameworks/base/core/jni/ |
android_os_UEventObserver.cpp | 48 const String8& match = gMatches.itemAt(i); local 54 if (strstr(field, match.string())) { 55 ALOGV("Matched uevent message with pattern: %s", match.string()); 88 ScopedUtfChars match(env, matchStr); 91 gMatches.add(String8(match.c_str())); 95 ScopedUtfChars match(env, matchStr); 99 if (gMatches.itemAt(i) == match.c_str()) {
|
/frameworks/base/core/tests/coretests/src/android/app/ |
SuggestionProvider.java | 65 int match = sURLMatcher.match(url); local 66 switch (match) { 87 int match = sURLMatcher.match(url); local 88 switch (match) {
|
/frameworks/base/tools/split-select/ |
SplitDescription.cpp | 55 bool SplitDescription::match(const SplitDescription& o) const { function in class:split::SplitDescription 67 return config.match(o.config);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/isomorphism/ |
isomorphvf2.py | 287 for mapping in self.match(): 290 def match(self): member in class:GraphMatcher 310 for mapping in self.match(): 347 the above form to keep the match() method functional. Implementations 367 for mapping in self.match(): [all...] |
matchhelpers.py | 80 match : function 93 def match(data1, data2): function in function:categorical_node_match 97 def match(data1, data2): function in function:categorical_node_match 101 return match 107 def match(datasets1, datasets2): function in function:categorical_multiedge_match 113 def match(datasets1, datasets2): function in function:categorical_multiedge_match 123 return match 155 match : function 168 def match(data1, data2): function in function:numerical_node_match 174 def match(data1, data2) function in function:numerical_node_match 184 def match(datasets1, datasets2): function in function:numerical_multiedge_match 190 def match(datasets1, datasets2): function in function:numerical_multiedge_match 253 def match(data1, data2): function in function:generic_node_match 257 def match(data1, data2): function in function:generic_node_match 310 def match(datasets1, datasets2): function in function:generic_multiedge_match 326 def match(datasets1, datasets2): function in function:generic_multiedge_match [all...] |
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
smisc.c | 122 match function
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
Lexer.pm | 46 # Return a token from this source; i.e., match a token on the char 159 sub match { subroutine 262 $msg = 'required (...)+ loop did not match anything at character ' 299 # Lexers can normally match any char in it's vocabulary after matching
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
BestMatchSpec.java | 152 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BestMatchSpec 160 return getStrict().match(cookie, origin); 162 return getCompat().match(cookie, origin);
|
CookieSpecBase.java | 121 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:CookieSpecBase 129 if (!handler.match(cookie, origin)) {
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/ |
X509CertificateHolderSelector.java | 52 * @param subjectKeyId the subject key identifier to use to match the signers associated certificate. 113 public boolean match(Object obj) method in class:X509CertificateHolderSelector
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
AttributeCertificateIssuer.java | 141 public boolean match(Certificate cert) method in class:AttributeCertificateIssuer 199 public boolean match(Object obj) method in class:AttributeCertificateIssuer 206 return match((Certificate)obj);
|