HomeSort by relevance Sort by last modified time
    Searched defs:patterns (Results 26 - 50 of 72) sorted by null

12 3

  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
NodeTest.java 21 package org.apache.xpath.patterns;
34 * This is the basic node test class for both match patterns and location path
62 * Special bitmap for match patterns starting with a function.
517 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
518 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
519 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
520 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
521 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}.
591 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
592 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE}
    [all...]
StepPattern.java 21 package org.apache.xpath.patterns;
322 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
323 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
324 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
325 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, or
326 * {@link org.apache.xpath.patterns.NodeTest#SCORE_OTHER}.
352 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
353 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NONE},
354 * {@link org.apache.xpath.patterns.NodeTest#SCORE_NSWILD},
355 * {@link org.apache.xpath.patterns.NodeTest#SCORE_QNAME}, o
    [all...]
  /external/chromium_org/chrome/browser/extensions/
crx_installer.cc 404 URLPatternSet patterns = install_checker_.extension()->web_extent(); local
405 for (URLPatternSet::const_iterator i = patterns.begin();
406 i != patterns.end(); ++i) {
    [all...]
  /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());
  /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/junit/src/junit/runner/
BaseTestRunner.java 319 String[] patterns= new String[] { local
329 for (int i= 0; i < patterns.length; i++) {
330 if (line.indexOf(patterns[i]) > 0)
  /external/chromium_org/third_party/icu/source/test/intltest/
msfmrgts.cpp 449 * MessageFormat.applyPattern allows illegal patterns.
474 UnicodeString patterns [] = { local
485 UnicodeString pattern = patterns[i];
557 * MessageFormat.applyPattern works wrong with illegal patterns.
732 * MessageFormat.parse fails for some patterns.
    [all...]
tmsgfmt.cpp 309 // both the input and output patterns and compare them, taking SKIP_SYNTAX etc.
753 //Nested patterns with plural, number ,choice ,select format etc.
1690 const char* patterns[] = { \/\/ pattern, expected pattern local
    [all...]
  /external/icu/icu4c/source/test/intltest/
msfmrgts.cpp 449 * MessageFormat.applyPattern allows illegal patterns.
474 UnicodeString patterns [] = { local
485 UnicodeString pattern = patterns[i];
557 * MessageFormat.applyPattern works wrong with illegal patterns.
732 * MessageFormat.parse fails for some patterns.
    [all...]
tmsgfmt.cpp 309 // both the input and output patterns and compare them, taking SKIP_SYNTAX etc.
753 //Nested patterns with plural, number ,choice ,select format etc.
1690 const char* patterns[] = { \/\/ pattern, expected pattern local
    [all...]
  /external/iproute2/misc/
ifstat.c 46 char **patterns; variable
75 if (!fnmatch(patterns[i], id, 0))
672 patterns = argv;
nstat.c 40 char **patterns; variable
108 if (!fnmatch(patterns[i], id, 0))
526 patterns = argv;
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 60 import org.apache.xpath.patterns.FunctionPattern;
61 import org.apache.xpath.patterns.NodeTest;
62 import org.apache.xpath.patterns.StepPattern;
63 import org.apache.xpath.patterns.UnionPattern;
674 * @return reference to {@link org.apache.xpath.patterns.UnionPattern} instance.
696 StepPattern[] patterns = new StepPattern[i]; local
701 patterns[i] = (StepPattern) compile(opPos);
705 up.setPatterns(patterns);
720 * @return reference to {@link org.apache.xpath.patterns.StepPattern} instance.
811 * and match patterns
    [all...]
  /external/icu/icu4c/source/i18n/
tmutfmt.cpp 185 // parse by iterating through all available patterns
202 MessageFormat** patterns = (MessageFormat**)valueTok.pointer; local
205 MessageFormat* pattern = patterns[style];
475 // there should be patterns for each plural rule in each time unit.
500 // get all the patterns for each plural rule in this locale.
536 // using patterns of plural count "other",
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 241 // Used for simple match patterns, i.e. xsl:strip-space spec.
1168 Vector patterns = new Vector(nPatterns); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
tmutfmt.cpp 253 // parse by iterating through all available patterns
270 MessageFormat** patterns = (MessageFormat**)valueTok.pointer; local
273 MessageFormat* pattern = patterns[style];
553 // there should be patterns for each plural rule in each time unit.
578 // get all the patterns for each plural rule in this locale.
614 // using patterns of plural count "other",
    [all...]
  /external/chromium_org/third_party/leveldatabase/
env_chromium.cc 240 const char* patterns[] = { member in namespace:leveldb_env
281 const size_t kNumPatterns = arraysize(patterns);
283 if (str_error.find(patterns[i]) != std::string::npos) {
293 // doesn't match any of the patterns.
294 return arraysize(patterns) + 1;
301 return patterns[code - 1];
  /external/chromium_org/third_party/libxml/src/
schematron.c 13 * - the semantic of libxml2 patterns vs. XSLT production referenced
142 int nbPattern; /* the number of patterns */
143 xmlSchematronPatternPtr patterns;/* the patterns found */ member in struct:_xmlSchematron
498 if (schema->patterns == NULL) {
499 schema->patterns = ret;
501 xmlSchematronPatternPtr prev = schema->patterns;
512 * @patterns: a list of patterns
514 * Free a list of patterns
    [all...]
  /external/e2fsprogs/misc/
badblocks.c 75 static int t_flag; /* number of test patterns */
76 static int t_max; /* allocated test patterns */
77 static unsigned int *t_patts; /* test patterns */
590 const unsigned int patterns[] = {0xaa, 0x55, 0xff, 0x00}; local
621 pattern = patterns;
622 nr_pattern = sizeof(patterns) / sizeof(patterns[0]);
732 const unsigned int patterns[] = { ~0 }; local
806 pattern = patterns;
807 nr_pattern = sizeof(patterns) / sizeof(patterns[0])
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /external/libxml2/
schematron.c 13 * - the semantic of libxml2 patterns vs. XSLT production referenced
142 int nbPattern; /* the number of patterns */
143 xmlSchematronPatternPtr patterns;/* the patterns found */ member in struct:_xmlSchematron
498 if (schema->patterns == NULL) {
499 schema->patterns = ret;
501 xmlSchematronPatternPtr prev = schema->patterns;
512 * @patterns: a list of patterns
514 * Free a list of patterns
    [all...]
  /external/elfutils/0.153/src/
unstrip.c 2147 char **patterns; member in struct:match_module_info
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
apitooling-ant.jar 
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 408 final String [] patterns = optdef.getNames (); local
410 for (int p = 0; p < patterns.length; ++ p)
412 final String pattern = patterns [p];
    [all...]
  /external/dexmaker/lib/
jarjar.jar 

Completed in 4255 milliseconds

12 3