| /external/iproute2/misc/ |
| ss.c | 200 char pattern[64]; local 212 sprintf(pattern, "socket:[%u]", ino); 213 pattern_len = strlen(pattern); 252 memcmp(lnk, pattern, n)) 626 char *addr, *pattern; local 628 memcpy(&pattern, p->data, sizeof(pattern)); 629 if (pattern == NULL) 633 return !fnmatch(pattern, addr, 0); [all...] |
| /external/srec/srec/crec/ |
| srec.c | 325 pattern_info *pattern, frameID current_search_frame) 334 scodata score = mixture_diagonal_gaussian_swimodel(pattern->prep, [all...] |
| /frameworks/policies/base/phone/com/android/internal/policy/impl/ |
| PhoneWindowManager.java | 174 // Vibrator pattern for haptic feedback of a long press. 177 // Vibrator pattern for haptic feedback of virtual key press. 180 // Vibrator pattern for a short vibration. 183 // Vibrator pattern for haptic feedback during boot when safe mode is disabled. 186 // Vibrator pattern for haptic feedback during boot when safe mode is enabled. 2364 long[] pattern = null; local [all...] |
| /prebuilt/common/jarjar/ |
| jarjar-1.0rc8.jar | |
| /external/icu4c/i18n/ |
| zstrfmt.cpp | 683 // with format pattern "VVVV". See #6602 for the details. [all...] |
| /cts/tools/vm-tests/src/util/build/ |
| BuildDalvikSuite.java | 48 import java.util.regex.Pattern; 637 for (String pattern : patterns) { 638 token = scanner.findWithinHorizon(pattern, methodSource.length()); 659 Pattern p = Pattern.compile("@uses\\s+(.*)\\s+", Pattern.MULTILINE); 751 Pattern p = Pattern.compile(commentPattern, Pattern.DOTALL); 758 Matcher titleM = Pattern.compile("@title (.*)", Pattern.DOTALL [all...] |
| /external/gtest/src/ |
| gtest-internal-inl.h | 832 // Returns true iff the wildcard pattern matches the string. The 833 // first ':' or '\0' character in pattern marks the end of it. 837 static bool PatternMatchesString(const char *pattern, const char *str); [all...] |
| gtest.cc | 375 // Returns true iff the wildcard pattern matches the string. The 376 // first ':' or '\0' character in pattern marks the end of it. 380 bool UnitTestOptions::PatternMatchesString(const char *pattern, 382 switch (*pattern) { 384 case ':': // Either ':' or '\0' marks the end of the pattern. 387 return *str != '\0' && PatternMatchesString(pattern + 1, str + 1); 389 return (*str != '\0' && PatternMatchesString(pattern, str + 1)) || 390 PatternMatchesString(pattern + 1, str); 392 return *pattern == *str && 393 PatternMatchesString(pattern + 1, str + 1) [all...] |
| /external/icu4c/test/intltest/ |
| numrgts.cpp | 490 * A space as a group separator for localized pattern causes 645 errln("df->applyPattern with illegal pattern didn't fail"); 656 errln("df->applyPattern with illegal pattern didn't fail"); 830 * Rewrote this test not to depend on the actual pattern. Pattern should 831 * never contain the monetary separator! Decimal separator in pattern is 1651 UnicodeString pattern = numPat.getStringEx(1, status); local [all...] |
| /external/stlport/stlport/stl/ |
| _monetary.c | 142 money_base::pattern __format = __intl ? __punct_intl.neg_format() 424 money_base::pattern __format = __intl ? (__is_negative ? __punct_intl.neg_format()
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
| BaseBuilder.java | 56 import java.util.regex.Pattern; 68 // TODO: rename the pattern to something that makes sense + javadoc comments. 74 private final static Pattern sPattern0Line1 = Pattern.compile( 82 private final static Pattern sPattern1Line1 = Pattern.compile( 90 private final static Pattern sPattern1Line2 = Pattern.compile( 97 private final static Pattern sPattern2Line1 = Pattern.compile [all...] |
| /external/webkit/SunSpider/tests/parse-only/ |
| concat-jquery-mootools-prototype.js | [all...] |
| /external/gtest/include/gtest/internal/ |
| gtest-port.h | 543 const char* pattern() const { return pattern_; } function in class:testing::internal::RE
|
| /external/icu4c/test/cintltst/ |
| reapits.c | 41 * pattern: The regex pattern, a (char *) null terminated C string. 43 * flags: Regex flags to set when compiling the pattern 48 #define TEST_SETUP(pattern, testString, flags) { \ 51 re = uregex_openC(pattern, flags, NULL, &status); \ 250 * pattern() 814 const char * pattern = "x(.*?)x"; local 831 re = uregex_openC(pattern, 0, NULL, &status); [all...] |
| /external/libxml2/include/libxml/ |
| xmlreader.h | 270 const xmlChar *pattern,
|
| /external/webkit/WebCore/platform/graphics/haiku/ |
| GraphicsContextHaiku.cpp | 492 pattern GraphicsContext::getHaikuStrokeStyle()
|
| /hardware/ti/wlan/wl1271/platforms/os/linux/ |
| Makefile | 416 find ${DK_ROOT} -iname '*.[ch]' -print | ctags --c++-types=+px --excmd=pattern -L -
|
| /system/wlan/ti/wilink_6_1/platforms/os/linux/ |
| Makefile | 436 find ${DK_ROOT} -iname '*.[ch]' -print | ctags --c++-types=+px --excmd=pattern -L -
|
| /external/bluetooth/bluez/serial/ |
| proxy.c | 1054 const char *pattern, *address; local 1059 DBUS_TYPE_STRING, &pattern, 1064 uuid_str = bt_name2string(pattern);
|
| /external/webkit/JavaScriptCore/assembler/ |
| ARMv7Assembler.h | 180 // If this is an encoded immediate, then it may describe a shift, or a pattern. 187 unsigned pattern : 4; member in struct:JSC::ARMThumbImmediate::__anon6299::__anon6302 256 encoding.pattern = 0; 282 encoding.pattern = 3; 288 encoding.pattern = 1; 294 encoding.pattern = 2; [all...] |
| /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
| Workspace.java | 121 import java.util.regex.Pattern; 980 final Pattern pattern = Pattern.compile(filterText, Pattern.CASE_INSENSITIVE); local [all...] |
| /external/bluetooth/glib/glib/ |
| gtestutils.c | 770 * @uri_pattern: the base pattern for bug URIs [all...] |
| /external/v8/src/ |
| ast.h | 845 RegExpLiteral(Handle<String> pattern, 849 pattern_(pattern), 856 Handle<String> pattern() const { return pattern_; } function in class:v8::internal::RegExpLiteral [all...] |
| /external/webkit/WebCore/platform/graphics/qt/ |
| GraphicsContextQt.cpp | 51 #include "Pattern.h" 875 QVector<qreal> pattern; local 882 pattern.append(dashes[i % dashLength] / penWidth); 884 pen.setDashPattern(pattern); [all...] |
| /external/bluetooth/bluez/include/bluetooth/ |
| sdp.h | 469 /* Search pattern: a sequence of all UUIDs seen in this record */ 470 sdp_list_t *pattern; member in struct:__anon1106
|