Home
last modified time | relevance | path

Searched refs:repl (Results 1 – 25 of 50) sorted by relevance

12

/external/deqp/framework/qphelper/
DqpXmlWriter.c55 const char* repl = DE_NULL; in writeEscaped() local
59 case '<': repl = "&lt;"; break; in writeEscaped()
60 case '>': repl = "&gt;"; break; in writeEscaped()
61 case '&': repl = "&amp;"; break; in writeEscaped()
62 case '\'': repl = "&apos;"; break; in writeEscaped()
63 case '"': repl = "&quot;"; break; in writeEscaped()
66 case 1: repl = "&lt;SOH&gt;"; break; in writeEscaped()
67 case 2: repl = "&lt;STX&gt;"; break; in writeEscaped()
68 case 3: repl = "&lt;ETX&gt;"; break; in writeEscaped()
69 case 4: repl = "&lt;EOT&gt;"; break; in writeEscaped()
[all …]
/external/libnl/lib/netfilter/
Dct_obj.c583 int nfnl_ct_set_src(struct nfnl_ct *ct, int repl, struct nl_addr *addr) in nfnl_ct_set_src() argument
585 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig; in nfnl_ct_set_src()
586 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC; in nfnl_ct_set_src()
590 int nfnl_ct_set_dst(struct nfnl_ct *ct, int repl, struct nl_addr *addr) in nfnl_ct_set_dst() argument
592 struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig; in nfnl_ct_set_dst()
593 int attr = repl ? CT_ATTR_REPL_DST : CT_ATTR_ORIG_DST; in nfnl_ct_set_dst()
597 struct nl_addr *nfnl_ct_get_src(const struct nfnl_ct *ct, int repl) in nfnl_ct_get_src() argument
599 const struct nfnl_ct_dir *dir = repl ? &ct->ct_repl : &ct->ct_orig; in nfnl_ct_get_src()
600 int attr = repl ? CT_ATTR_REPL_SRC : CT_ATTR_ORIG_SRC; in nfnl_ct_get_src()
606 struct nl_addr *nfnl_ct_get_dst(const struct nfnl_ct *ct, int repl) in nfnl_ct_get_dst() argument
[all …]
Dct.c105 static int ct_parse_ip(struct nfnl_ct *ct, int repl, struct nlattr *attr) in ct_parse_ip() argument
119 err = nfnl_ct_set_src(ct, repl, addr); in ct_parse_ip()
128 err = nfnl_ct_set_dst(ct, repl, addr); in ct_parse_ip()
137 err = nfnl_ct_set_src(ct, repl, addr); in ct_parse_ip()
146 err = nfnl_ct_set_dst(ct, repl, addr); in ct_parse_ip()
160 static int ct_parse_proto(struct nfnl_ct *ct, int repl, struct nlattr *attr) in ct_parse_proto() argument
169 if (!repl && tb[CTA_PROTO_NUM]) in ct_parse_proto()
172 nfnl_ct_set_src_port(ct, repl, in ct_parse_proto()
175 nfnl_ct_set_dst_port(ct, repl, in ct_parse_proto()
178 nfnl_ct_set_icmp_id(ct, repl, in ct_parse_proto()
[all …]
/external/clang/www/
Dbuiltins.py147 def report_repl(builtin, repl): argument
148 …iltin %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/third_party/angle/src/compiler/preprocessor/
DMacroExpander.cpp201 Token& repl = replacements->front(); in expandMacro() local
206 repl.text = stream.str(); in expandMacro()
212 repl.text = stream.str(); in expandMacro()
229 Token& repl = replacements->at(i); in expandMacro() local
234 repl.setAtStartOfLine(identifier.atStartOfLine()); in expandMacro()
235 repl.setHasLeadingSpace(identifier.hasLeadingSpace()); in expandMacro()
237 repl.location = identifier.location; in expandMacro()
339 const Token &repl = macro.replacements[i]; in replaceMacroParams() local
340 if (repl.type != Token::IDENTIFIER) in replaceMacroParams()
342 replacements->push_back(repl); in replaceMacroParams()
[all …]
/external/chromium_org/components/search_engines/
Dsearch_terms_data.cc26 GURL::Replacements repl; in GoogleBaseSuggestURLValue() local
33 repl.SetPathStr(suggest_path); in GoogleBaseSuggestURLValue()
36 repl.ClearQuery(); in GoogleBaseSuggestURLValue()
37 repl.ClearRef(); in GoogleBaseSuggestURLValue()
38 return base_url.ReplaceComponents(repl).spec(); in GoogleBaseSuggestURLValue()
Dtemplate_url_parser.cc464 GURL::Replacements repl; in ProcessURLParams() local
465 repl.SetQueryStr(new_query); in ProcessURLParams()
466 url = url.ReplaceComponents(repl); in ProcessURLParams()
/external/iptables/libiptc/
Dlibiptc.c1118 static inline int iptcc_compile_rule (struct xtc_handle *h, STRUCT_REPLACE *repl, struct rule_head … in iptcc_compile_rule() argument
1137 memcpy((char *)repl->entries+r->offset, r->entry, r->size); in iptcc_compile_rule()
1143 static int iptcc_compile_chain(struct xtc_handle *h, STRUCT_REPLACE *repl, struct chain_head *c) in iptcc_compile_chain() argument
1153 head = (void *)repl->entries + c->head_offset; in iptcc_compile_chain()
1161 repl->hook_entry[c->hooknum-1] = c->head_offset; in iptcc_compile_chain()
1162 repl->underflow[c->hooknum-1] = c->foot_offset; in iptcc_compile_chain()
1167 ret = iptcc_compile_rule(h, repl, r); in iptcc_compile_chain()
1173 foot = (void *)repl->entries + c->foot_offset; in iptcc_compile_chain()
1249 static int iptcc_compile_table(struct xtc_handle *h, STRUCT_REPLACE *repl) in iptcc_compile_table() argument
1256 int ret = iptcc_compile_chain(h, repl, c); in iptcc_compile_table()
[all …]
/external/lldb/source/Interpreter/
Dembedded_interpreter.py97 repl = SimpleREPL('>>> ', dict)
98 repl.interact()
101 repl = SimpleREPL ('', dict)
102 repl.one_line (input_string)
/external/chromium_org/url/
Dgurl_unittest.cc407 GURL::Replacements repl; in TEST() local
408 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme); in TEST()
409 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username); in TEST()
410 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password); in TEST()
411 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host); in TEST()
412 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port); in TEST()
413 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path); in TEST()
414 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query); in TEST()
415 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref); in TEST()
416 GURL output = url.ReplaceComponents(repl); in TEST()
[all …]
Durl_canon_internal.cc310 const Replacements<char>& repl, in SetupOverrideComponents() argument
314 const URLComponentSource<char>& repl_source = repl.sources(); in SetupOverrideComponents()
315 const Parsed& repl_parsed = repl.components(); in SetupOverrideComponents()
341 const Replacements<base::char16>& repl, in SetupUTF16OverrideComponents() argument
348 const URLComponentSource<base::char16>& repl_source = repl.sources(); in SetupUTF16OverrideComponents()
349 const Parsed& repl_parsed = repl.components(); in SetupUTF16OverrideComponents()
Durl_canon_internal.h367 const Replacements<char>& repl,
388 const Replacements<base::char16>& repl,
/external/chromium_org/content/browser/
Dbrowser_url_handler_impl.cc66 url::Replacements<char> repl; in ReverseViewSource() local
67 repl.SetScheme(kViewSourceScheme, in ReverseViewSource()
69 repl.SetPath(url->spec().c_str(), url::Component(0, url->spec().size())); in ReverseViewSource()
70 *url = url->ReplaceComponents(repl); in ReverseViewSource()
/external/owasp/sanitizer/src/main/org/owasp/html/
DEncoding.java171 String repl = REPLACEMENTS[ch]; in encodeHtmlOnto() local
172 if (repl != null) { in encodeHtmlOnto()
173 output.append(plainText, pos, i).append(repl); in encodeHtmlOnto()
/external/chromium_org/third_party/protobuf/python/
Dez_setup.py262 repl = "".join(data)
273 src = src[:match.start(1)] + repl + src[match.end(1):]
/external/protobuf/python/
Dez_setup.py254 repl = "".join(data)
265 src = src[:match.start(1)] + repl + src[match.end(1):]
/external/chromium_org/tools/grit/grit/format/
Dhtml_inline_unittest.py241 def replacer(var, repl): argument
242 return lambda filename: filename.replace('[%s]' % var, repl)
/external/antlr/antlr-3.4/runtime/Python/
Dez_setup.py202 repl = "".join(data)
213 src = src[:match.start(1)] + repl + src[match.end(1):]
/external/llvm/test/Transforms/Inline/
Dalloca-bonus.ll36 ; %D poisons this call, scalar-repl can't handle that instruction.
95 ; %B poisons this call, scalar-repl can't handle that instruction. However, we
136 ; %D poisons this call, scalar-repl can't handle that instruction. However, if
/external/chromium_org/tools/grit/grit/gather/
Dchrome_html_unittest.py495 def replacer(var, repl): argument
496 return lambda filename: filename.replace('[%s]' % var, repl)
/external/chromium_org/third_party/icu/source/test/cintltst/
Dreapits.c994 UChar repl[100]; in TestRegexCAPI() local
1005 u_uastrncpy(repl, "some other", sizeof(repl)/2); in TestRegexCAPI()
1013 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestRegexCAPI()
1022 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ $ \\abc", sizeof(repl)/2); in TestRegexCAPI()
1023 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestRegexCAPI()
1033 uregex_appendReplacement(re, repl, -1, &bufPtr, NULL, &status); in TestRegexCAPI()
1920 UChar repl[100]; in TestUTextAPI() local
1930 u_uastrncpy(repl, "some other", sizeof(repl)/2); in TestUTextAPI()
1938 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestUTextAPI()
1947 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ $ \\abc", sizeof(repl)/2); in TestUTextAPI()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dreapits.c994 UChar repl[100]; in TestRegexCAPI() local
1005 u_uastrncpy(repl, "some other", sizeof(repl)/2); in TestRegexCAPI()
1013 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestRegexCAPI()
1022 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ $ \\abc", sizeof(repl)/2); in TestRegexCAPI()
1023 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestRegexCAPI()
1033 uregex_appendReplacement(re, repl, -1, &bufPtr, NULL, &status); in TestRegexCAPI()
1920 UChar repl[100]; in TestUTextAPI() local
1930 u_uastrncpy(repl, "some other", sizeof(repl)/2); in TestUTextAPI()
1938 uregex_appendReplacement(re, repl, -1, &bufPtr, &bufCap, &status); in TestUTextAPI()
1947 u_uastrncpy(repl, "abc\\u0041\\U00000042 \\\\ $ \\abc", sizeof(repl)/2); in TestUTextAPI()
[all …]
/external/chromium-trace/
Dsystrace.py243 def repl(m): function
255 out = re.sub(r'^\s*(\S+)-(\d+)', repl, out, flags=re.MULTILINE)
/external/chromium_org/chrome/common/
Dlocalized_error.cc814 GURL::Replacements repl; in GetStrings() local
815 repl.SetQueryStr(query); in GetStrings()
816 learn_more_url = learn_more_url.ReplaceComponents(repl); in GetStrings()
/external/libhevc/common/arm/
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 s…
321 …vld1.8 d16, [r6] @ld for repl to cols src[2nt+1+col(0:3 or 0:7)](0 ignored …

12