| /external/skqp/include/ports/ |
| SkFontMgr.h | 27 virtual SkTypeface* matchStyle(const SkFontStyle& pattern) = 0; 32 SkTypeface* matchStyleCSS3(const SkFontStyle& pattern);
|
| /external/skqp/infra/bots/ |
| zip_utils.py | 22 for pattern in blacklist: 23 rv = [n for n in rv if not fnmatch.fnmatch(n, pattern)]
|
| /external/v8/src/inspector/ |
| v8-regex.cc | 16 V8Regex::V8Regex(V8InspectorImpl* inspector, const String16& pattern, 30 if (v8::RegExp::New(context, toV8String(isolate, pattern),
|
| /frameworks/base/core/java/android/transition/ |
| PatternPathMotion.java | 29 * A PathMotion that takes a Path pattern and applies it to the separation between two points. 48 * Constructs a PatternPathMotion with a straight-line pattern. 62 Path pattern = PathParser.createPathFromPathData(pathData); local 63 setPatternPath(pattern); 71 * Creates a PatternPathMotion with the Path defining a pattern of motion between two 72 * coordinates. The pattern will be translated, rotated, and scaled to fit between the start 73 * and end points. The pattern must not be empty and must have the end point differ from the 76 * @param patternPath A Path to be used as a pattern for two-dimensional motion. 83 * Returns the Path defining a pattern of motion between two coordinates. 84 * The pattern will be translated, rotated, and scaled to fit between the start and end points [all...] |
| /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/proguard/ |
| ProGuardClassFilterParser.kt | 21 import java.util.regex.Pattern 34 pattern = PatternHelper.build("^ *-$RULES ?[^-]+? *$", Pattern.MULTILINE),
|
| /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/proguard/patterns/ |
| GroupsReplacer.kt | 20 import java.util.regex.Pattern 23 * Applies replacements on a matched string using the given [pattern] and its groups. Each group is 28 val pattern: Pattern,
|
| /frameworks/support/transition/src/main/java/androidx/transition/ |
| PatternPathMotion.java | 32 * A PathMotion that takes a Path pattern and applies it to the separation between two points. 51 * Constructs a PatternPathMotion with a straight-line pattern. 66 Path pattern = PathParser.createPathFromPathData(pathData); local 67 setPatternPath(pattern); 74 * Creates a PatternPathMotion with the Path defining a pattern of motion between two 75 * coordinates. The pattern will be translated, rotated, and scaled to fit between the start 76 * and end points. The pattern must not be empty and must have the end point differ from the 79 * @param patternPath A Path to be used as a pattern for two-dimensional motion. 86 * Returns the Path defining a pattern of motion between two coordinates. 87 * The pattern will be translated, rotated, and scaled to fit between the start and end points [all...] |
| /libcore/ojluni/src/main/java/sun/security/util/ |
| AlgorithmDecomposer.java | 30 import java.util.regex.Pattern; 37 private static final Pattern transPattern = Pattern.compile("/"); 38 private static final Pattern pattern = field in class:AlgorithmDecomposer 39 Pattern.compile("with|and", Pattern.CASE_INSENSITIVE); 57 String[] tokens = pattern.split(transTocken); 77 * Please override the method if need to support more name pattern.
|
| /platform_testing/libraries/device-collectors/src/hostsidetests/src/com/android/collectors/ |
| ScreenshotCollectorHostTest.java | 100 String pattern = String.format("%s_.*", SCREENSHOT_COLLECTOR); local 101 optionSetter.setOptionValue("pull-pattern-keys", pattern);
|
| /prebuilts/checkstyle/gitlint/ |
| utils.py | 22 """Filters out the lines not matching the pattern. 26 pattern: string: regular expression to filter out lines. 30 pattern = re.compile(filter_regex) 32 match = pattern.search(line)
|
| /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/ |
| trieval.go | 16 // or an XOR pattern to be applied to the bytes of the UTF8 encoding of the 37 // 2 use xor pattern 48 xorBit = 0x4 // interpret the index as an xor pattern 49 inlineXOR = 0xE000 // These bits are set if the XOR pattern is inlined.
|
| /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/ |
| trieval.go | 16 // or an XOR pattern to be applied to the bytes of the UTF8 encoding of the 37 // 2 use xor pattern 48 xorBit = 0x4 // interpret the index as an xor pattern 49 inlineXOR = 0xE000 // These bits are set if the XOR pattern is inlined.
|
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.0/ |
| inspector-25.3.0.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.0-alpha1/ |
| inspector-25.3.0-alpha1.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.0-beta1/ |
| inspector-25.3.0-beta1.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.0-beta2/ |
| inspector-25.3.0-beta2.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.0-beta3/ |
| inspector-25.3.0-beta3.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.0-beta4/ |
| inspector-25.3.0-beta4.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.1/ |
| inspector-25.3.1.jar | |
| /prebuilts/gradle-plugin/com/android/tools/analytics-library/inspector/25.3.3/ |
| inspector-25.3.3.jar | |
| /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/BulkDataOperations/src/ |
| Grep.java | 47 import java.util.regex.Pattern; 71 + " [OPTION]... PATTERN FILE..."); 72 System.out.println("Search for PATTERN in each FILE. " 110 //parse PATTERN 111 Pattern pattern = Pattern.compile(args[i++]); local 138 * Lines are extracted from files. Lines are filtered by pattern. 145 .filter(pattern.asPredicate())
|
| /prebuilts/jdk/jdk8/linux-x86/sample/lambda/BulkDataOperations/src/ |
| Grep.java | 47 import java.util.regex.Pattern; 71 + " [OPTION]... PATTERN FILE..."); 72 System.out.println("Search for PATTERN in each FILE. " 110 //parse PATTERN 111 Pattern pattern = Pattern.compile(args[i++]); local 138 * Lines are extracted from files. Lines are filtered by pattern. 145 .filter(pattern.asPredicate())
|
| /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/utils/ |
| update_build_version.py | 89 pattern = re.compile(r'^(v\d+\.\d+(-dev)?) \d\d\d\d-\d\d-\d\d\s*$') 93 match = pattern.match(line)
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
| test_config_cmd.py | 47 # simple pattern searches 48 match = cmd.search_cpp(pattern='xxx', body='/* xxx */') 51 match = cmd.search_cpp(pattern='_configtest', body='/* xxx */')
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
| test_config_cmd.py | 47 # simple pattern searches 48 match = cmd.search_cpp(pattern='xxx', body='/* xxx */') 51 match = cmd.search_cpp(pattern='_configtest', body='/* xxx */')
|