Searched refs:repl (Results 1 - 25 of 46) 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/chrome/browser/search_engines/
H A Dsearch_terms_data.cc36 GURL::Replacements repl; local
39 repl.SetHostStr(suggest_host);
43 repl.SetPathStr(suggest_path);
46 repl.ClearQuery();
47 repl.ClearRef();
48 return base_url.ReplaceComponents(repl).spec();
/external/chromium/chrome/browser/google/
H A Dgoogle_util.cc25 GURL::Replacements repl; local
26 repl.SetQueryStr(query);
27 return url.ReplaceComponents(repl);
/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;
337 const Token& repl = macro.replacements[i]; local
338 if (repl.type != Token::IDENTIFIER)
340 replacements->push_back(repl);
[all...]
/external/chromium/chrome/browser/
H A Dbrowser_url_handler.cc54 url_canon::Replacements<char> repl;
55 repl.SetScheme(chrome::kViewSourceScheme,
57 repl.SetPath(url->spec().c_str(),
59 *url = url->ReplaceComponents(repl);
/external/chromium_org/content/browser/
H A Dbrowser_url_handler_impl.cc56 url_canon::Replacements<char> repl;
57 repl.SetScheme(kViewSourceScheme,
59 repl.SetPath(url->spec().c_str(),
61 *url = url->ReplaceComponents(repl);
/external/hyphenation/
H A Dhyphen.h80 char *repl; member in struct:_HyphenState
H A Dsubstrings.pl32 $repl = $2;
42 $repltab{$pat} = $repl;
48 $repl = $2;
56 $repltab{$pat} = $repl;
H A Dhyphen.c186 dict->states[dict->num_states].repl = NULL;
287 char * repl; local
312 dict[k]->states[0].repl = NULL;
359 repl = strchr(buf, '/');
362 if (repl) {
363 char * index = strchr(repl + 1, ',');
364 *repl = '\0';
374 hnj_strchomp(repl + 1);
378 repl = hnj_strdup(repl
717 char *repl; local
[all...]
/external/chromium/googleurl/src/
H A Dgurl_unittest.cc255 GURL::Replacements repl; local
256 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
257 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
258 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
259 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
260 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
261 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
262 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
263 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
264 GURL output = url.ReplaceComponents(repl);
[all...]
H A Durl_canon_internal.cc305 const Replacements<char>& repl,
309 const URLComponentSource<char>& repl_source = repl.sources();
310 const url_parse::Parsed& repl_parsed = repl.components();
336 const Replacements<char16>& repl,
343 const URLComponentSource<char16>& repl_source = repl.sources();
344 const url_parse::Parsed& repl_parsed = repl.components();
304 SetupOverrideComponents(const char* base, const Replacements<char>& repl, URLComponentSource<char>* source, url_parse::Parsed* parsed) argument
335 SetupUTF16OverrideComponents(const char* base, const Replacements<char16>& repl, CanonOutput* utf8_buffer, URLComponentSource<char>* source, url_parse::Parsed* parsed) argument
H A Durl_canon_internal.h385 // |repl| (replacements) will be updated to reference those strings.
389 const Replacements<char>& repl,
410 const Replacements<char16>& repl,
/external/chromium_org/url/
H A Dgurl_unittest.cc337 GURL::Replacements repl; local
338 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
339 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
340 SetupReplacement(&GURL::Replacements::SetPassword, &repl, cur.password);
341 SetupReplacement(&GURL::Replacements::SetHost, &repl, cur.host);
342 SetupReplacement(&GURL::Replacements::SetPort, &repl, cur.port);
343 SetupReplacement(&GURL::Replacements::SetPath, &repl, cur.path);
344 SetupReplacement(&GURL::Replacements::SetQuery, &repl, cur.query);
345 SetupReplacement(&GURL::Replacements::SetRef, &repl, cur.ref);
346 GURL output = url.ReplaceComponents(repl);
361 GURL::Replacements repl; local
[all...]
H A Durl_canon_internal.cc283 const Replacements<char>& repl,
287 const URLComponentSource<char>& repl_source = repl.sources();
288 const url_parse::Parsed& repl_parsed = repl.components();
314 const Replacements<base::char16>& repl,
321 const URLComponentSource<base::char16>& repl_source = repl.sources();
322 const url_parse::Parsed& repl_parsed = repl.components();
282 SetupOverrideComponents(const char* base, const Replacements<char>& repl, URLComponentSource<char>* source, url_parse::Parsed* parsed) argument
313 SetupUTF16OverrideComponents(const char* base, const Replacements<base::char16>& repl, CanonOutput* utf8_buffer, URLComponentSource<char>* source, url_parse::Parsed* parsed) argument
H A Durl_canon_internal.h367 // |repl| (replacements) will be updated to reference those strings.
371 const Replacements<char>& repl,
392 const Replacements<base::char16>& repl,
/external/chromium_org/chrome/browser/search_engines/
H A Dsearch_terms_data.cc47 GURL::Replacements repl; local
50 // SetPathStr() requires its argument to stay in scope as long as |repl| is,
54 repl.SetPathStr(suggest_path);
57 repl.ClearQuery();
58 repl.ClearRef();
59 return base_url.ReplaceComponents(repl).spec();
H A Dtemplate_url_parser.cc451 GURL::Replacements repl; local
452 repl.SetQueryStr(new_query);
453 url = url.ReplaceComponents(repl);
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.cc210 GURL::Replacements repl; local
213 repl.SetPathStr(path);
214 url = url.ReplaceComponents(repl);
260 GURL::Replacements repl; local
263 repl.SetPathStr(path);
264 url = url.ReplaceComponents(repl);
/external/iptables/libiptc/
H A Dlibiptc.c1119 static inline int iptcc_compile_rule (struct xtc_handle *h, STRUCT_REPLACE *repl, struct rule_head *r) argument
1138 memcpy((char *)repl->entries+r->offset, r->entry, r->size);
1144 static int iptcc_compile_chain(struct xtc_handle *h, STRUCT_REPLACE *repl, struct chain_head *c) argument
1154 head = (void *)repl->entries + c->head_offset;
1162 repl->hook_entry[c->hooknum-1] = c->head_offset;
1163 repl->underflow[c->hooknum-1] = c->foot_offset;
1168 ret = iptcc_compile_rule(h, repl, r);
1174 foot = (void *)repl->entries + c->foot_offset;
1250 static int iptcc_compile_table(struct xtc_handle *h, STRUCT_REPLACE *repl) argument
1257 int ret = iptcc_compile_chain(h, repl,
2473 counters_normal_map(STRUCT_COUNTERS_INFO *newcounters, STRUCT_REPLACE *repl, unsigned int idx, unsigned int mappos) argument
2488 counters_map_zeroed(STRUCT_COUNTERS_INFO *newcounters, STRUCT_REPLACE *repl, unsigned int idx, unsigned int mappos, STRUCT_COUNTERS *counters) argument
2521 STRUCT_REPLACE *repl; local
[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/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/kernel-headers/original/linux/netfilter_arp/
H A Darp_tables.h245 const struct arpt_replace *repl);

Completed in 794 milliseconds

12