| /frameworks/base/core/java/android/hardware/input/ |
| InputManager.java | 1196 long[] pattern; local [all...] |
| /frameworks/base/media/jni/ |
| android_media_MediaCodec.h | 93 const CryptoPlugin::Pattern &pattern,
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/ |
| LockSettingsStorageTests.java | 319 assertEquals("/data/system/gatekeeper.pattern.key", storage.getLockPatternFilename(0)); 326 assertEquals("/data/system/users/1/gatekeeper.pattern.key", storage.getLockPatternFilename(1)); 333 assertEquals("/data/system/users/2/gatekeeper.pattern.key", storage.getLockPatternFilename(2)); 340 assertEquals("/data/system/users/3/gatekeeper.pattern.key", storage.getLockPatternFilename(3)); 482 private void writePatternBytes(byte[] pattern, int userId) { 484 pattern, LockPatternUtils.CREDENTIAL_TYPE_PATTERN), userId); 493 private void assertPatternBytes(byte[] pattern, int userId) { 496 assertArrayEquals(pattern, cred.hash);
|
| /frameworks/compile/mclinker/lib/Object/ |
| SectionMap.cpp | 28 #define fnmatch0(pattern, string) (fnmatch(pattern, string, 0) == 0) 32 #define fnmatch0(pattern, string) (PathMatchSpec(string, pattern) == true)
|
| /hardware/google/av/media/sfplugin/ |
| CCodecBufferChannel.h | 64 CryptoPlugin::Pattern pattern,
|
| /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/ |
| iio_utils.h | 602 char pattern[50] = "in_"; local 615 strcat(pattern, sensor); 617 if (strncmp(ent->d_name, pattern, strlen(pattern)) == 0 &&
|
| /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/ |
| iio_utils.h | 602 char pattern[50] = "in_"; local 615 strcat(pattern, sensor); 617 if (strncmp(ent->d_name, pattern, strlen(pattern)) == 0 &&
|
| /libcore/ojluni/src/main/java/java/net/ |
| HttpCookie.java | 380 * @param pattern 386 public void setDomain(String pattern) { 387 if (pattern != null) 388 domain = pattern.toLowerCase(); 390 domain = pattern; [all...] |
| /system/sepolicy/tests/ |
| policy.py | 22 pattern = re.compile('^' + pathregex[0:i] + "$") 25 if pattern.match(prefix): 235 pattern = re.compile('^' + pathregex + "$") 236 if pattern.match(prefix):
|
| /test/vts/utils/python/common/ |
| filter_utils.py | 76 filter item and 2) it has the pattern described by filter_pattern. 88 filter_pattern: string, a Regex pattern to filter out the items that 214 Negative pattern is supported. If a test name starts with the negative 217 be added before regex prefix, i.e., '-r(negative.pattern)' 229 enable_native_pattern: bool, whether to enable negative pattern 297 filter_pattern: string, a Regex pattern to filter out the items that 479 def add_to_include_filter(self, pattern, auto_refresh=True): 483 pattern: string or list of string. Item(s) to add 490 if not isinstance(pattern, types.ListType): 491 pattern = [pattern [all...] |
| /toolchain/binutils/binutils-2.27/include/ |
| xregex2.h | 85 regardless of where they are in the pattern. 148 /* If this bit is set, succeed as soon as we match the whole pattern, 171 stored in the pattern buffer, so changing this does not affect 303 REG_BADPAT, /* Invalid pattern. */ 318 REG_ESIZE, /* Compiled pattern bigger than 2^16 bytes. */ 323 /* This data structure represents a compiled pattern. Before calling 324 the pattern compiler, the fields `buffer', `allocated', `fastmap', 325 `translate', and `no_sub' can be set. After the pattern has been 336 /* Space that holds the compiled pattern. It is declared as 347 /* Syntax setting with which the pattern was compiled. * [all...] |
| /tools/loganalysis/src/com/android/loganalysis/parser/ |
| LogcatParser.java | 36 import java.util.regex.Pattern; 60 private static final Pattern THREADTIME_LINE = 62 Pattern.compile( 74 private static final Pattern TIME_LINE = Pattern.compile( 81 private static final Pattern SYSTEM_SERVER_CRASH = Pattern.compile( 86 private static final Pattern JAVA_CRASH_PROCESS_PID = Pattern.compile( 93 private static final Pattern JAVA_PROC_START = Pattern.compile("Calling main entry (.+)") [all...] |
| /external/deqp/external/vulkancts/modules/vulkan/image/ |
| vktImageTranscodingSupportTests.cpp | 123 const deUint8 pattern[] = local 164 // Pattern part 165 if (size >= 2 * sizeof(pattern)) 167 // Rotated pattern 168 for (size_t i = 0; i < sizeof(pattern); i++) 169 start[sizeof(pattern) - i - 1] = pattern[i]; 171 start += sizeof(pattern); 172 sizeToRnd -= sizeof(pattern); 174 // Direct pattern [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
| NumberRegressionTests.java | 239 * A space as a group separator for localized pattern causes 461 * Rewrote this test not to depend on the actual pattern. Pattern should 462 * never contain the monetary separator! Decimal separator in pattern is 736 * Tests illegal pattern exception. 746 logln("Inconsistent negative pattern is fine."); 752 warnln("An exception was thrown for any inconsistent negative pattern."); 780 errln("Bug 4099404 failed applying illegal pattern \"000.0#0\""); 782 logln("Bug 4099404 pattern \"000.0#0\" passed"); 787 errln("Bug 4099404 failed applying illegal pattern \"0#0.000\"") 1019 String pattern = rb.getStringWithFallback("NumberElements\/latn\/patterns\/currencyFormat"); local 1268 String pattern = "#,###"; local 1812 String[] pattern = { local [all...] |
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
| NumberRegressionTests.java | 236 * A space as a group separator for localized pattern causes 458 * Rewrote this test not to depend on the actual pattern. Pattern should 459 * never contain the monetary separator! Decimal separator in pattern is 733 * Tests illegal pattern exception. 743 logln("Inconsistent negative pattern is fine."); 749 warnln("An exception was thrown for any inconsistent negative pattern."); 777 errln("Bug 4099404 failed applying illegal pattern \"000.0#0\""); 779 logln("Bug 4099404 pattern \"000.0#0\" passed"); 784 errln("Bug 4099404 failed applying illegal pattern \"0#0.000\"") 1016 String pattern = rb.getStringWithFallback("NumberElements\/latn\/patterns\/currencyFormat"); local 1265 String pattern = "#,###"; local 1809 String[] pattern = { local [all...] |
| /external/libxml2/ |
| pattern.c | 2 * pattern.c: Implemetation of selectors for nodes 18 * - making clear how pattern starting with / or . need to be handled, 36 #include <libxml/pattern.h> 109 struct _xmlStreamCtxt *next;/* link to next sub pattern if | */ 167 struct _xmlPattern *next; /* next pattern if | is used */ 168 const xmlChar *pattern; /* the pattern */ member in struct:_xmlPattern 198 * Create a new XSLT Pattern 241 if (comp->pattern != NULL) 242 xmlFree((xmlChar *)comp->pattern); [all...] |
| /art/test/004-JniTest/src/ |
| Main.java | 23 import java.util.regex.Pattern; 384 String pattern = "^Shared library .*libarttest.* already opened by ClassLoader.*" + local 386 if (!Pattern.matches(pattern, msg)) { 387 throw new RuntimeException("Could not find pattern in message", ite.getCause());
|
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/ |
| BaseGnssTestActivity.java | 316 * Makes the device vibrate following the given pattern. 319 protected void vibrate(long[] pattern) { 321 vibrator.vibrate(pattern, -1);
|
| /cts/hostsidetests/shortcuts/hostside/src/android/content/pm/cts/shortcuthost/ |
| BaseShortcutManagerHostTest.java | 37 import java.util.regex.Pattern; 231 * {@link Pattern#quote}. 249 * {@link Pattern#quote}. 260 Pattern pattern = Pattern.compile(expectedRegex); local 261 return pattern.matcher(actual);
|
| /development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
| XmlDocumentProvider.java | 47 import java.util.regex.Pattern; 53 * <p>A XPath-like selection pattern is used to select some nodes in the XML document. Each such 70 * <p>The <code>/root/child1/child2</code> pattern will for instance match all nodes named 77 * <p>The <code>//node1//node2</code> pattern will for instance match all nodes named 88 * with a child of the selected node. The implicit root of this projection pattern is the selected 92 * nodes match the projection pattern, their texts are appended as a result.</p> 95 * pattern to the previously described syntax. <code>//child1@price</code> will for instance match 120 * A selection pattern of <code>/library//book</code> will match the three book entries (while 164 * node. See class documentation for pattern syntax. 165 * @param selection A selection pattern which will select the nodes that will create th 349 String pattern = input.replaceAll("\/\/", "\/(.*\/|)").replaceAll("^\/", "^\/") + "$"; local [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/ |
| regparse.h | 289 UChar* pattern;
member in struct:__anon8334 344 extern int onig_parse_make_tree P_((Node** root, const UChar* pattern, const UChar* end, regex_t* reg, ScanEnv* env));
|
| /external/ImageMagick/MagickWand/ |
| magick-property.c | 605 % specified pattern associated with a wand. Use MagickGetImageProperty() to 612 % const char *pattern,size_t *number_artifacts) 618 % o pattern: Specifies a pointer to a text string containing a pattern. 624 const char *pattern,size_t *number_artifacts) 659 (GlobExpression(artifact,pattern,MagickFalse) != MagickFalse)) 761 % specified pattern associated with a wand. Use MagickGetImageProfile() to 767 % char *MagickGetImageProfiles(MagickWand *wand,const char *pattern, 774 % o pattern: Specifies a pointer to a text string containing a pattern [all...] |
| /external/ImageMagick/coders/ |
| Android.mk | 89 pattern.c\
|
| /external/autotest/client/bin/ |
| fio_util.py | 327 pattern = r"""(?P<jobname>.*)_ # jobname 333 matcher = re.compile(pattern, re.X)
|
| /external/autotest/utils/ |
| run_pylint.py | 231 return all(not fnmatch.fnmatch(file_path, '*' + pattern) 232 for pattern in BLACKLIST)
|