/developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/ |
FeedProvider.java | 74 final int match = sUriMatcher.match(uri); local 75 switch (match) { 96 int uriMatch = sUriMatcher.match(uri); 125 final int match = sUriMatcher.match(uri); local 127 switch (match) { 151 final int match = sUriMatcher.match(uri); local 153 switch (match) { 183 final int match = sUriMatcher.match(uri); local [all...] |
/development/ndk/platforms/android-21/include/linux/netfilter/ |
x_tables.h | 39 struct xt_match *match; member in struct:xt_entry_match::__anon1729::__anon1731
|
/development/ndk/platforms/android-3/include/linux/netfilter/ |
x_tables.h | 31 struct xt_match *match; member in struct:xt_entry_match::__anon2215::__anon2217
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/ |
SyncAdapter.java | 240 FeedParser.Entry match = entryMap.get(entryId); local 241 if (match != null) { 247 if ((match.title != null && !match.title.equals(title)) || 248 (match.link != null && !match.link.equals(link)) || 249 (match.published != published)) { 253 .withValue(FeedContract.Entry.COLUMN_NAME_TITLE, match.title) 254 .withValue(FeedContract.Entry.COLUMN_NAME_LINK, match.link) 255 .withValue(FeedContract.Entry.COLUMN_NAME_PUBLISHED, match.published [all...] |
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/ |
FeedProvider.java | 74 final int match = sUriMatcher.match(uri); local 75 switch (match) { 96 int uriMatch = sUriMatcher.match(uri); 125 final int match = sUriMatcher.match(uri); local 127 switch (match) { 151 final int match = sUriMatcher.match(uri); local 153 switch (match) { 183 final int match = sUriMatcher.match(uri); local [all...] |
/external/ant-glob/src/org/apache/tools/ant/types/selectors/ |
SelectorUtils.java | 70 * @param pattern The pattern to match against. Must not be 72 * @param str The path to match, as a String. Must not be 90 * @param pattern The pattern to match against. Must not be 92 * @param str The path to match, as a String. Must not be 125 * @param patDirs The tokenized pattern to match against. Must not be 127 * @param strDirs The tokenized path to match. Must not be 148 if (!match(patDir, strDirs[strIdxStart], isCaseSensitive)) { 179 * @param pattern The pattern to match against. Must not be 181 * @param str The path to match, as a String. Must not be 200 * @param pattern The pattern to match against. Must not b 339 public static boolean match(String pattern, String str) { method in class:SelectorUtils 360 public static boolean match(String pattern, String str, method in class:SelectorUtils [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3baserecognizer.h | 105 /// match is not found and the default implementation will also 119 void * (*match) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer, member in struct:ANTLR3_BASE_RECOGNIZER_struct 155 * To get out of recovery mode, the parser must successfully match 162 * 5. next match() will reset errorRecovery mode 175 /// an error and next valid token match 184 * be from a mismatched token that the (*match)() could not recover from.
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
Lexer.java | 32 * uses simplified match() and error recovery mechanisms in the interest 69 /** Return a token from this source; i.e., match a token on the char 104 // match() routine has already called recover() 168 public void match(String s) throws MismatchedTokenException { method in class:Lexer 191 public void match(int c) throws MismatchedTokenException { method in class:Lexer 284 msg = "required (...)+ loop did not match anything at character "+getCharErrorDisplay(e.c); 324 /** Lexers can normally match any char in it's vocabulary after matching
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
BaseRecognizer.pm | 64 sub match { subroutine 65 Readonly my $usage => 'void match(IntStream input, int ttype, BitSet follow)'; 199 return 'required (...)+ loop did not match anything at input '
|
/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/apache-http/src/org/apache/http/impl/cookie/ |
RFC2965Spec.java | 171 public boolean match(final Cookie cookie, CookieOrigin origin) { method in class:RFC2965Spec 179 return super.match(cookie, origin);
|
/external/boringssl/src/crypto/obj/ |
obj.c | 199 ASN1_OBJECT *match; local 201 match = lh_ASN1_OBJECT_retrieve(global_added_by_data, obj); 202 if (match != NULL) { 204 return match->nid; 241 ASN1_OBJECT *match, template; local 244 match = lh_ASN1_OBJECT_retrieve(global_added_by_short_name, &template); 245 if (match != NULL) { 247 return match->nid; 275 ASN1_OBJECT *match, template; local 278 match = lh_ASN1_OBJECT_retrieve(global_added_by_long_name, &template) 328 ASN1_OBJECT *match, template; local [all...] |
/external/boringssl/src/crypto/x509v3/ |
v3nametest.c | 92 "set emailAddress: email: [postmaster@example.com] does not match [Postmaster@example.com]", 93 "set emailAddress: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]", 94 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@example.com]", 95 "set emailAddress: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]", 106 "set rfc822Name: email: [postmaster@example.com] does not match [Postmaster@example.com]", 107 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@example.com]", 108 "set rfc822Name: email: [Postmaster@example.com] does not match [postmaster@EXAMPLE.COM]", 109 "set rfc822Name: email: [postmaster@EXAMPLE.COM] does not match [Postmaster@example.com]", 310 const char *nameincert, int match, const char *name) 313 if (match < 0 333 int match, ret; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509CRLStoreSelector.java | 92 public boolean match(Object obj) method in class:X509CRLStoreSelector 160 return super.match((X509CRL)obj); 163 public boolean match(CRL crl) method in class:X509CRLStoreSelector 165 return match((Object)crl); 169 * Returns if this selector must match CRLs with the delta CRL indicator
|
X509CertStoreSelector.java | 22 public boolean match(Object obj) method in class:X509CertStoreSelector 31 return super.match(other); 34 public boolean match(Certificate cert) method in class:X509CertStoreSelector 36 return match((Object)cert);
|
/external/clang/unittests/AST/ |
MatchVerifier.h | 45 testing::AssertionResult match(const std::string &Code, function in class:clang::ast_matchers::MatchVerifier 48 return match(Code, AMatcher, Args, Lang_CXX); 52 testing::AssertionResult match(const std::string &Code, function in class:clang::ast_matchers::MatchVerifier 56 return match(Code, AMatcher, Args, L); 60 testing::AssertionResult match(const std::string &Code, 87 testing::AssertionResult MatchVerifier<NodeType>::match( function in class:clang::ast_matchers::MatchVerifier 122 setFailure("Could not find match");
|
/external/deqp/framework/delibs/decpp/ |
deCommandLine.hpp | 314 //! Find match by name. Throws exception if no match is found. 330 const void* match = findNamedValueMatch(src, info->namedValues, info->namedValuesEnd, info->namedValueStride); local 331 *value = static_cast<const NamedValue<typename OptTraits<OptType>::ValueType>*>(match)->value;
|
/external/dhcpcd/ |
if-options.c | 137 char *match = NULL, *p; local 139 match = xstrdup(value); 140 p = strchr(match, '='); 143 l = strlen(match); 146 if (match && strncmp(lst[i], match, l) == 0) { 159 free(match); 169 free(match);
|
/external/droiddriver/src/io/appium/droiddriver/finders/ |
ByXPath.java | 98 UiElement match = FROM_DOM_MAP.get(foundNode); local 99 Logs.log(Log.INFO, "Found match: " + match); 100 return match;
|
/external/droiddriver/src/io/appium/droiddriver/scroll/ |
AccessibilityEventScrollStepStrategy.java | 52 * match when a new scroll is requested, we can return immediately. 58 public boolean match(Finder containerFinder, PhysicalDirection direction) { method in class:AccessibilityEventScrollStepStrategy.EndData 114 if (endData.match(containerFinder, direction)) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/ |
searchcvs.php | 45 $match = "'1'"; variable 48 $match = "MATCH(`message`) AGAINST('$q'" . (preg_match("/\".+\"/", $q) ? " IN BOOLEAN MODE" : "") . ")"; variable 50 $where = "WHERE " . ($match ? $match : "1"); 53 $ec = ", $match AS `relevance`";
|
/external/icu/icu4c/source/common/ |
ucnv_ext.cpp | 109 * or if the match length fits with the current converter state 111 #define UCNV_EXT_TO_U_VERIFY_SISO_MATCH(sisoState, match) \ 112 ((sisoState)<0 || ((sisoState)==0) == (match==1)) 133 return 0; /* no extension data, no match */ 146 return 0; /* no match of a DBCS sequence in SBCS mode */ 159 /* match input units until there is a full match or the input is consumed */ 173 /* remember longest match so far */ 178 /* match pre[] then src[] */ 184 /* all input consumed, partial match */ 284 int32_t match; local 334 int32_t match; local 372 int32_t match, length; local 752 int32_t match; local 811 int32_t match; local 865 int32_t match; local [all...] |
/external/icu/icu4c/source/i18n/ |
csrmbcs.cpp | 201 // No match if there are too many characters that don't fit the encoding scheme. 271 UBool CharsetRecog_sjis::match(InputText* det, CharsetMatch *results) const { function in class:CharsetRecog_sjis 371 UBool CharsetRecog_euc_jp::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_euc_jp 393 UBool CharsetRecog_euc_kr::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_euc_kr 445 UBool CharsetRecog_big5::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_big5 521 UBool CharsetRecog_gb_18030::match(InputText *det, CharsetMatch *results) const function in class:CharsetRecog_gb_18030
|
tznames.cpp | 417 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local 418 if (match) { 419 return match->nameType; 426 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local 427 if (match) { 428 return match->matchLength; 436 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local 437 if (match && match->isTZID) { 438 tzID.setTo(match->id) 447 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local [all...] |
unesctrn.cpp | 180 // match one of the specs. Exit the outer loop if a 181 // partial match is detected and isIncremental is true. 194 UBool match = TRUE; local 200 // a partial match, so we return if in 206 match = FALSE; 212 match = FALSE; 217 if (match) { 222 // Check for partial match in incremental mode. 240 match = (digitCount >= minDigits); 242 if (match) { [all...] |