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

1 2 3 4 5

  /external/chromium_org/components/omnibox/
url_prefix.cc 38 CR_DEFINE_STATIC_LOCAL(URLPrefixes, prefixes, ());
39 if (prefixes.empty()) {
40 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("https://www."), 2));
41 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("http://www."), 2));
42 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("ftp://www."), 2));
43 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("https://"), 1));
44 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("http://"), 1));
45 prefixes.push_back(URLPrefix(base::ASCIIToUTF16("ftp://"), 1));
46 prefixes.push_back(URLPrefix(base::string16(), 0));
48 return prefixes;
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
prefix_set_unittest.cc 45 // Generate a set of random prefixes to share between tests. For
52 // Distribute clusters of prefixes.
74 // Check that all elements of |prefixes| are in |prefix_set|, and
78 const std::vector<SBPrefix> &prefixes) {
79 // The set can generate the prefixes it believes it has, so that's
81 std::set<SBPrefix> check(prefixes.begin(), prefixes.end());
87 for (size_t i = 0; i < prefixes.size(); ++i) {
88 EXPECT_TRUE(prefix_set.PrefixExists(prefixes[i]));
90 const SBPrefix left_sibling = prefixes[i] - 1
249 std::vector<SBPrefix> prefixes; local
277 std::vector<SBPrefix> prefixes; local
305 std::vector<SBPrefix> prefixes; local
382 std::vector<SBPrefix> prefixes; local
396 std::vector<SBPrefix> prefixes; local
607 std::vector<SBPrefix> prefixes; local
    [all...]
protocol_parser.h 58 std::string FormatGetHash(const std::vector<SBPrefix>& prefixes);
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.
70 // |hash.prefix| is one of the prefixes passed to the set's builder.
115 // |true| if |prefix| is one of the prefixes passed to the set's builder.
119 // Regenerate the vector of prefixes passed to the constructor into
120 // |prefixes|. Prefixes will be added in sorted order. Useful for testing
    [all...]
protocol_parser.cc 251 // BODY = HEADER LF PREFIXES EOF
254 // LENGTH = DIGIT+ # Size of PREFIXES in bytes
255 std::string FormatGetHash(const std::vector<SBPrefix>& prefixes) {
259 request.append(base::Uint64ToString(sizeof(SBPrefix) * prefixes.size()));
264 for (size_t i = 0; i < prefixes.size(); ++i) {
265 request.append(reinterpret_cast<const char*>(&prefixes[i]),
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
geocoding_data.h 34 // Sorted array of phone number prefixes.
35 const int32* prefixes; member in struct:i18n::phonenumbers::PrefixDescriptions
37 // Number of elements in prefixes.
41 // to prefixes.
default_map_storage.cc 45 prefixes_ = descriptions->prefixes;
  /external/elfutils/0.153/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
321 int prefixes; local
329 .prefixes = &prefixes,
340 prefixes = 0;
345 /* Recognize all prefixes. */
356 prefixes |= last_prefix_bit = 1 << i;
363 prefixes |= ((*data++) & 0xf) | has_rex;
375 if (prefixes != 0)
446 || (prefixes & correct_prefix) != 0)
    [all...]
  /external/chromium_org/third_party/brotli/src/
shared.mk 4 GFLAGS=-no-canonical-prefixes -fno-omit-frame-pointer -m64
  /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/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Element.java 39 protected Vector prefixes; field in class:Element
155 return (prefixes == null ? 0 : prefixes.size());
159 return ((String[]) prefixes.elementAt(i))[0];
163 return ((String[]) prefixes.elementAt(i))[1];
260 if (prefixes == null)
261 prefixes = new Vector();
262 prefixes.addElement(new String[] {
302 if (prefixes != null) {
303 for (int i = 0; i < prefixes.size(); i++)
    [all...]
  /external/chromium_org/tools/ipc_fuzzer/
play_testcase.py 58 prefixes = {
77 for prefix in prefixes:
83 if switch in prefixes:
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
NamespaceMappings.java 56 * processed. At any given moment of processing the currently visible prefixes
67 * This member is continually incremented when new prefixes need to be
91 * All prefixes pushed at the current depth can be
168 Enumeration prefixes = m_namespaces.keys(); local
169 while (prefixes.hasMoreElements())
171 String prefix = (String) prefixes.nextElement();
185 Enumeration prefixes = m_namespaces.keys(); local
186 while (prefixes.hasMoreElements())
188 String prefix = (String) prefixes.nextElement();
204 // Prefixes "xml" and "xmlns" cannot be redefine
486 Enumeration prefixes = m_namespaces.keys(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/music_manager_private/
device_id_linux.cc 102 const char* prefixes[],
122 if (!IsValidPrefix(ifinfo.ifr_name, prefixes, prefixes_count))
135 const char* prefixes[],
138 if (strncmp(prefixes[i], name, strlen(prefixes[i])) == 0)
  /build/core/combo/
HOST_linux-x86_64.mk 43 -no-canonical-prefixes \
HOST_linux-x86.mk 43 -no-canonical-prefixes \
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ConfigResults.java 169 * Returns a list of build results which names starts with one of the given prefixes.
171 * @param prefixes List of expected prefixes
174 public List getBuildsMatchingPrefixes(List prefixes) {
177 int length = prefixes.size();
182 if (buildName.startsWith((String)prefixes.get(j))) {
392 * prefixes.
394 * @param prefixes List of prefixes to filter builds. If <code>null</code>
404 public double[] getStatistics(List prefixes) {
    [all...]
  /external/icu/icu4c/source/i18n/
collationsets.cpp 216 // Parallel iteration over prefixes of both tables.
217 UCharsTrie::Iterator prefixes(p, 0, errorCode);
222 // U+FFFF is untailorable and will not occur in prefixes.
226 if(prefixes.next(errorCode)) {
227 tp = &prefixes.getString();
243 addPrefix(data, *tp, c, (uint32_t)prefixes.getValue());
251 compare(c, (uint32_t)prefixes.getValue(), (uint32_t)basePrefixes.getValue());
308 UCharsTrie::Iterator prefixes(p, 0, errorCode);
309 while(prefixes.next(errorCode)) {
310 addPrefix(d, prefixes.getString(), c, (uint32_t)prefixes.getValue())
    [all...]
collationsets.h 68 /** Prefixes are reversed in the data structure. */
94 ContractionsAndExpansions(UnicodeSet *con, UnicodeSet *exp, CESink *s, UBool prefixes)
98 addPrefixes(prefixes),
116 /** Prefixes are reversed in the data structure. */
  /external/chromium_org/ppapi/tests/
test_case.cc 21 const char* const prefixes[] = { local
23 for (size_t i = 0; i < sizeof(prefixes)/sizeof(prefixes[0]); ++i)
24 if (test_name.find(prefixes[i]) == 0)
25 return test_name.substr(strlen(prefixes[i]));
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
insn.c 141 insn->prefixes =
142 yasm_xrealloc(insn->prefixes,
144 insn->prefixes[insn->num_prefixes] = prefix;
162 insn->prefixes = NULL;
195 yasm_xfree(insn->prefixes);
  /external/chromium_org/third_party/mesa/src/scons/
crossmingw.py 68 prefixes = prefixes64
70 prefixes = prefixes32
71 for prefix in prefixes:
  /external/mesa3d/scons/
crossmingw.py 68 prefixes = prefixes64
70 prefixes = prefixes32
71 for prefix in prefixes:
  /external/chromium_org/tools/
gyp-explain.py 64 prefixes = [os.path.commonprefix(path) for path in paths]
65 prefix = os.path.commonprefix(prefixes)

Completed in 1174 milliseconds

1 2 3 4 5