HomeSort by relevance Sort by last modified time
    Searched full:prefixes (Results 1 - 25 of 820) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/xpath/
null-namespace-in-html-expected.txt 1 This tests that XPath expressions with prefixes work correctly.
xpath-namespaces-expected.txt 1 This tests that XPath expressions with prefixes work correctly.
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
PrefixFileFilter.java 49 /** The filename prefixes to search for */
50 private final String[] prefixes; field in class:PrefixFileFilter
78 this.prefixes = new String[] {prefix};
83 * Constructs a new Prefix file filter for any of an array of prefixes.
88 * @param prefixes the prefixes to allow, must not be null
91 public PrefixFileFilter(String[] prefixes) {
92 this(prefixes, IOCase.SENSITIVE);
96 * Constructs a new Prefix file filter for any of an array of prefixes
102 * @param prefixes the prefixes to allow, must not be null
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
prefix_set_unittest.cc 29 // Generate a set of random prefixes to share between tests. For
41 // Check that all elements of |prefixes| are in |prefix_set|, and
45 const std::vector<SBPrefix> &prefixes) {
46 // The set can generate the prefixes it believes it has, so that's
48 std::set<SBPrefix> check(prefixes.begin(), prefixes.end());
54 for (size_t i = 0; i < prefixes.size(); ++i) {
55 EXPECT_TRUE(prefix_set->Exists(prefixes[i]));
57 const SBPrefix left_sibling = prefixes[i] - 1;
61 const SBPrefix right_sibling = prefixes[i] + 1
185 std::vector<SBPrefix> prefixes; local
212 std::vector<SBPrefix> prefixes; local
243 std::vector<SBPrefix> prefixes; local
438 std::vector<SBPrefix> prefixes; local
    [all...]
filter_false_positive_perftest.cc 103 // Constructs a bloom filter of the appropriate size from the provided prefixes.
105 const std::vector<SBPrefix>& prefixes,
108 const int key_count = std::max(static_cast<int>(prefixes.size()),
113 // Add the prefixes to it.
114 for (size_t i = 0; i < prefixes.size(); ++i)
115 (*bloom_filter)->Insert(prefixes[i]);
117 std::cout << "Bloom filter with prefixes: " << prefixes.size()
123 // Reads the set of add prefixes contained in a SafeBrowsing database into a
126 bool ReadDatabase(const FilePath& path, std::vector<SBPrefix>* prefixes) {
251 std::vector<SBPrefix> prefixes; local
    [all...]
prefix_set.h 5 // A read-only set implementation for |SBPrefix| items. Prefixes are
19 // prefixes of a certain size. As of this writing, my safe-browsing
21 // 653132 add prefixes
32 // overhead starts to become a problem a bit under 200k prefixes. The
34 // 75k prefixes. Fortunately, the actual memory footprint also falls.
66 // |true| if |prefix| was in |prefixes| passed to the constructor.
73 // Regenerate the vector of prefixes passed to the constructor into
74 // |prefixes|. Prefixes will be added in sorted order.
75 void GetPrefixes(std::vector<SBPrefix>* prefixes) const
    [all...]
  /external/clang/include/clang/Driver/
OptParser.td 33 // An option which prefixes its (single) value.
105 class Option<list<string> prefixes, string name, OptionKind kind> {
107 list<string> Prefixes = prefixes;
121 class Flag<list<string> prefixes, string name>
122 : Option<prefixes, name, KIND_FLAG>;
123 class Joined<list<string> prefixes, string name>
124 : Option<prefixes, name, KIND_JOINED>;
125 class Separate<list<string> prefixes, string name>
126 : Option<prefixes, name, KIND_SEPARATE>
    [all...]
  /external/llvm/include/llvm/Option/
OptParser.td 33 // An option which prefixes its (single) value.
80 class Option<list<string> prefixes, string name, OptionKind kind> {
82 list<string> Prefixes = prefixes;
96 class Flag<list<string> prefixes, string name>
97 : Option<prefixes, name, KIND_FLAG>;
98 class Joined<list<string> prefixes, string name>
99 : Option<prefixes, name, KIND_JOINED>;
100 class Separate<list<string> prefixes, string name>
101 : Option<prefixes, name, KIND_SEPARATE>
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
NamespaceSupportTest.java 56 Enumeration<String> prefixes = ns.getDeclaredPrefixes(); local
58 while (prefixes.hasMoreElements()) {
59 prefix = prefixes.nextElement();
126 // Part 1: Check that xml and xmlns are not accepted as prefixes.
134 // prefixes.
161 ArrayList<String> prefixes; local
163 prefixes = Collections.list(ns.getPrefixes(marketUri));
164 assertTrue("Test 1: Incorrect set of prefixes returned.",
165 expected.containsAll(prefixes) && prefixes.containsAll(expected))
182 ArrayList<String> prefixes; local
193 ArrayList<String> prefixes; local
315 ArrayList<String> prefixes = Collections.list(ns.getPrefixes()); local
    [all...]
  /external/clang/test/Driver/
cc-print-options.c 3 // RUN: %clang -no-canonical-prefixes -S -o %t.s %s
constructors.c 7 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
12 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
18 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
24 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
29 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
35 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
40 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
45 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \
bitrig.c 1 // RUN: %clang -no-canonical-prefixes -target amd64-pc-bitrig %s -### 2>&1 \
6 // RUN: %clangxx -no-canonical-prefixes -target amd64-pc-bitrig %s -### 2>&1 \
11 // RUN: %clangxx -stdlib=libc++ -no-canonical-prefixes -target amd64-pc-bitrig %s -### 2>&1 \
16 // RUN: %clang -no-canonical-prefixes -target amd64-pc-bitrig -pthread %s -### 2>&1 \
21 // RUN: %clang -no-canonical-prefixes -target amd64-pc-bitrig -pg -pthread %s -### 2>&1 \
26 // RUN: %clang -no-canonical-prefixes -target amd64-pc-bitrig -shared -pg -pthread %s -### 2>&1 \
darwin-sanitizer-ld.c 3 // RUN: %clang -no-canonical-prefixes -### -target x86_64-darwin \
11 // RUN: %clang -no-canonical-prefixes -### -target x86_64-darwin \
22 // RUN: %clang -no-canonical-prefixes -### -target x86_64-darwin \
30 // RUN: %clang -no-canonical-prefixes -### -target x86_64-darwin \
38 // RUN: %clang -no-canonical-prefixes -### -target x86_64-darwin \
46 // RUN: %clang -no-canonical-prefixes -### -target x86_64-darwin \
dragonfly.c 1 // RUN: %clang -no-canonical-prefixes -target amd64-pc-dragonfly %s -### 2> %t.log
  /external/webkit/LayoutTests/fast/encoding/
namespace-tolerance-expected.txt 2 (1) use namespace prefixes on HTML elements
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/.settings/
org.moreunit.prefs 2 org.moreunit.prefixes=
  /external/clang/test/CodeGen/
2007-01-24-InlineAsmCModifier.c 1 // Verify that the %c modifier works and strips off any prefixes from
  /external/webkit/LayoutTests/http/tests/appcache/resources/
online-whitelist.manifest 5 # These are prefixes for requests we test, but they are not same origin, so they will be skipped.
  /external/elfutils/libcpu/
i386_data.h 38 /* The rep/repe prefixes. */
88 if (*d->prefixes & has_cs)
91 *d->prefixes &= ~has_cs;
93 else if (*d->prefixes & has_ds)
96 *d->prefixes &= ~has_ds;
98 else if (*d->prefixes & has_es)
101 *d->prefixes &= ~has_es;
103 else if (*d->prefixes & has_fs)
106 *d->prefixes &= ~has_fs;
108 else if (*d->prefixes & has_gs
160 int prefixes = *d->prefixes; local
936 int prefixes = *d->prefixes; local
1016 int prefixes = *d->prefixes; local
    [all...]
i386_disasm.c 257 int *prefixes; member in struct:output_data
314 int prefixes; local
322 .prefixes = &prefixes,
333 prefixes = 0;
338 /* Recognize all prefixes. */
349 prefixes |= last_prefix_bit = 1 << i;
356 prefixes |= ((*data++) & 0xf) | has_rex;
368 if (prefixes != 0)
426 || (prefixes & correct_prefix) != 0)
    [all...]
  /external/clang/utils/TableGen/
OptParserEmitter.cpp 56 std::vector<std::string> APrefixes = A->getValueAsListOfStrings("Prefixes");
57 std::vector<std::string> BPrefixes = B->getValueAsListOfStrings("Prefixes");
75 A->getValueAsListOfStrings("Prefixes") ==
76 B->getValueAsListOfStrings("Prefixes")) {
119 PrefixesT Prefixes;
120 Prefixes.insert(std::make_pair(PrefixKeyT(), "prefix_0"));
124 std::vector<std::string> prf = R.getValueAsListOfStrings("Prefixes");
127 if (Prefixes.insert(std::make_pair(prfkey, (Twine("prefix_") +
136 // Dump prefixes.
138 OS << "// Prefixes\n\n"
    [all...]
  /external/llvm/utils/TableGen/
OptParserEmitter.cpp 56 std::vector<std::string> APrefixes = A->getValueAsListOfStrings("Prefixes");
57 std::vector<std::string> BPrefixes = B->getValueAsListOfStrings("Prefixes");
75 A->getValueAsListOfStrings("Prefixes") ==
76 B->getValueAsListOfStrings("Prefixes")) {
115 PrefixesT Prefixes;
116 Prefixes.insert(std::make_pair(PrefixKeyT(), "prefix_0"));
120 std::vector<std::string> prf = R.getValueAsListOfStrings("Prefixes");
123 if (Prefixes.insert(std::make_pair(prfkey, (Twine("prefix_") +
128 // Dump prefixes.
131 OS << "// Prefixes\n\n"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
NamespaceSupport.java 156 // ignore "xml" and "xmlns" prefixes
252 String[] prefixes = new String[fNamespaceSize]; local
253 fPrefixes = prefixes;
270 return new Prefixes(fPrefixes, count);
273 protected final class Prefixes implements Enumeration {
274 private String[] prefixes; field in class:NamespaceSupport.Prefixes
279 * Constructor for Prefixes.
281 public Prefixes(String [] prefixes, int size) {
282 this.prefixes = prefixes;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathAPI.java 57 * prefixes are resolved from the context node, which may not
74 * XPath namespace prefixes are resolved from the namespaceNode.
78 * @param namespaceNode The node from which prefixes in the XPath will be resolved to namespaces.
97 * XPath namespace prefixes are resolved from the contextNode.
113 * XPath namespace prefixes are resolved from the namespaceNode.
117 * @param namespaceNode The node from which prefixes in the XPath will be resolved to namespaces.
136 * XPath namespace prefixes are resolved from the contextNode.
152 * XPath namespace prefixes are resolved from the namespaceNode.
156 * @param namespaceNode The node from which prefixes in the XPath will be resolved to namespaces.
175 * XPath namespace prefixes will be resolved from the namespaceNode
    [all...]
  /external/chromium/base/third_party/icu/
README.chromium 8 The main change is that U_/U8_/U16_ prefixes have been replaced with

Completed in 1496 milliseconds

1 2 3 4 5 6 7 8 91011>>