Searched
full:regex (Results
976 -
1000 of
5854) sorted by null
<<31323334353637383940>>
| /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/ |
| DOTTreeGenerator.cs | 187 text = System.Text.RegularExpressions.Regex.Replace(text, "\"", "\\\\\""); 188 text = System.Text.RegularExpressions.Regex.Replace(text, "\\t", " "); 189 text = System.Text.RegularExpressions.Regex.Replace(text, "\\n", "\\\\n"); 190 text = System.Text.RegularExpressions.Regex.Replace(text, "\\r", "\\\\r");
|
| /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
| DotTreeGenerator.cs | 204 text = System.Text.RegularExpressions.Regex.Replace( text, "\"", "\\\\\"" ); 205 text = System.Text.RegularExpressions.Regex.Replace( text, "\\t", " " ); 206 text = System.Text.RegularExpressions.Regex.Replace( text, "\\n", "\\\\n" ); 207 text = System.Text.RegularExpressions.Regex.Replace( text, "\\r", "\\\\r" );
|
| /external/compiler-rt/cmake/Modules/ |
| BuiltinTests.cmake | 7 string(REGEX MATCHALL "<[A-Za-z0-9_]*>" substitutions
|
| /external/compiler-rt/lib/sanitizer_common/scripts/ |
| litlint.py | 14 # Compile regex once for all files
|
| /external/droiddriver/src/io/appium/droiddriver/finders/ |
| Predicates.java | 228 * attribute} matches {@code regex}. 231 final String regex) { 236 return actual != null && actual.matches(regex); 241 return String.format("{%s matches %s}", attribute, regex);
|
| /external/eigen/bench/btl/ |
| CMakeLists.txt | 12 string(REGEX MATCH icpc IS_ICPC ${CMAKE_CXX_COMPILER})
|
| /external/jacoco/jacoco-maven-plugin.test/it/it-report-aggregate/ |
| verify.bsh | 13 import java.util.regex.*;
|
| /external/libcxx/include/ |
| module.modulemap | 371 module regex { 372 header "regex" 541 module regex { 542 header "experimental/regex"
|
| /external/libcxx/src/ |
| regex.cpp | 1 //===-------------------------- regex.cpp ---------------------------------===// 10 #include "regex" 54 return "An invalid regex grammar has been requested."; 56 return "An empty regex is not allowed in the POSIX grammar.";
|
| /external/libyuv/files/ |
| CM_linux_packages.cmake | 3 COMMAND grep --perl-regex --only-matching "(?<=LIBYUV_VERSION )[0-9]+" include/libyuv/version.h
|
| /external/llvm/test/tools/llvm-cov/ |
| report.cpp | 38 // RUN: llvm-cov show -o %t.dir %S/Inputs/report.covmapping -instr-profile=%S/Inputs/report.profdata -filename-equivalence -name-regex=".*" %s
|
| /external/python/cpython3/Modules/ |
| sre.h | 48 PatternObject* pattern; /* link to the regex (pattern) object */
|
| /external/robolectric-shadows/ |
| circle.yml | 42 find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \;
|
| /external/selinux/libselinux/utils/ |
| selabel_partial_match.c | 17 " against a regex entry in the file_contexts file.\n\t"
|
| /external/selinux/python/sepolicy/sepolicy/ |
| __init__.py | 434 mpaths[f] = (fcdict[f]["regex"], file_type_str[fcdict[f]["ftype"]]) 470 mpaths[f] = (fcdict[f]["regex"], file_type_str[fcdict[f]["ftype"]]) 472 mpaths[f] = [] # {"regex":[],"paths":[]} 518 for path in fcdict[exe]["regex"]: 613 fcdict[t]["regex"].append(rec[0]) 615 fcdict[t] = {"regex": [rec[0]], "ftype": ftype} 619 fcdict["logfile"] = {"regex": ["all log files"]} 620 fcdict["user_tmp_type"] = {"regex": ["all user tmp files"]} 621 fcdict["user_home_type"] = {"regex": ["all user home files"]} 622 fcdict["virt_image_type"] = {"regex": ["all virtual image files"] [all...] |
| /external/skia/tools/ |
| misc_utils.py | 21 the regex and returns the parenthesized group named return for the
|
| /external/skqp/tools/ |
| misc_utils.py | 21 the regex and returns the parenthesized group named return for the
|
| /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/ |
| RuleSetFactory.java | 34 * This class runs Pattern matching with java.util.regex using Patterns defined
|
| /external/testng/src/main/java/org/testng/ |
| DependencyMap.java | 11 import java.util.regex.Pattern;
|
| /external/testng/src/main/java/org/testng/internal/ |
| MethodGroupsHelper.java | 9 import java.util.regex.Pattern;
241 * @param method if no group is found, group regex is set as this method's missing group
243 * @param groupRegexp regex representing the group
265 * @param groupRegexp regex representing the group
|
| /external/testng/src/test/java/test/failures/ |
| BaseFailuresTest.java | 12 import java.util.regex.Pattern;
|
| /external/vulkan-validation-layers/loader/ |
| CMakeLists.txt | 15 file(STRINGS "../include/vulkan/vulkan.h" lines REGEX "^#define VK_HEADER_VERSION [0-9]+") 18 string(REGEX MATCHALL "[0-9]+" vk_header_version ${lines}) 59 STRING(REGEX REPLACE "vulkan-${MAJOR}.dll" "${API_LOWERCASE}-${MAJOR}.dll" DEF_EDITED "${DEF_TEXT}" ) 148 string(REGEX REPLACE "/MD" "/MT" ${configuration} "${${configuration}}")
|
| /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
| UiSelector.java | 22 import java.util.regex.Pattern; 129 * @param regex a regular expression 133 public UiSelector textMatches(String regex) { 134 return buildSelector(SELECTOR_TEXT_REGEX, Pattern.compile(regex)); 181 * @param regex a regular expression 185 public UiSelector classNameMatches(String regex) { 186 return buildSelector(SELECTOR_CLASS_REGEX, Pattern.compile(regex)); 233 * @param regex a regular expression 237 public UiSelector descriptionMatches(String regex) { 238 return buildSelector(SELECTOR_DESCRIPTION_REGEX, Pattern.compile(regex)); [all...] |
| /frameworks/base/core/java/android/text/util/ |
| Linkify.java | 60 import java.util.regex.Matcher; 61 import java.util.regex.Pattern; 65 * regex matches in the text into clickable links. This is particularly 223 * @param match The regex matcher state that found this URL text 344 * Applies a regex to the text of a TextView turning the matches into 350 * @param pattern Regex pattern to be used for finding links 360 * Applies a regex to the text of a TextView turning the matches into 366 * @param pattern Regex pattern to be used for finding links 380 * Applies a regex to the text of a TextView turning the matches into 386 * @param pattern Regex pattern to be used for finding links [all...] |
| /frameworks/base/tools/bit/ |
| aapt.cpp | 23 #include <regex> 25 const regex NS_REGEX("( *)N: ([^=]+)=(.*)"); 26 const regex ELEMENT_REGEX("( *)E: ([^ ]+) \\(line=(\\d+)\\)"); 27 const regex ATTR_REGEX("( *)A: ([^\\(=]+)[^=]*=\"([^\"]+)\".*");
|
Completed in 1519 milliseconds
<<31323334353637383940>>