Searched refs:Component (Results 1 - 25 of 92) sorted by relevance

1234

/external/chromium/googleurl/src/
H A Durl_parse.h45 // Component ------------------------------------------------------------------
48 struct Component { struct in namespace:url_parse
49 Component() : begin(0), len(-1) {} function in struct:url_parse::Component
52 Component(int b, int l) : begin(b), len(l) {} function in struct:url_parse::Component
75 bool operator==(const Component& other) const {
85 inline Component MakeRange(int begin, int end) {
86 return Component(begin, end - begin);
98 // url_parse::Component scheme;
167 Component scheme;
170 Component usernam
[all...]
H A Durl_canon_ip.h59 const url_parse::Component& host,
60 url_parse::Component components[4]);
62 const url_parse::Component& host,
63 url_parse::Component components[4]);
78 const url_parse::Component& host,
83 const url_parse::Component& host,
93 const url_parse::Component& host,
96 const url_parse::Component& host,
H A Durl_canon_unittest.cc58 url_parse::Component expected_component;
69 url_parse::Component expected_component;
79 url_parse::Component expected_component;
134 const url_parse::Component&),
141 (rep->*set)(str, url_parse::Component(0, static_cast<int>(strlen(str))));
322 {"http", "http:", url_parse::Component(0, 4), true},
323 {"HTTP", "http:", url_parse::Component(0, 4), true},
324 {" HTTP ", "%20http%20:", url_parse::Component(0, 10), false},
325 {"htt: ", "htt%3A%20:", url_parse::Component(0, 9), false},
326 {"\xe4\xbd\xa0\xe5\xa5\xbdhttp", "%E4%BD%A0%E5%A5%BDhttp:", url_parse::Component(
[all...]
H A Durl_parse_internal.h87 const Component& path,
88 Component* filepath,
89 Component* query,
90 Component* ref);
92 const Component& path,
93 Component* filepath,
94 Component* query,
95 Component* ref);
H A Durl_canon_etc.cc110 const url_parse::Component& scheme,
112 url_parse::Component* out_scheme) {
115 *out_scheme = url_parse::Component(output->length(), 0);
174 const url_parse::Component& username,
176 const url_parse::Component& password,
178 url_parse::Component* out_username,
179 url_parse::Component* out_password) {
182 *out_username = url_parse::Component();
183 *out_password = url_parse::Component();
205 *out_password = url_parse::Component();
[all...]
H A Durl_parse.cc69 const Component& user,
70 Component* username,
71 Component* password) {
80 *username = Component(user.begin, colon_offset);
86 *password = Component();
92 const Component& serverinfo,
93 Component* hostname,
94 Component* port_num) {
142 const Component& auth,
143 Component* usernam
[all...]
H A Durl_canon_stdstring.h99 url_parse::Component(0, static_cast<int>(s.length())));
103 url_parse::Component(0, static_cast<int>(s.length())));
107 url_parse::Component(0, static_cast<int>(s.length())));
111 url_parse::Component(0, static_cast<int>(s.length())));
115 url_parse::Component(0, static_cast<int>(s.length())));
119 url_parse::Component(0, static_cast<int>(s.length())));
123 url_parse::Component(0, static_cast<int>(s.length())));
127 url_parse::Component(0, static_cast<int>(s.length())));
H A Durl_canon.h297 const url_parse::Component& scheme,
299 url_parse::Component* out_scheme);
301 const url_parse::Component& scheme,
303 url_parse::Component* out_scheme);
316 const url_parse::Component& username,
318 const url_parse::Component& password,
320 url_parse::Component* out_username,
321 url_parse::Component* out_password);
323 const url_parse::Component& username,
325 const url_parse::Component
[all...]
H A Durl_canon_query.cc70 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) {
97 const url_parse::Component& query,
111 const url_parse::Component& query,
119 const url_parse::Component& query,
144 const url_parse::Component& query,
147 url_parse::Component* out_query) {
149 *out_query = url_parse::Component();
164 const url_parse::Component& query,
167 url_parse::Component* out_query) {
173 const url_parse::Component
[all...]
H A Durl_canon_ip.cc59 const url_parse::Component& host,
60 url_parse::Component components[4]) {
72 url_parse::Component(cur_component_begin, component_len);
104 components[cur_component++] = url_parse::Component();
121 const url_parse::Component& component,
189 url_parse::Component* out_host) {
207 const url_parse::Component& host,
211 url_parse::Component components[4];
264 const url_parse::Component& host,
290 // ==> hex_components[0] = Component(
[all...]
H A Durl_canon_fileurl.cc81 const url_parse::Component& path,
83 url_parse::Component* out_path) {
100 url_parse::Component sub_path =
102 url_parse::Component fake_output_path;
120 new_parsed->username = url_parse::Component();
121 new_parsed->password = url_parse::Component();
122 new_parsed->port = url_parse::Component();
173 const url_parse::Component& path,
175 url_parse::Component* out_path) {
181 const url_parse::Component
[all...]
H A Durl_util.h94 url_parse::Component* found_scheme);
98 url_parse::Component* found_scheme);
101 url_parse::Component* found_scheme) {
107 url_parse::Component* found_scheme) {
115 const url_parse::Component& scheme);
117 const url_parse::Component& scheme);
122 const url_parse::Component& scheme) {
H A Durl_canon_internal_file.h93 ParsedURL::Component sub_path(after_slashes, end - after_slashes);
97 ParsedURL::Component fake_output_path;
109 new_parsed->username = ParsedURL::Component(0, -1);
110 new_parsed->password = ParsedURL::Component(0, -1);
111 new_parsed->port = ParsedURL::Component(0, -1);
H A Durl_canon_mailtourl.cc49 new_parsed->username = url_parse::Component();
50 new_parsed->password = url_parse::Component();
51 new_parsed->host = url_parse::Component();
52 new_parsed->port = url_parse::Component();
53 new_parsed->ref = url_parse::Component();
H A Durl_util_unittest.cc38 url_parse::Component found_scheme;
46 EXPECT_TRUE(found_scheme == url_parse::Component(0, 4));
51 EXPECT_TRUE(found_scheme == url_parse::Component(0, 4));
57 EXPECT_TRUE(found_scheme == url_parse::Component());
63 EXPECT_TRUE(found_scheme == url_parse::Component(0, 0));
67 EXPECT_TRUE(found_scheme == url_parse::Component());
75 EXPECT_TRUE(found_scheme == url_parse::Component(1, 10));
83 EXPECT_TRUE(found_scheme == url_parse::Component(1, 11));
93 replacements.SetRef("test", url_parse::Component(0, 4));
99 replacements.SetHost("test", url_parse::Component(
[all...]
H A Durl_canon_relative.cc53 const url_parse::Component& base_scheme,
55 const url_parse::Component& cmp_scheme) {
93 url_parse::Component* relative_component) {
101 *relative_component = url_parse::Component(begin, 0);
127 url_parse::Component scheme;
208 const url_parse::Component& source_component,
210 url_parse::Component* output_component) {
213 *output_component = url_parse::Component();
278 const url_parse::Component& relative_component,
286 url_parse::Component pat
[all...]
H A Durl_canon_host.cc103 void ScanHostname(const CHAR* spec, const url_parse::Component& host,
315 const url_parse::Component& host,
321 host_info->out_host = url_parse::Component();
368 const url_parse::Component& host,
370 url_parse::Component* out_host) {
378 const url_parse::Component& host,
380 url_parse::Component* out_host) {
388 const url_parse::Component& host,
395 const url_parse::Component& host,
H A Durl_canon_path.cc206 const url_parse::Component& path,
324 const url_parse::Component& path,
326 url_parse::Component* out_path) {
343 *out_path = url_parse::Component();
351 const url_parse::Component& path,
353 url_parse::Component* out_path) {
358 const url_parse::Component& path,
360 url_parse::Component* out_path) {
365 const url_parse::Component& path,
373 const url_parse::Component
[all...]
/external/chromium/chrome/browser/net/
H A Durl_fixer_upper_unittest.cc26 std::ostream& operator<<(std::ostream& os, const Component& part) {
35 const url_parse::Component scheme;
36 const url_parse::Component username;
37 const url_parse::Component password;
38 const url_parse::Component host;
39 const url_parse::Component port;
40 const url_parse::Component path;
41 const url_parse::Component query;
42 const url_parse::Component ref;
47 url_parse::Component(
[all...]
H A Durl_fixer_upper.h15 struct Component;
69 void OffsetComponent(int offset, url_parse::Component* part);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DIController.java30 import java.awt.Component;
34 public Component getView() ;
/external/webkit/Source/WebCore/manual-tests/resources/
H A DCheckerApplet.java3 import java.awt.Component;
/external/proguard/src/proguard/gui/
H A DMessageDialogRunnable.java35 private final Component parentComponent;
43 * @see JOptionPane#showMessageDialog(Component, Object, String, int)
45 public static void showMessageDialog(Component parentComponent,
66 * @see JOptionPane#showMessageDialog(Component, Object, String, int)
68 public MessageDialogRunnable(Component parentComponent,
H A DTabbedPane.java71 public Component add(final String title, Component component)
150 public Component addImage(final Image image)
221 Component card = cardPanel.getComponent(index);
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_unittest.cc420 using url_parse::Component;
421 Component kInvalidComponent(0, -1);
424 const Component scheme;
425 const Component host;
431 { ASCIIToUTF16("foo/bar baz"), kInvalidComponent, Component(0, 3) },
432 { ASCIIToUTF16("http://foo/bar baz"), Component(0, 4), Component(7, 3) },
433 { ASCIIToUTF16("link:foo.com"), Component(0, 4), kInvalidComponent },
434 { ASCIIToUTF16("www.foo.com:81"), kInvalidComponent, Component(0, 11) },
435 { WideToUTF16(L"\u6d4b\u8bd5"), kInvalidComponent, Component(
[all...]

Completed in 773 milliseconds

1234