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

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
example.py 42 found, vars = match(DOCSTRING_STMT_PATTERN[1], tree[1])
44 found, vars = match(DOCSTRING_STMT_PATTERN, tree[3])
49 found, vars = match(COMPOUND_STMT_PATTERN, node)
111 found, vars = match(DOCSTRING_STMT_PATTERN, tree[1])
116 def match(pattern, data, vars=None): function
117 """Match `data' to `pattern', with variable extraction.
120 Pattern to match against, possibly containing variables.
130 are allowed to match anything. The value that is matched is returned as
135 This function returns two values: a boolean indicating whether a match
149 same, vars = match(pattern, data, vars)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
dumpnode.c 384 Junction *match; local
393 match=findnode1(j->p2);
394 if (match != NULL) return match;
403 Junction *findnode(int match)
405 Junction *findnode(match)
406 int match;
412 findnodeMatch=match;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inftrees.c 57 unsigned match; /* use base and extra for symbol >= match */ local
184 match = 20;
189 match = 257;
194 match = 0;
217 if (work[sym] + 1U < match) {
221 else if (work[sym] >= match) {
222 here.op = (unsigned char)(extra[work[sym] - match]);
223 here.val = base[work[sym] - match];
  /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
smisc.c 130 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);
  /external/brotli/c/enc/
static_dict.c 32 uint32_t match = (uint32_t)((distance << 5) + len_code); local
33 matches[len] = BROTLI_MIN(uint32_t, matches[len], match);
55 /* Match against base dictionary word. */
59 /* Match against uppercase first transform.
66 /* Match against uppercase all transform.
  /external/eigen/Eigen/src/SparseCore/
SparseRef.h 33 template<typename Derived> struct match { struct in struct:Eigen::internal::traits
62 template<typename Derived> struct match { struct in struct:Eigen::internal::traits
147 EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseMatrix<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
155 EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseMatrix<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
169 EIGEN_STATIC_ASSERT(bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
190 construct(expr.derived(), typename Traits::template match<Derived>::type());
199 construct(other.derived(), typename Traits::template match<OtherRef>::type());
275 EIGEN_STATIC_ASSERT(bool(Traits::template match<SparseVector<MatScalar,OtherOptions,MatIndex> >::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
288 EIGEN_STATIC_ASSERT(bool(Traits::template match<Derived>::MatchAtCompileTime), STORAGE_LAYOUT_DOES_NOT_MATCH);
308 construct(expr.derived(), typename Traits::template match<Derived>::type())
    [all...]
  /external/eigen/test/
eigensolver_complex.cpp 18 bool match = diffs.diagonal().sum() <= tol; local
19 if(match || col==diffs.cols())
21 return match;
  /external/harfbuzz_ng/src/
hb-ot-name-table.hh 94 NameRecord *match = (NameRecord *) bsearch (&key, nameRecord, count, sizeof (nameRecord[0]), NameRecord::cmp); local
96 if (!match)
99 unsigned int length = MIN (buffer_length, (unsigned int) match->length);
100 memcpy (buffer, (char *) this + stringOffset + match->offset, length);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecog_Unicode.java 27 * @see android.icu.text.CharsetRecognizer#match(android.icu.text.CharsetDetector)
30 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecog_Unicode
64 CharsetMatch match(CharsetDetector det) method in class:CharsetRecog_Unicode.CharsetRecog_UTF_16_BE
100 CharsetMatch match(CharsetDetector det) method in class:CharsetRecog_Unicode.CharsetRecog_UTF_16_LE
135 CharsetMatch match(CharsetDetector det) method in class:CharsetRecog_Unicode.CharsetRecog_UTF_32
  /external/icu/icu4c/source/i18n/
csr2022.cpp 32 * @return match quality, in the range of 0-100.
149 UBool CharsetRecog_2022JP::match(InputText *textIn, CharsetMatch *results) const { function in class:CharsetRecog_2022JP
165 UBool CharsetRecog_2022KR::match(InputText *textIn, CharsetMatch *results) const { function in class:CharsetRecog_2022KR
180 UBool CharsetRecog_2022CN::match(InputText *textIn, CharsetMatch *results) const { function in class:CharsetRecog_2022CN
csrucode.cpp 55 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const function in class:CharsetRecog_UTF_16_BE
90 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const function in class:CharsetRecog_UTF_16_LE
123 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const function in class:CharsetRecog_UTF_32
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecog_2022.java 32 * @return match quality, in the range of 0-100.
34 int match(byte [] text, int textLen, byte [][] escapeSequences) { method in class:CharsetRecog_2022
122 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_2022.CharsetRecog_2022JP
123 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
139 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_2022.CharsetRecog_2022KR
140 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
166 CharsetMatch match(CharsetDetector det) { method in class:CharsetRecog_2022.CharsetRecog_2022CN
167 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
CharsetRecog_Unicode.java 26 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
29 abstract CharsetMatch match(CharsetDetector det); method in class:CharsetRecog_Unicode
63 CharsetMatch match(CharsetDetector det) method in class:CharsetRecog_Unicode.CharsetRecog_UTF_16_BE
99 CharsetMatch match(CharsetDetector det) method in class:CharsetRecog_Unicode.CharsetRecog_UTF_16_LE
134 CharsetMatch match(CharsetDetector det) method in class:CharsetRecog_Unicode.CharsetRecog_UTF_32
  /external/libxkbcommon/xkbcommon/src/compose/
paths.c 58 char *match; local
79 match = NULL;
119 match = strndup(right, right_len);
125 match = strndup(left, left_len);
132 return match;
  /external/libxml2/doc/
libxml-doc.el 68 ;; - Changed the 'word match from thing-at-point into 'symbol.
76 ;; thing-at-point does not match a symbol and "*" + thing-at-point
77 ;; does not match a symbol (this is used to catch callbacks) and
83 ;; string-match of XEmacs when used in completing-read used the
85 ;; c-mode buffer that we had set => so there's a new *-string-match-cs
86 ;; (case sensitive) function which binds case-fold-search and runs string-match
92 ;; - keep (match-string 1) in a variable (libxmldoc-get-list-of-symbols)
104 "Symbols that match this regular expression will be excluded when doing
126 ;; setting case-fold-search is now done in libxmldoc-string-match-cs
150 (not (libxmldoc-string-match-cs libxmldoc-filter-regex
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
ptrace-tar.h 36 int match = 1; local
39 match = 0;
42 match = 0;
45 match = 0;
47 if (!match)
  /external/llvm/lib/Support/
SpecialCaseList.cpp 42 bool match(StringRef Query) const { function in struct:llvm::SpecialCaseList::Entry
43 return Strings.count(Query) || (RegEx && RegEx->match(Query));
165 return II->getValue().match(Query);
  /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/ltp/testcases/cve/
cve-2016-4997.c 59 void *match; member in struct:xt_entry_match::__anon28507::__anon28509
88 struct xt_entry_match match; member in struct:payload
108 strncpy(p.match.u.user.name, "icmp", sizeof(p.match.u.user.name));
109 p.match.u.match_size = OFFSET_OVERWRITE;
  /external/mesa3d/src/compiler/glsl/tests/
varyings_test.cpp 275 * "a". They should not match.
284 ir_variable *const match = local
291 EXPECT_EQ(NULL, match);
316 /* Create an output variable "a.v". They should not match.
323 ir_variable *const match = local
330 EXPECT_EQ(NULL, match);

Completed in 654 milliseconds

1 2 3 4 5 6 7 891011>>