OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:best_prefix
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/components/autocomplete/
url_prefix.cc
20
const URLPrefix*
best_prefix
= URLPrefix::BestURLPrefix(text, prefix_suffix);
local
21
if ((
best_prefix
== NULL) ||
22
(
best_prefix
->num_components < www_prefix.num_components)) {
24
best_prefix
= &www_prefix;
26
return
best_prefix
;
84
const URLPrefix*
best_prefix
= allow_www_prefix_without_scheme ?
local
87
// If we failed to find a
best_prefix
initially, try again using a fixed-up
91
if (!
best_prefix
&& !fixed_up_input.empty() && (fixed_up_input != input)) {
92
best_prefix
= allow_www_prefix_without_scheme ?
97
return (
best_prefix
!= NULL)
[
all
...]
/external/chromium_org/chrome/browser/history/
scored_history_match.cc
140
const URLPrefix*
best_prefix
= URLPrefix::BestURLPrefix(
local
142
DCHECK(
best_prefix
!= NULL);
143
const int num_components_in_best_prefix =
best_prefix
->num_components;
/external/chromium_org/third_party/libjingle/source/talk/base/
network.cc
348
IPAddress
best_prefix
;
local
377
best_prefix
= current_prefix;
382
*prefix =
best_prefix
;
/external/chromium_org/third_party/webrtc/base/
network.cc
331
IPAddress
best_prefix
;
local
360
best_prefix
= current_prefix;
365
*prefix =
best_prefix
;
/external/chromium_org/chrome/browser/autocomplete/
history_url_provider.cc
587
const URLPrefix*
best_prefix
= URLPrefix::BestURLPrefix(
local
590
// at all (so |
best_prefix
| is NULL), for example if the input is
593
if (
best_prefix
== NULL) {
599
best_prefix
->prefix.length() - offset, text.length(),
704
const URLPrefix*
best_prefix
= URLPrefix::BestURLPrefix(
local
706
DCHECK(
best_prefix
);
709
i->num_components >=
best_prefix
->num_components));
[
all
...]
Completed in 298 milliseconds