OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FormatUrlType
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/net/base/
net_util.h
43
typedef uint32
FormatUrlType
;
62
NET_EXPORT extern const
FormatUrlType
kFormatUrlOmitNothing;
65
NET_EXPORT extern const
FormatUrlType
kFormatUrlOmitUsernamePassword;
68
NET_EXPORT extern const
FormatUrlType
kFormatUrlOmitHTTP;
72
NET_EXPORT extern const
FormatUrlType
kFormatUrlOmitTrailingSlashOnBareHostname;
75
NET_EXPORT extern const
FormatUrlType
kFormatUrlOmitAll;
net_util_icu.cc
573
const
FormatUrlType
kFormatUrlOmitNothing = 0;
574
const
FormatUrlType
kFormatUrlOmitUsernamePassword = 1 << 0;
575
const
FormatUrlType
kFormatUrlOmitHTTP = 1 << 1;
576
const
FormatUrlType
kFormatUrlOmitTrailingSlashOnBareHostname = 1 << 2;
577
const
FormatUrlType
kFormatUrlOmitAll = kFormatUrlOmitUsernamePassword |
[
all
...]
Completed in 98 milliseconds