/external/icu4c/i18n/ |
csrucode.h | 37 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector) 39 UBool match(InputText* textIn, CharsetMatch *results) const = 0; 51 UBool match(InputText* textIn, CharsetMatch *results) const; 62 UBool match(InputText* textIn, CharsetMatch *results) const; 75 UBool match(InputText* textIn, CharsetMatch *results) const;
|
ucurrimp.h | 32 * code. If multiple display names match, then the longest one is 34 * match, then the display name is preferred, unless it's length 37 * @param locale the locale of the display names to match 40 * text to match; must have 0 <= pos.getIndex() < text.length(); 44 * @return the ISO 4217 code, as a string, of the best match, or 45 * null if there is no match
|
/external/iptables/extensions/ |
libxt_quota.c | 23 printf("quota match options:\n" 28 quota_print(const void *ip, const struct xt_entry_match *match, int numeric) 30 const struct xt_quota_info *q = (const void *)match->data; 35 quota_save(const void *ip, const struct xt_entry_match *match) 37 const struct xt_quota_info *q = (const void *)match->data;
|
libxt_set.man | 3 [\fB!\fP] \fB\-\-match\-set\fP \fIsetname\fP \fIflag\fP[\fB,\fP\fIflag\fP]... 10 iptables \-A FORWARD \-m set \-\-match\-set test src,dst 12 will match packets, for which (if the set type is ipportmap) the source 15 then the command will match packets for which the source address can be 18 The option \fB\-\-match\-set\fP can be replaced by \fB\-\-set\fP if that does
|
libxt_socket.c | 22 "socket match options:\n" 39 socket_mt_save(const void *ip, const struct xt_entry_match *match) 41 const struct xt_socket_mtinfo1 *info = (const void *)match->data; 48 socket_mt_print(const void *ip, const struct xt_entry_match *match, 52 socket_mt_save(ip, match);
|
libxt_connmark.c | 40 "connmark match options:\n" 41 "[!] --mark value[/mask] Match ctmark value with optional mask\n"); 81 connmark_print(const void *ip, const struct xt_entry_match *match, int numeric) 83 const struct xt_connmark_info *info = (const void *)match->data; 85 printf(" CONNMARK match "); 92 connmark_mt_print(const void *ip, const struct xt_entry_match *match, int numeric) 94 const struct xt_connmark_mtinfo1 *info = (const void *)match->data; 96 printf(" connmark match "); 102 static void connmark_save(const void *ip, const struct xt_entry_match *match) 104 const struct xt_connmark_info *info = (const void *)match->data [all...] |
libxt_length.c | 12 "length match options:\n" 13 "[!] --length length[:length] Match packet length against value or range\n" 37 length_print(const void *ip, const struct xt_entry_match *match, int numeric) 39 const struct xt_length_info *info = (void *)match->data; 48 static void length_save(const void *ip, const struct xt_entry_match *match) 50 const struct xt_length_info *info = (void *)match->data;
|
libxt_mac.c | 17 "mac match options:\n" 19 " Match source MAC address\n"); 50 mac_print(const void *ip, const struct xt_entry_match *match, int numeric) 52 const struct xt_mac_info *info = (void *)match->data; 61 static void mac_save(const void *ip, const struct xt_entry_match *match) 63 const struct xt_mac_info *info = (void *)match->data;
|
/external/nist-sip/java/gov/nist/core/ |
Match.java | 28 /** Match template for pattern matching. 38 public interface Match { 39 /** Return true if a match occurs for searchString. 40 * This is used for pattern matching in the find and replace and match 45 public boolean match(String searchString); method in interface:Match
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
TypedUriMatcherImpl.java | 53 public T match(Uri uri) { method in class:TypedUriMatcherImpl 54 int match = mUriMatcher.match(uri); local 55 if (match == UriMatcher.NO_MATCH) { 58 return mValues[match];
|
/external/chromium/chrome/browser/autocomplete/ |
history_url_provider.cc | 79 // Given the user's |input| and a |match| created from it, reduce the 80 // match's URL to just a host. If this host still matches the user input, 82 GURL ConvertToHostOnly(const HistoryMatch& match, const string16& input) { 87 const GURL& url = match.url_info.url(); 91 // Transform to a host-only match. Bail if the host no longer matches the 94 if ((host.spec().length() < (match.input_location + input.length()))) 98 if (spec.compare(match.input_location, input.length(), input)) 179 // Create a What You Typed match, which we'll need below. 231 // Try to promote a match as an exact/inline autocomplete match. This als 267 const HistoryMatch& match = history_matches[i]; local 486 const HistoryMatch& match = matches->front(); local [all...] |
/external/openssh/regress/ |
cfgmatch.sh | 4 tid="sshd_config match" 46 echo "Match user $USER" >>$OBJ/sshd_proxy 48 echo "Match Address 127.0.0.1" >>$OBJ/sshd_config 52 echo "Match Address 127.0.0.1" >>$OBJ/sshd_proxy 59 # Test Match + PermitOpen in sshd_config. This should be permitted 61 trace "match permitopen localhost proto $p" 64 fail "match permitopen permit proto $p" 70 trace "match permitopen proxy proto $p" 73 fail "match permitopen deny proto $p" 83 trace "match permitopen proxy w/key opts proto $p [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)), 42 bool match(Val *V, const Pattern &P) { function in namespace:llvm::PatternMatch 43 return const_cast<Pattern&>(P).match(V); 54 bool match(OpTy *V) { function in struct:llvm::PatternMatch::OneUse_match 55 return V->hasOneUse() && SubPattern.match(V); 66 bool match(ITy *V) { return isa<Class>(V); } function in struct:llvm::PatternMatch::class_match 69 /// m_Value() - Match an arbitrary value and ignore it. 71 /// m_ConstantInt() - Match an arbitrary ConstantInt and ignore it. 75 /// m_Undef() - Match an arbitrary undef constant 89 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_combine_or 106 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_combine_and 128 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_zero 141 bool match(ITy *V) { function in struct:llvm::PatternMatch::match_neg_zero 165 bool match(ITy *V) { function in struct:llvm::PatternMatch::apint_match 189 bool match(ITy *V) { function in struct:llvm::PatternMatch::constantint_match 214 bool match(ITy *V) { function in struct:llvm::PatternMatch::cst_pred_ty 233 bool match(ITy *V) { function in struct:llvm::PatternMatch::api_pred_ty 290 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_ty 317 bool match(ITy *V) { function in struct:llvm::PatternMatch::specificval_ty 332 bool match(ITy *V) { function in struct:llvm::PatternMatch::specific_fpval 355 bool match(ITy *V) { function in struct:llvm::PatternMatch::bind_const_intval_ty 381 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinaryOp_match 512 bool match(OpTy *V) { function in struct:llvm::PatternMatch::BinOp2_match 556 bool match(OpTy *V) { function in struct:llvm::PatternMatch::Exact_match 580 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CmpClass_match 619 bool match(OpTy *V) { function in struct:llvm::PatternMatch::SelectClass_match 654 bool match(OpTy *V) { function in struct:llvm::PatternMatch::CastClass_match 708 bool match(OpTy *V) { function in struct:llvm::PatternMatch::not_match 735 bool match(OpTy *V) { function in struct:llvm::PatternMatch::neg_match 761 bool match(OpTy *V) { function in struct:llvm::PatternMatch::fneg_match 791 bool match(OpTy *V) { function in struct:llvm::PatternMatch::br_match 812 bool match(OpTy *V) { function in struct:llvm::PatternMatch::brc_match 842 bool match(OpTy *V) { function in struct:llvm::PatternMatch::MaxMin_match 871 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smax_pred_ty 878 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::smin_pred_ty 885 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umax_pred_ty 892 static bool match(ICmpInst::Predicate Pred) { function in struct:llvm::PatternMatch::umin_pred_ty 928 bool match(OpTy *V) { function in struct:llvm::PatternMatch::Argument_match 946 bool match(OpTy *V) { function in struct:llvm::PatternMatch::IntrinsicID_match [all...] |
/external/clang/test/SemaObjC/ |
property-ivar-mismatch.m | 2 // Test that arithmatic types on property and its ivar have exact match. 12 @synthesize prop = ivar; // expected-error {{type of property 'prop' ('int') does not match type of instance variable 'ivar' ('char')}} 24 @synthesize P=_P; // expected-error {{ype of property 'P' ('int') does not match type of instance variable '_P' ('void *')}}
|
/external/skia/include/views/ |
SkKey.h | 16 //reordering these to match android.app.KeyEvent 22 kHome_SkKey, //!< the home key - added to match android 47 kVolUp_SkKey, //!< volume up - match android
|
/external/skia/legacy/include/views/ |
SkKey.h | 16 //reordering these to match android.app.KeyEvent 22 kHome_SkKey, //!< the home key - added to match android 47 kVolUp_SkKey, //!< volume up - match android
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
SearchSymbol.cpp | 18 match = false; 30 match = true; 36 return match;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
Match.java | 26 /** A match is a potential pairing of two segments with a given {@link ConstraintType}. */ 27 class Match { 37 /** the type of constraint this is a match for */ 40 /** whether this {@link Match} results in a cycle */ 43 /** The associated {@link GuidelineHander} which performed the match */ 47 * Create a new match. 49 * @param handler the handler which performed the match 52 * @param type the type of constraint this is a match for 55 public Match(GuidelineHandler handler, Segment edge, Segment with, 66 * Returns the XML constraint attribute value for this match [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchFinder.h | 11 // over the AST and invokes a given callback on every match. 14 // subtree match on the AST. Next, a callback that is executed every time the 19 // the match or construct changes that can be applied to the code. 56 /// that will trigger the callbacks specified via addMatcher(...) when a match 68 /// \brief Contains all information for a given match. 70 /// Every time a match is found, the MatchFinder will invoke the registered 71 /// MatchCallback with a MatchResult containing information about the match. 75 /// \brief Contains the nodes bound on the current match. 87 /// \brief Called when the Match registered for it was successfully found 93 /// \brief Called on every match by the \c MatchFinder 143 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder 221 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers 232 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers [all...] |
/external/iptables/include/linux/netfilter/ |
xt_set.h | 23 * If changed, new revision of iptables match/target is required. 66 #define IPSET_SRC 0x01 /* Source match/add */ 67 #define IPSET_DST 0x02 /* Destination match/add */ 82 /* match and target infos */ 92 /* Revision 1 match and target */ 100 /* match and target infos */
|
/device/samsung/manta/recovery/ |
Android.mk | 8 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk 21 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk
|
/device/samsung/tuna/recovery/ |
Android.mk | 10 # should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk 23 # should match TARGET_RECOVERY_UPDATER_LIBS set in BoardConfig.mk
|
/external/chromium/chrome/browser/history/ |
snippet.h | 18 // Each MatchPosition is the [begin, end) positions of a match within a 26 // match consists of the column, term-number, location, and length of the 27 // match. Each element of the match is separated by a space, as is each match 30 // This method adds the start and end of each match whose column is 40 // Converts match positions as returned from ExtractMatchPositions to be in 49 // Given |matches|, the match positions within |document|, compute the snippet
|
/external/clang/test/SemaCXX/ |
PR9461.cpp | 31 struct system_error:runtime_error{ // expected-note {{to match}} 32 system_error():time_error("" // expected-error 3 {{expected}} expected-note {{to match}}
|
/external/clang/unittests/AST/ |
SourceLocationTest.cpp | 34 EXPECT_FALSE(Verifier.match("int i", varDecl())); 40 EXPECT_FALSE(Verifier.match("int i;", recordDecl())); 46 EXPECT_FALSE(Verifier.match("int i;", varDecl())); 52 EXPECT_FALSE(Verifier.match("int i;", varDecl())); 58 EXPECT_FALSE(Verifier.match("int i;", varDecl())); 71 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt())); 77 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt())); 83 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C)); 89 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C)); 95 EXPECT_TRUE(Verifier.match("void f() { new int[10]; }", newExpr())) [all...] |