Searched refs:repl (Results 1 - 25 of 43) sorted by relevance

12

/external/clang/www/
H A Dbuiltins.py147 def report_repl(builtin, repl):
148 sys.stderr.write("%s:%d: x86 builtin %s used, replaced with %s\n" % (fileinput.filename(), fileinput.filelineno(), builtin, repl))
154 for builtin, repl in repl_map.iteritems():
156 line = line.replace(builtin, repl)
157 report_repl(builtin, repl)
/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/libnl/lib/netfilter/
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...]
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...]
/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/content/browser/
H A Dbrowser_url_handler_impl.cc66 url::Replacements<char> repl;
67 repl.SetScheme(kViewSourceScheme,
69 repl.SetPath(url->spec().c_str(), url::Component(0, url->spec().size()));
70 *url = url->ReplaceComponents(repl);
/external/lldb/source/Interpreter/
H A Dembedded_interpreter.py97 repl = SimpleREPL('>>> ', dict)
98 repl.interact()
101 repl = SimpleREPL ('', dict)
102 repl.one_line (input_string)
/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_internal.h363 // |repl| (replacements) will be updated to reference those strings.
367 const Replacements<char>& repl,
388 const Replacements<base::char16>& repl,
/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/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/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py202 repl = "".join(data)
213 src = src[:match.start(1)] + repl + src[match.end(1):]
/external/chromium_org/third_party/protobuf/python/
H A Dez_setup.py262 repl = "".join(data)
273 src = src[:match.start(1)] + repl + src[match.end(1):]
/external/chromium_org/tools/grit/grit/format/
H A Dhtml_inline_unittest.py241 def replacer(var, repl):
242 return lambda filename: filename.replace('[%s]' % var, repl)
/external/protobuf/python/
H A Dez_setup.py254 repl = "".join(data)
265 src = src[:match.start(1)] + repl + src[match.end(1):]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DEncoding.java171 String repl = REPLACEMENTS[ch];
172 if (repl != null) {
173 output.append(plainText, pos, i).append(repl);
/external/chromium_org/tools/grit/grit/gather/
H A Dchrome_html_unittest.py495 def replacer(var, repl):
496 return lambda filename: filename.replace('[%s]' % var, 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/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/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/libhevc/common/arm/
H A Dihevc_intra_pred_luma_vert.s183 vld1.8 {d16,d17}, [r6] @ld for repl to cols src[2nt+1+col(0:15)] (0 ignored for stores)
321 vld1.8 d16, [r6] @ld for repl to cols src[2nt+1+col(0:3 or 0:7)](0 ignored for st)
/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);

Completed in 784 milliseconds

12