HomeSort by relevance Sort by last modified time
    Searched defs:match (Results 601 - 625 of 1447) sorted by null

<<21222324252627282930>>

  /external/jsoncpp/src/lib_json/
json_reader.cpp 308 ok = match( "rue", 3 );
312 ok = match( "alse", 4 );
316 ok = match( "ull", 3 );
353 Reader::match( Location pattern, function in class:Json::Reader
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebtables.h 123 struct xt_match *match; member in union:ebt_entry_match::__anon11383
  /external/libvncserver/common/
turbojpeg.c 269 int match=0; local
274 match++;
276 if(match==dinfo->num_components-1)
  /external/lldb/source/Interpreter/
OptionValueProperties.cpp 183 // We have a match!
189 // Predicate didn't match or wasn't correctly formed
728 bool match = false; local
731 match = true;
736 match = true;
738 if (match)
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugInfo.cpp 228 DWARFCompileUnitSP* match = (DWARFCompileUnitSP*)bsearch(&cu_offset, &m_compile_units[0], m_compile_units.size(), sizeof(DWARFCompileUnitSP), CompareDWARFCompileUnitSPOffset); local
229 if (match)
231 cu_sp = *match;
232 cu_idx = match - &m_compile_units[0];
767 // .debug_pubnames section). The string must match the entire name
787 // .debug_pubnames section). The string must match the supplied regular
  /external/nist-sip/java/gov/nist/core/
GenericObjectList.java 439 * Match with a template (return true if we have a superset of the given
440 * template. This can be used for partial match (template matching of SIP
447 public boolean match(Object other) { method in class:GenericObjectList
459 System.out.println("Trying to match = "
462 && ((GenericObject) myobj).match(hisobj))
465 && ((GenericObjectList) myobj).match(hisobj))
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 389 * classes match and list of headers herein is equal to the list
411 * Template match against a template. null field in template indicates wild
412 * card match.
414 public boolean match(SIPHeaderList<?> template) { method in class:SIPHeaderList
433 found = sipHeader1.match(sipHeader);
  /external/regex-re2/re2/testing/
re2_test.cc 222 // check that false match doesn't overwrite
343 TEST(RE2, Match) {
347 // No match.
349 CHECK(!re.Match(s, 0, s.size(), RE2::UNANCHORED,
354 CHECK(re.Match(s, 0, s.size(), RE2::UNANCHORED,
382 // A meta-quoted string, interpreted as a pattern, should always match
392 // A meta-quoted string, interpreted as a pattern, should always match
402 // Tests that quoted meta characters match their original strings,
403 // and that a few things that shouldn't match indeed do not.
483 CHECK(!RE2(empties[i]).Match("abc", 0, 3, RE2::UNANCHORED, NULL, 0))
1223 const char* match; member in struct:re2::NeverTest
    [all...]
  /external/selinux/policycoreutils/setfiles/
restore.c 80 static int match(const char *name, struct stat *sb, char **con) function
109 if (match(my_file, ftsent->fts_statp, &newcon) < 0) {
  /external/skia/src/animator/
SkDrawExtraPathEffect.cpp 296 static const char match[] = "locX|locY|left|top|right|bottom|u|v" ; local
299 if (SkAnimatorScript::MapEnums(match, token, len, &index) == false)
  /external/toybox/toys/posix/
sed.c 44 address matches one line, a pair of comma separated addresses match
47 each file can match.
140 p Print the line if match was found and replaced
141 w [file] Write (append) line to file if match replaced
143 t [label] Test, jump to :label only if an "s" command found a match in
146 T [label] Test false, jump only if "s" hasn't found a match.
185 // Begin and end of each match
213 // neither the pattern nor the match can currently include NUL bytes
314 // In a match that might end?
321 // regex match end includes matching line, so defer deactivatio
488 regmatch_t *match = (void *)toybuf; local
    [all...]
  /external/valgrind/coregrind/
m_libcproc.c 155 entries which match remove_pattern. It slides everything down over
176 Bool match; local
178 /* This is a bit subtle: we want to match against the entry
185 match = VG_(string_match)(remove_pattern, entry_start);
189 if (match) {
203 /* match against the last entry */
  /external/wpa_supplicant_8/src/utils/
os_unix.c 484 int match; local
508 match = 0;
537 match = 1;
543 if (!match)
  /frameworks/av/media/ndk/
NdkMediaDrm.cpp 721 bool match; local
722 status = mObj->mDrm->verify(*iter, keyIdVec, messageVec, signatureVec, match);
724 return match ? AMEDIA_OK : AMEDIA_DRM_VERIFY_FAILED;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioPort.cpp 460 // Approximate (best) match:
461 // The match score measures how well the supported channel mask matches the
468 // match score = 1000 if legacy channel conversion equivalent (always prefer this)
470 // match score += 100 if the channel mask representations match
471 // match score += number of channels matched.
477 int match; local
480 match = 100 + __builtin_popcount(
486 match = __builtin_popcount(
491 match = __builtin_popcount
    [all...]
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.java 43 * match, if this resolution is for an activity or broadcast receiver.
50 * The service that corresponds to this resolution match, if this resolution
57 * The provider that corresponds to this resolution match, if this
69 * The declared priority of this match. Comes from the "priority"
84 * IntentFilter. This is a match constant, a combination of
88 public int match; field in class:ResolveInfo
107 * match's label. From the "label" attribute or, if not set, 0.
119 * match's icon. From the "icon" attribute or, if not set, 0. It is
234 * Return the icon resource identifier to use for this match. If the
235 * match defines an icon, that is used; else if the activity define
    [all...]
  /frameworks/base/packages/WAPPushManager/src/com/android/smspush/
WapPushManager.java 164 int match = pm.checkSignatures(mContext.getPackageName(), package_name); local
167 + " and " + package_name + ", match=" + match);
169 return match == PackageManager.SIGNATURE_MATCH;
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pDevice.java 61 // These definitions match the ones in wpa_supplicant
173 Matcher match; local
185 match = twoTokenPattern.matcher(string);
186 if (!match.find()) {
189 deviceAddress = match.group(2);
192 match = threeTokenPattern.matcher(string);
193 if (!match.find()) {
196 deviceAddress = match.group(1);
199 match = detailedDevicePattern.matcher(string);
200 if (!match.find())
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java 93 switch (URL_MATCHER.match(url)) {
143 switch (URL_MATCHER.match(url)) {
167 int match = URL_MATCHER.match(url); local
168 switch (match) {
206 switch (match) {
260 int match = URL_MATCHER.match(url); local
261 switch (match) {
344 int match = URL_MATCHER.match(url) local
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
PduCache.java 134 int match = URI_MATCHER.match(uri); local
135 switch (match) {
153 purgeByMessageBox(MATCH_TO_MSGBOX_ID_MAP.get(match));
188 int match = URI_MATCHER.match(uri); local
191 switch (match) {
  /hardware/ti/omap4-aah/camera/
BufferSourceAdapter.cpp 238 bool BufferSourceAdapter::match(const char * str) { function in class:Ti::Camera::BufferSourceAdapter
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 54 #define match smat macro
66 #define match lmat macro
71 struct match { struct
78 char *coldp; /* can be no match starting before here */
88 static char *dissect(struct match *, char *, char *, sopno, sopno);
89 static char *backref(struct match *, char *, char *, sopno, sopno, sopno, int);
90 static char *fast(struct match *, char *, char *, sopno, sopno);
91 static char *slow(struct match *, char *, char *, sopno, sopno);
104 static void print(struct match *, char *, states, int, FILE *);
107 static void at(struct match *, char *, char *, char *, sopno, sopno)
1022 #undef match macro
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 351 Matcher match = pattern.matcher(text); local
353 if (match.find()) {
357 int start = match.start();
359 end = match.end();
376 } while (match.find());
BluetoothOppProvider.java 189 int match = sURIMatcher.match(uri); local
190 switch (match) {
229 if (sURIMatcher.match(uri) != SHARES) {
302 int match = sURIMatcher.match(uri); local
303 switch (match) {
381 int match = sURIMatcher.match(uri); local
382 switch (match) {
422 int match = sURIMatcher.match(uri); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 157 final int match = URI_MATCHER.match(uri); local
160 switch (match) {
191 int match = URI_MATCHER.match(uri); local
193 switch (match) {
240 int match = URI_MATCHER.match(uri); local
242 switch (match) {

Completed in 339 milliseconds

<<21222324252627282930>>