OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_nonempty
(Results
1 - 22
of
22
) sorted by null
/external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc
180
if (parts->scheme.
is_nonempty
() &&
228
http_parts.username.
is_nonempty
() &&
229
http_parts.password.
is_nonempty
()) {
274
if (!parts->host.
is_nonempty
())
340
return (parts->scheme.
is_nonempty
() ||
349
if (parts->scheme.
is_nonempty
())
373
if (parts->password.
is_nonempty
())
377
if (parts->path.
is_nonempty
()) {
400
parts->port.
is_nonempty
()))) {
401
return parts->username.
is_nonempty
() ? metrics::OmniboxInputType::UNKNOWN
[
all
...]
history_quick_provider.cc
117
(!autocomplete_input_.parts().username.
is_nonempty
() ||
118
autocomplete_input_.parts().password.
is_nonempty
() ||
119
autocomplete_input_.parts().path.
is_nonempty
());
164
(!autocomplete_input_.parts().path.
is_nonempty
() ||
168
!autocomplete_input_.parts().query.
is_nonempty
() &&
169
!autocomplete_input_.parts().ref.
is_nonempty
()) {
search_provider.cc
584
if (parts.username.
is_nonempty
() || parts.port.
is_nonempty
() ||
585
parts.query.
is_nonempty
() ||
586
(parts.ref.
is_nonempty
() &&
594
parts.path.
is_nonempty
())
[
all
...]
autocomplete_provider.cc
166
DCHECK(parts.host.
is_nonempty
());
history_url_provider.cc
383
input.parts().username.
is_nonempty
() &&
384
!input.parts().password.
is_nonempty
() &&
385
!input.parts().path.
is_nonempty
()))
[
all
...]
/external/chromium_org/net/base/
url_util.cc
88
if (key_.
is_nonempty
())
95
if (value_.
is_nonempty
())
102
if (value_.
is_nonempty
() && unescaped_value_.empty()) {
net_util_icu.cc
458
if (new_parsed->scheme.
is_nonempty
()) {
536
if (original_component.
is_nonempty
()) {
714
if (parsed.username.
is_nonempty
() || parsed.password.
is_nonempty
()) {
715
if (parsed.username.
is_nonempty
() && parsed.password.
is_nonempty
()) {
724
parsed.username.
is_nonempty
() ? &parsed.username : &parsed.password;
753
if (parsed.port.
is_nonempty
()) {
[
all
...]
net_util.cc
216
if (host_info->out_host.
is_nonempty
() &&
362
if (!hostname_component.
is_nonempty
())
366
if (port_component.
is_nonempty
()) {
/external/chromium_org/url/
url_util.cc
72
if (!component.
is_nonempty
())
83
if (!scheme.
is_nonempty
())
212
base_parsed.scheme.
is_nonempty
()) {
221
base_parsed.scheme.
is_nonempty
() &&
239
if (base_parsed_authority.host.
is_nonempty
()) {
253
bool file_base_scheme = base_parsed.scheme.
is_nonempty
() &&
url_canon_stdurl.cc
29
parsed.host.
is_nonempty
() || parsed.port.is_valid()) {
49
if (!parsed.host.
is_nonempty
())
url_canon_ip.cc
36
if (!host.
is_nonempty
())
317
if (!host.
is_nonempty
())
461
if (!host.
is_nonempty
() || spec[host.begin] != '[' || spec[end - 1] != ']')
gurl.cc
381
if (parsed_.port.
is_nonempty
())
485
if (!parsed_.host.
is_nonempty
())
/external/chromium_org/components/policy/core/browser/
url_blacklist_manager.cc
225
if (!parsed.host.
is_nonempty
())
228
if (parsed.scheme.
is_nonempty
())
258
if (parsed.port.
is_nonempty
()) {
272
if (parsed.path.
is_nonempty
())
278
if (parsed.query.
is_nonempty
())
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURL.cpp
136
if (m_parsed.username.
is_nonempty
() || m_parsed.password.
is_nonempty
() || m_parsed.ref.
is_nonempty
()) {
356
if (!file.
is_nonempty
())
396
if (!m_parsed.password.
is_nonempty
())
459
|| !protocolComponent.
is_nonempty
())
694
if (m_string.isNull() || !m_parsed.scheme.
is_nonempty
())
/external/chromium_org/components/autofill/content/browser/wallet/
wallet_service_url.cc
182
if (key.
is_nonempty
() &&
/external/chromium_org/components/google/core/browser/
google_util.cc
84
if ((key.len == 1) && (str[key.begin] == 'q') && value.
is_nonempty
())
/external/chromium_org/url/third_party/mozilla/
url_parse.h
41
bool
is_nonempty
() const {
function in struct:url::Component
url_parse.cc
575
if (!component.
is_nonempty
())
619
if (!path.
is_nonempty
()) {
658
if (!query->
is_nonempty
())
/external/chromium_org/chrome/browser/search_engines/
template_url.cc
158
if (key.
is_nonempty
() && value.
is_nonempty
()) {
501
if (key.
is_nonempty
()) {
[
all
...]
/external/chromium_org/chrome/browser/ui/
elide_url.cc
192
if (parsed.query.
is_nonempty
()) {
/external/chromium_org/chrome/browser/ui/toolbar/
toolbar_model_impl.cc
138
if (key.
is_nonempty
() && query_str.substr(key.begin, key.len) == kChipKey) {
/external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_views.cc
587
(host.
is_nonempty
() || grey_out_url);
604
scheme.
is_nonempty
() && (security_level_ != ToolbarModel::NONE)) {
[
all
...]
Completed in 469 milliseconds