| /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/ |
| TestBreakpointIgnoreCount.py | 66 patterns = ['Process .* stopped']) 77 patterns = ["frame #0.*main.c:%d" % self.line1, 86 patterns = ['Process .* stopped']) 97 patterns = ["frame #0.*main.c:%d" % self.line1,
|
| /external/lldb/test/functionalities/platform/ |
| TestPlatformCommand.py | 19 patterns = ['^Available platforms:'])
|
| /external/lldb/test/functionalities/process_launch/ |
| TestProcessLaunch.py | 38 patterns = [ "Current executable set to .*a.out" ]) 60 patterns = [ "Process .* launched: .*a.out" ]) 156 patterns = ["error:.* No such file or directory: %sz" % my_working_dir_path]) 164 patterns = [ "Process .* launched: .*a.out" ])
|
| /external/chromium_org/components/url_matcher/ |
| substring_set_matcher.cc | 17 // Compare StringPattern instances based on their string patterns. 22 // Given the set of patterns, compute how many nodes will the corresponding 23 // Aho-Corasick tree have. Note that |patterns| need to be sorted. 24 uint32 TreeSize(const std::vector<const StringPattern*>& patterns) { 26 if (patterns.empty()) 29 std::vector<const StringPattern*>::const_iterator last = patterns.begin(); 34 // For the subsequent patterns, only count the edges which were not counted 36 // patterns are sorted. 37 for (; current != patterns.end(); ++last, ++current) { 65 const std::vector<const StringPattern*>& patterns) { 73 patterns); local [all...] |
| /external/lldb/test/lang/objc/objc-builtin-types/ |
| TestObjCBuiltinTypes.py | 63 self.expect("expr (foo)", patterns = ["\(ns::id\) \$.* = 0"]) 65 self.expect("expr id my_id = 0; my_id", patterns = ["\(id\) \$.* = nil"])
|
| /system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
| grep.c | 83 /* Searching patterns */ 84 unsigned int patterns, pattern_sz; variable 89 /* Filename exclusion/inclusion patterns */ 228 /* TODO: Check for empty patterns and shortcut */ 231 if (patterns == pattern_sz) { 239 pattern[patterns] = grep_malloc(len + 1); 240 memcpy(pattern[patterns], pat, len); 241 pattern[patterns][len] = '\0'; 242 ++patterns; 282 * Reads searching patterns from a file and adds them with add_pattern() [all...] |
| /external/chromium_org/chrome/browser/extensions/ |
| user_script_listener.cc | 63 // A list of URL patterns that have will have user scripts applied to them. 183 const URLPatterns& patterns) { 187 data.url_patterns = patterns; 191 URLPatterns* patterns) { 198 patterns->insert(patterns->end(), 215 return; // no new patterns from this extension. 232 return; // no patterns to delete for this extension. 234 // Clear all our patterns and reregister all the still-loaded extensions.
|
| menu_manager.h | 186 void set_document_url_patterns(const URLPatternSet& patterns) { 187 document_url_patterns_ = patterns; 189 void set_target_url_patterns(const URLPatternSet& patterns) { 190 target_url_patterns_ = patterns; 210 // Sets any document and target URL patterns from |properties|. 255 // Patterns for restricting what documents this item will appear for. This 259 // Patterns for restricting where items appear based on the src/href
|
| /external/lldb/test/functionalities/load_unload/ |
| TestLoadUnload.py | 51 # patterns = ["%s-[^-]*-[^-]*" % self.getArchitecture()]) 130 patterns = ["frame #0.*d_function.*at d.c:%d" % self.line_d_function]) 158 patterns = ["1 match found .* %s" % self.mydir]) 162 patterns = ['Loading "liba.dylib".*ok', 177 patterns = ["1 match found .*%s" % self.mydir]) 181 patterns = ["Unloading .* with index %s.*ok" % index])
|
| /external/lldb/test/functionalities/data-formatter/data-formatter-cpp/ |
| TestDataFormatterCpp.py | 74 patterns = ['\(Speed\) SPILookHex = 0x[0-9a-f]+' # Speed should look hex-ish now. 80 patterns = ['\(SignalMask\) SMILookHex = 0x[0-9a-f]+' # SignalMask should look hex-ish now. 83 patterns = ['\(Type4\) T4ILookChar = 0x[0-9a-f]+' # Type4 should NOT look hex-ish now.
|
| /pdk/build/ |
| prepare_pdk_tree.py | 33 self.patterns = [re.compile('path=\"([^\"]*)\".*groups=\"([^\"]*)\"'), \ 38 m = self.patterns[self.current].search(line) 43 mOther = self.patterns[notCurrent].search(line)
|
| /external/chromium_org/extensions/common/ |
| extension_messages.cc | 99 // match the invalid patterns. We get around this by setting the valid 113 WriteParam(m, p.patterns()); 118 std::set<URLPattern> patterns; local 119 if (!ReadParam(m, iter, &patterns)) 122 for (std::set<URLPattern>::iterator i = patterns.begin(); 123 i != patterns.end(); ++i) 129 LogParam(p.patterns(), l);
|
| /external/jarjar/src/main/com/tonicsystems/jarjar/ |
| KeepProcessor.java | 34 public KeepProcessor(List<Keep> patterns) { 35 wildcards = PatternElement.createWildcards(patterns);
|
| MainProcessor.java | 31 public MainProcessor(List<PatternElement> patterns, boolean verbose, boolean skipManifest) { 36 for (PatternElement pattern : patterns) {
|
| /external/lldb/test/help/ |
| TestHelp.py | 86 patterns = search_regexp) 148 patterns = ['expression +--',
|
| /external/lldb/test/lang/c/set_values/ |
| TestSetValues.py | 78 patterns = ["\((short unsigned int|unsigned short)\) i = 33"]) 83 patterns = ["\((short unsigned int|unsigned short)\) i = 333"])
|
| /external/nanopb-c/tests/site_scons/ |
| site_init.py | 86 patterns = open(str(source[1])) 87 for pattern in patterns: 92 print '\033[32m[ OK ]\033[0m All patterns found in ' + str(source[0])
|
| /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-clean-plugin/2.5/ |
| maven-clean-plugin-2.5.jar | |
| /external/apache-xml/src/main/java/org/apache/xpath/functions/ |
| FuncCurrent.java | 31 import org.apache.xpath.patterns.StepPattern;
|
| /external/chromium_org/chrome/browser/nacl_host/ |
| nacl_browser_delegate_impl.cc | 176 std::vector<std::string> patterns; local 177 base::SplitString(debug_patterns, ',', &patterns); 178 for (std::vector<std::string>::iterator iter = patterns.begin(); 179 iter != patterns.end(); ++iter) { 198 // Empty patterns are forbidden so we ignore them.
|
| /external/chromium_org/chrome/browser/supervised_user/ |
| supervised_user_site_list.cc | 69 // (via URL patterns or hostname hashes) and the URL in the corresponding Site 73 std::vector<std::string>* patterns = &site->patterns; local 87 patterns->push_back(pattern); 123 patterns->push_back(url.host());
|
| supervised_user_url_filter.h | 25 // of URL patterns that should be allowed. 92 // Set the list of matched patterns to the passed in list. 94 void SetFromPatterns(const std::vector<std::string>& patterns);
|
| /external/lldb/test/functionalities/abbreviation/ |
| TestCommonShortSpellings.py | 30 patterns = [ "Current executable set to .*a.out.*" ])
|
| /external/lldb/test/lang/c/strings/ |
| TestCStrings.py | 41 patterns = ["\((const )?char\) \$0 = 'c'"])
|
| /external/lldb/test/lang/cpp/signed_types/ |
| TestSignedTypes.py | 58 patterns = ["\((short int|short)\) the_signed_short = 99",
|