Searched defs:repl (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/components/search_engines/
H A Dsearch_terms_data.cc26 GURL::Replacements repl; local
29 // SetPathStr() requires its argument to stay in scope as long as |repl| is,
33 repl.SetPathStr(suggest_path);
36 repl.ClearQuery();
37 repl.ClearRef();
38 return base_url.ReplaceComponents(repl).spec();
H A Dtemplate_url_parser.cc464 GURL::Replacements repl; local
465 repl.SetQueryStr(new_query);
466 url = url.ReplaceComponents(repl);
/external/chromium-trace/
H A Dsystrace.py243 def repl(m): function in function:main
255 out = re.sub(r'^\s*(\S+)-(\d+)', repl, out, flags=re.MULTILINE)
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DMacroExpander.cpp201 Token& repl = replacements->front(); local
206 repl.text = stream.str();
212 repl.text = stream.str();
229 Token& repl = replacements->at(i); local
234 repl.setAtStartOfLine(identifier.atStartOfLine());
235 repl.setHasLeadingSpace(identifier.hasLeadingSpace());
237 repl.location = identifier.location;
339 const Token &repl = macro.replacements[i]; local
340 if (repl.type != Token::IDENTIFIER)
342 replacements->push_back(repl);
[all...]
/external/chromium_org/testing/gtest/scripts/
H A Dupload.py827 def repl(m): function in function:SubversionVCS._CollapseKeywords
834 return re.sub(r"\$(%s):(:?)([^\$]+)\$" % '|'.join(keywords), repl, content)
/external/chromium_org/url/
H A Dgurl_unittest.cc407 GURL::Replacements repl; local
408 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
409 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
410 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
411 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
412 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
413 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
414 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
415 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
416 GURL output = url.ReplaceComponents(repl);
431 GURL::Replacements repl; local
[all...]
H A Durl_canon_internal.cc310 const Replacements<char>& repl,
314 const URLComponentSource<char>& repl_source = repl.sources();
315 const Parsed& repl_parsed = repl.components();
341 const Replacements<base::char16>& repl,
348 const URLComponentSource<base::char16>& repl_source = repl.sources();
349 const Parsed& repl_parsed = repl.components();
309 SetupOverrideComponents(const char* base, const Replacements<char>& repl, URLComponentSource<char>* source, Parsed* parsed) argument
340 SetupUTF16OverrideComponents(const char* base, const Replacements<base::char16>& repl, CanonOutput* utf8_buffer, URLComponentSource<char>* source, Parsed* parsed) argument
H A Durl_canon_unittest.cc2112 Replacements<base::char16> repl; local
2118 repl.SetPath(new_path.c_str(), Component(0, 4));
2119 repl.SetQuery(new_query.c_str(),
2128 ReplaceFileURL(src, parsed, repl, NULL, &repl_output, &repl_parsed);
/external/deqp/framework/qphelper/
H A DqpXmlWriter.c55 const char* repl = DE_NULL; local
59 case '<': repl = "&lt;"; break;
60 case '>': repl = "&gt;"; break;
61 case '&': repl = "&amp;"; break;
62 case '\'': repl = "&apos;"; break;
63 case '"': repl = "&quot;"; break;
66 case 1: repl = "&lt;SOH&gt;"; break;
67 case 2: repl = "&lt;STX&gt;"; break;
68 case 3: repl = "&lt;ETX&gt;"; break;
69 case 4: repl
[all...]
/external/libnl/lib/netfilter/
H A Dct.c105 static int ct_parse_ip(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
119 err = nfnl_ct_set_src(ct, repl, addr);
128 err = nfnl_ct_set_dst(ct, repl, addr);
137 err = nfnl_ct_set_src(ct, repl, addr);
146 err = nfnl_ct_set_dst(ct, repl, addr);
160 static int ct_parse_proto(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
169 if (!repl && tb[CTA_PROTO_NUM])
172 nfnl_ct_set_src_port(ct, repl,
175 nfnl_ct_set_dst_port(ct, repl,
178 nfnl_ct_set_icmp_id(ct, repl,
190 ct_parse_tuple(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
250 ct_parse_counters(struct nfnl_ct *ct, int repl, struct nlattr *attr) argument
383 nfnl_ct_build_tuple(struct nl_msg *msg, const struct nfnl_ct *ct, int repl) argument
[all...]
H A Dct_obj.c583 int nfnl_ct_set_src(struct nfnl_ct *ct, int repl, struct nl_addr *addr) argument
585 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig;
586 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC;
590 int nfnl_ct_set_dst(struct nfnl_ct *ct, int repl, struct nl_addr *addr) argument
592 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig;
593 int attr = repl ? CT_ATTR_REPL_DST : CT_ATTR_ORIG_DST;
597 struct nl_addr *nfnl_ct_get_src(const struct nfnl_ct *ct, int repl) argument
599 const struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig;
600 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC;
606 struct nl_addr *nfnl_ct_get_dst(const struct nfnl_ct *ct, int repl) argument
615 nfnl_ct_set_src_port(struct nfnl_ct *ct, int repl, uint16_t port) argument
624 nfnl_ct_test_src_port(const struct nfnl_ct *ct, int repl) argument
630 nfnl_ct_get_src_port(const struct nfnl_ct *ct, int repl) argument
637 nfnl_ct_set_dst_port(struct nfnl_ct *ct, int repl, uint16_t port) argument
646 nfnl_ct_test_dst_port(const struct nfnl_ct *ct, int repl) argument
652 nfnl_ct_get_dst_port(const struct nfnl_ct *ct, int repl) argument
659 nfnl_ct_set_icmp_id(struct nfnl_ct *ct, int repl, uint16_t id) argument
668 nfnl_ct_test_icmp_id(const struct nfnl_ct *ct, int repl) argument
674 nfnl_ct_get_icmp_id(const struct nfnl_ct *ct, int repl) argument
681 nfnl_ct_set_icmp_type(struct nfnl_ct *ct, int repl, uint8_t type) argument
690 nfnl_ct_test_icmp_type(const struct nfnl_ct *ct, int repl) argument
696 nfnl_ct_get_icmp_type(const struct nfnl_ct *ct, int repl) argument
703 nfnl_ct_set_icmp_code(struct nfnl_ct *ct, int repl, uint8_t code) argument
712 nfnl_ct_test_icmp_code(const struct nfnl_ct *ct, int repl) argument
718 nfnl_ct_get_icmp_code(const struct nfnl_ct *ct, int repl) argument
725 nfnl_ct_set_packets(struct nfnl_ct *ct, int repl, uint64_t packets) argument
734 nfnl_ct_test_packets(const struct nfnl_ct *ct, int repl) argument
740 nfnl_ct_get_packets(const struct nfnl_ct *ct, int repl) argument
747 nfnl_ct_set_bytes(struct nfnl_ct *ct, int repl, uint64_t bytes) argument
756 nfnl_ct_test_bytes(const struct nfnl_ct *ct, int repl) argument
762 nfnl_ct_get_bytes(const struct nfnl_ct *ct, int repl) argument
[all...]
/external/chromium_org/chrome/common/
H A Dlocalized_error.cc814 GURL::Replacements repl; local
815 repl.SetQueryStr(query);
816 learn_more_url = learn_more_url.ReplaceComponents(repl);
/external/chromium_org/net/socket_stream/
H A Dsocket_stream.cc653 GURL::Replacements repl; local
654 repl.SetSchemeStr(scheme);
655 proxy_url_ = url_.ReplaceComponents(repl);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dreapits.c994 UChar repl[100]; local
1005 u_uastrncpy(repl, "some other", sizeof(repl)/2);
1013 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status);
1022 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ $ \\abc", sizeof(repl)/2);
1023 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status);
1033 uregex_appendReplacement(re, repl, -1, &bufPtr, NULL, &status);
1920 UChar repl[100]; local
1930 u_uastrncpy(repl, "som
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dreapits.c994 UChar repl[100]; local
1005 u_uastrncpy(repl, "some other", sizeof(repl)/2);
1013 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status);
1022 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ $ \\abc", sizeof(repl)/2);
1023 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status);
1033 uregex_appendReplacement(re, repl, -1, &bufPtr, NULL, &status);
1920 UChar repl[100]; local
1930 u_uastrncpy(repl, "som
[all...]
/external/iptables/libiptc/
H A Dlibiptc.c1118 static inline int iptcc_compile_rule (struct xtc_handle *h, STRUCT_REPLACE *repl, struct rule_head *r) argument
1137 memcpy((char *)repl->entries+r->offset, r->entry, r->size);
1143 static int iptcc_compile_chain(struct xtc_handle *h, STRUCT_REPLACE *repl, struct chain_head *c) argument
1153 head = (void *)repl->entries + c->head_offset;
1161 repl->hook_entry[c->hooknum-1] = c->head_offset;
1162 repl->underflow[c->hooknum-1] = c->foot_offset;
1167 ret = iptcc_compile_rule(h, repl, r);
1173 foot = (void *)repl->entries + c->foot_offset;
1249 static int iptcc_compile_table(struct xtc_handle *h, STRUCT_REPLACE *repl) argument
1256 int ret = iptcc_compile_chain(h, repl,
2480 counters_normal_map(STRUCT_COUNTERS_INFO *newcounters, STRUCT_REPLACE *repl, unsigned int idx, unsigned int mappos) argument
2495 counters_map_zeroed(STRUCT_COUNTERS_INFO *newcounters, STRUCT_REPLACE *repl, unsigned int idx, unsigned int mappos, STRUCT_COUNTERS *counters) argument
2528 STRUCT_REPLACE *repl; local
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dvalid.c5233 xmlNodePtr repl = NULL, last = NULL, tmp; local
5387 xmlFreeNodeList(repl);
5396 if (repl == NULL)
5397 repl = last = tmp;
5431 NODE = repl;
5447 if (repl != NULL)
5448 xmlSnprintfElements(&list[0], 5000, repl, 1);
5483 while (repl != NULL) {
5484 tmp = repl->next;
5485 xmlFree(repl);
[all...]
/external/libxml2/
H A Dvalid.c5233 xmlNodePtr repl = NULL, last = NULL, tmp; local
5387 xmlFreeNodeList(repl);
5396 if (repl == NULL)
5397 repl = last = tmp;
5431 NODE = repl;
5447 if (repl != NULL)
5448 xmlSnprintfElements(&list[0], 5000, repl, 1);
5483 while (repl != NULL) {
5484 tmp = repl->next;
5485 xmlFree(repl);
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp1375 // where we have a value available in repl, also keep track of whether we see
2317 Value *repl = findLeader(I->getParent(), Num); local
2318 if (!repl) {
2325 patchAndReplaceAllUsesWith(I, repl);
2326 if (MD && repl->getType()->getScalarType()->isPointerTy())
2327 MD->invalidateCachedPointerInfo(repl);
/external/mksh/src/
H A Dedit.c4807 putbuf(const char *buf, ssize_t len, bool repl) argument
4811 if (repl) {
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1795 milliseconds

12