HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 301 - 325 of 1779) sorted by null

<<11121314151617181920>>

  /external/iptables/extensions/
libxt_multiport.c 25 "multiport match options:\n"
28 " match source port(s)\n"
31 " match destination port(s)\n"
33 " match both source and destination port(s)\n"
40 "multiport match options:\n"
43 " match source port(s)\n"
46 " match destination port(s)\n"
48 " match both source and destination port(s)\n");
281 __multiport_print(const struct xt_entry_match *match, int numeric,
285 = (const struct xt_multiport *)match->data
    [all...]
libxt_connlimit.c 23 "connlimit match options:\n"
24 " --connlimit-upto n match if the number of existing connections is 0..n\n"
25 " --connlimit-above n match if the number of existing connections is >n\n"
49 static void connlimit_init(struct xt_entry_match *match)
51 struct xt_connlimit_info *info = (void *)match->data;
60 const unsigned int revision = (*cb->match)->u.user.revision;
129 const struct xt_entry_match *match, int numeric)
131 const struct xt_connlimit_info *info = (const void *)match->data;
140 const struct xt_entry_match *match, int numeric)
142 const struct xt_connlimit_info *info = (const void *)match->data
    [all...]
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...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByteAbstractTest.java 71 assertEqualChars2("Decoded charactes must match!",
75 // assertTrue("Decoded charactes (REPLACEed ones INCLUSIVE) must match!",
78 // assertEqualChars("Decoded charactes (REPLACEed ones INCLUSIVE) must match!",
82 // assertEquals("Decoded charactes must match!",
95 // assertEqualChars("Decoded charactes must match!",
98 //// assertEquals("Decoded charactes must match!",
110 assertEqualBytes2("Encoded bytes must match!", allBytes, outputBB.array(), allChars);
122 //// System.out.format("Match index %d: %d = %d\n",
130 boolean match = true;
151 match = false
    [all...]
  /external/icu4c/common/
ucnv_ext.c 108 * or if the match length fits with the current converter state
110 #define UCNV_EXT_TO_U_VERIFY_SISO_MATCH(sisoState, match) \
111 ((sisoState)<0 || ((sisoState)==0) == (match==1))
132 return 0; /* no extension data, no match */
145 return 0; /* no match of a DBCS sequence in SBCS mode */
158 /* match input units until there is a full match or the input is consumed */
172 /* remember longest match so far */
177 /* match pre[] then src[] */
183 /* all input consumed, partial match */
283 int32_t match; local
333 int32_t match; local
371 int32_t match, length; local
752 int32_t match; local
811 int32_t match; local
865 int32_t match; local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_omnibox_apitest.cc 42 AutocompleteMatch match = result.match_at(i); local
43 std::string provider_name = match.provider->name();
45 UTF16ToUTF8(match.contents).c_str(),
118 AutocompleteMatch match = result.match_at(0); local
119 EXPECT_EQ(AutocompleteMatch::SEARCH_WHAT_YOU_TYPED, match.type);
120 EXPECT_FALSE(match.deletable);
122 match = result.match_at(1);
123 ASSERT_TRUE(match.template_url);
124 EXPECT_TRUE(match.template_url->IsExtensionKeyword());
125 EXPECT_EQ(ASCIIToUTF16("keyword"), match.template_url->keyword())
188 AutocompleteMatch match = result.match_at(4); local
    [all...]
  /device/ti/panda/recovery/
Android.mk 10 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSpelunker.java 67 protected void match(String expecting) throws IOException { method in class:GrammarSpelunker
68 //System.out.println("match "+expecting+"; is "+token);
108 match("grammar");
115 match("options");
116 match("{");
122 match(";");
126 match("}");
131 match("import");
137 match(";");
  /external/chromium/chrome/browser/autocomplete/
autocomplete_classifier.cc 23 AutocompleteMatch* match,
38 *match = *result.default_match();
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/linux-tools-perf/scripts/python/bin/
sctop-report 7 if expr match "$i" "-" > /dev/null ; then
  /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)),
40 bool match(Val *V, const Pattern &P) { function in namespace:llvm::PatternMatch
41 return const_cast<Pattern&>(P).match(V);
52 bool match(OpTy *V) { function in struct:llvm::PatternMatch::OneUse_match
53 return V->hasOneUse() && SubPattern.match(V);
64 bool match(ITy *V) { return isa<Class>(V); } function in struct:llvm::PatternMatch::class_match
67 /// m_Value() - Match an arbitrary value and ignore it.
69 /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it.
73 /// m_Undef() - Match an arbitrary undef constant
80 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_zero
96 bool match(ITy *V) { function in struct:llvm::PatternMatch::apint_match
126 bool match(ITy *V) { function in struct:llvm::PatternMatch::constantint_match
151 bool match(ITy *V) { function in struct:llvm::PatternMatch::cst_pred_ty
172 bool match(ITy *V) { function in struct:llvm::PatternMatch::api_pred_ty
237 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_ty
261 bool match(ITy *V) { function in struct:llvm::PatternMatch::specificval_ty
274 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_const_intval_ty
300 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinaryOp_match
431 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinOp2_match
475 bool match(OpTy *V) { function in struct:llvm::PatternMatch::Exact_match
499 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CmpClass_match
538 bool match(OpTy *V) { function in struct:llvm::PatternMatch::SelectClass_match
573 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CastClass_match
627 bool match(OpTy *V) { function in struct:llvm::PatternMatch::not_match
654 bool match(OpTy *V) { function in struct:llvm::PatternMatch::neg_match
680 bool match(OpTy *V) { function in struct:llvm::PatternMatch::fneg_match
712 bool match(OpTy *V) { function in struct:llvm::PatternMatch::brc_match
742 bool match(OpTy *V) { function in struct:llvm::PatternMatch::MaxMin_match
771 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smax_pred_ty
778 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smin_pred_ty
785 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umax_pred_ty
792 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(':');

Completed in 782 milliseconds

<<11121314151617181920>>