HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 226 - 250 of 1303) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/autocomplete/
history_contents_provider.h 47 // Adds ACMatchClassifications to match from the offset positions in
50 AutocompleteMatch* match) const;
62 void AddBookmarkTitleMatchToResults(const bookmark_utils::TitleMatch& match);
  /external/chromium/chrome/browser/autofill/
name_field.cc 35 if (Match(field, l10n_util::GetStringUTF16(IDS_AUTOFILL_USERNAME_RE), false))
90 // so we match "initials" here (and just fill in a first name there,
93 string16 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_FIRST_NAME_RE); local
94 if (!ParseText(&q, match, &v->first_name_))
102 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_INITIAL_RE);
103 if (ParseText(&q, match, &v->middle_name_)) {
106 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_NAME_RE);
107 ParseText(&q, match, &v->middle_name_);
111 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_LAST_NAME_RE);
112 if (!ParseText(&q, match, &v->last_name_)
    [all...]
  /external/icu4c/test/perf/strsrchperf/
strsrchperf.h 119 int32_t match; local
121 match = usearch_first(srch, status);
122 while (match != USEARCH_DONE) {
123 match = usearch_next(srch, status);
128 int32_t match; local
130 match = usearch_last(srch, status);
131 while (match != USEARCH_DONE) {
132 match = usearch_previous(srch, status);
  /external/iptables/extensions/
libxt_owner.c 15 /* match and invert flags */
35 uint8_t match, invert; /* flags */ member in struct:ipt_owner_info
44 uint8_t match, invert; /* flags */ member in struct:ip6t_owner_info
64 "owner match options:\n"
65 "[!] --uid-owner userid Match local UID\n"
66 "[!] --gid-owner groupid Match local GID\n"
67 "[!] --pid-owner processid Match local PID\n"
68 "[!] --sid-owner sessionid Match local SID\n"
69 "[!] --cmd-owner name Match local command name\n"
76 "owner match options:\n
    [all...]
libxt_tos.c 2 * Shared library add-on to iptables to add tos match support
44 "tos match options:\n"
45 "[!] --tos value[/mask] Match Type of Service/Priority field value\n"
46 "[!] --tos symbol Match TOS field (IPv4 only) by symbol\n"
81 static void tos_mt_print_v0(const void *ip, const struct xt_entry_match *match,
84 const struct ipt_tos_info *info = (const void *)match->data;
86 printf(" tos match ");
93 static void tos_mt_print(const void *ip, const struct xt_entry_match *match,
96 const struct xt_tos_match_info *info = (const void *)match->data;
98 printf(" tos match");
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 1 //===-- llvm/Support/PatternMatch.h - Match on the LLVM IR ------*- C++ -*-===//
19 // if (match(Exp, m_Or(m_And(m_Value(X), m_ConstantInt(C1)),
39 bool match(Val *V, const Pattern &P) { function in namespace:llvm::PatternMatch
40 return const_cast<Pattern&>(P).match(V);
51 bool match(OpTy *V) { function in struct:llvm::PatternMatch::OneUse_match
52 return V->hasOneUse() && SubPattern.match(V);
63 bool match(ITy *V) { return isa<Class>(V); } function in struct:llvm::PatternMatch::class_match
66 /// m_Value() - Match an arbitrary value and ignore it.
68 /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it.
72 /// m_Undef() - Match an arbitrary undef constant
79 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_zero
95 bool match(ITy *V) { function in struct:llvm::PatternMatch::apint_match
118 bool match(ITy *V) { function in struct:llvm::PatternMatch::constantint_match
143 bool match(ITy *V) { function in struct:llvm::PatternMatch::cst_pred_ty
160 bool match(ITy *V) { function in struct:llvm::PatternMatch::api_pred_ty
215 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_ty
239 bool match(ITy *V) { function in struct:llvm::PatternMatch::specificval_ty
252 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_const_intval_ty
278 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinaryOp_match
409 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinOp2_match
457 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CmpClass_match
496 bool match(OpTy *V) { function in struct:llvm::PatternMatch::SelectClass_match
531 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CastClass_match
587 bool match(OpTy *V) { function in struct:llvm::PatternMatch::not_match
617 bool match(OpTy *V) { function in struct:llvm::PatternMatch::neg_match
646 bool match(OpTy *V) { function in struct:llvm::PatternMatch::fneg_match
681 bool match(OpTy *V) { function in struct:llvm::PatternMatch::brc_match
711 bool match(OpTy *V) { function in struct:llvm::PatternMatch::MaxMin_match
740 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smax_pred_ty
747 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smin_pred_ty
754 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umax_pred_ty
761 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umin_pred_ty
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ChallengeParser.java 89 lexer.match(TokenTypes.ID);
102 this.lexer.match(',');
ContentDispositionParser.java 77 this.lexer.match(TokenTypes.ID);
85 this.lexer.match('\n');
EventParser.java 75 this.lexer.match(TokenTypes.ID);
83 this.lexer.match('\n');
MimeVersionParser.java 78 this.lexer.match('.');
87 this.lexer.match('\n');
ReasonParser.java 75 this.lexer.match(TokenTypes.ID);
83 this.lexer.match(',');
SIPETagParser.java 76 this.lexer.match(TokenTypes.ID);
82 this.lexer.match('\n');
SIPIfMatchParser.java 33 * Parser for SIP-If-Match header.
76 this.lexer.match(TokenTypes.ID);
82 this.lexer.match('\n');
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PCalledPartyIDParser.java 73 this.lexer.match(TokenTypes.P_CALLED_PARTY_ID);
75 this.lexer.match(':');
PPreferredIdentityParser.java 69 this.lexer.match(TokenTypes.P_PREFERRED_IDENTITY);
71 this.lexer.match(':');
PProfileKeyParser.java 56 this.lexer.match(TokenTypes.P_PROFILE_KEY);
58 this.lexer.match(':');
  /external/oprofile/libutil++/
generic_spec.h 3 * Container holding an item or a special "match all" item
31 * build a default spec which match anything
52 /// return true if rhs match this spec. Sub part of PP:3.24
53 bool match(T const & rhs) const { function in class:generic_spec
57 /// return true if rhs match this spec. Sub part of PP:3.24
58 bool match(generic_spec<T> const & rhs) const { function in class:generic_spec
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/String/
match.js 23 Filename: match.js
24 Description: 'This tests the new String object method: match'
33 var TITLE = 'String:match';
35 writeHeaderToLog('Executing script: match.js');
44 testcases[count++] = new TestCase( SECTION, "aString.match(/is.*test/) ", String(["is is a test"]), String(aString.match(/is.*test/)));
45 testcases[count++] = new TestCase( SECTION, "aString.match(/s.*s/) ", String(["s is a test s"]), String(aString.match(/s.*s/)));
  /ndk/build/awk/
convert-deps-to-cygwin.awk 53 if (match($0,"^[[:space:]]+")) {
  /external/icu4c/test/cintltst/
ucsdetst.c 127 const UCharsetMatch *match; local
139 match = ucsdet_detect(csd, &status);
141 if (match == NULL) {
146 dLength = ucsdet_getUChars(match, detected, sLength, &status);
173 const UCharsetMatch *match; local
178 match = ucsdet_detect(csd, &status);
180 if (match == NULL) {
185 name = ucsdet_getName(match, &status);
186 conf = ucsdet_getConfidence(match, &status);
198 match = ucsdet_detect(csd, &status)
236 const UCharsetMatch *match; local
289 const UCharsetMatch *match; local
394 const UCharsetMatch *match; local
479 const UCharsetMatch *match; local
557 const UCharsetMatch *match; local
    [all...]
  /bionic/libc/kernel/common/linux/
attribute_container.h 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
  /development/ndk/platforms/android-3/include/linux/
attribute_container.h 25 int (*match)(struct attribute_container *, struct device *); member in struct:attribute_container
  /external/apache-http/src/org/apache/http/cookie/
CookieSpec.java 97 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieSpec
  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieAttributeHandler.java 45 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:AbstractCookieAttributeHandler
46 // Always match
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509CertStoreSelector.java 21 public boolean match(Object obj) method in class:X509CertStoreSelector
30 return super.match(other);
33 public boolean match(Certificate cert) method in class:X509CertStoreSelector
35 return match((Object)cert);

Completed in 1971 milliseconds

1 2 3 4 5 6 7 8 91011>>