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

123456

/external/chromium_org/components/url_fixer/
H A Durl_fixer_unittest.cc23 std::ostream& operator<<(std::ostream& os, const Component& part) {
32 const url::Component scheme;
33 const url::Component username;
34 const url::Component password;
35 const url::Component host;
36 const url::Component port;
37 const url::Component path;
38 const url::Component query;
39 const url::Component ref;
44 url::Component(
[all...]
/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/chromium_org/url/third_party/mozilla/
H A Durl_parse.h20 // Component ------------------------------------------------------------------
23 struct Component { struct in namespace:url
24 Component() : begin(0), len(-1) {} function in struct:url::Component
27 Component(int b, int l) : begin(b), len(l) {} function in struct:url::Component
50 bool operator==(const Component& other) const {
60 inline Component MakeRange(int begin, int end) {
61 return Component(begin, end - begin);
73 // Component scheme;
145 Component scheme;
148 Component usernam
[all...]
H A Durl_parse.cc71 const Component& user,
72 Component* username,
73 Component* password) {
82 *username = Component(user.begin, colon_offset);
88 *password = Component();
94 const Component& serverinfo,
95 Component* hostname,
96 Component* port_num) {
144 const Component& auth,
145 Component* usernam
[all...]
/external/chromium_org/url/
H A Durl_canon_ip.h42 const Component& host,
43 Component components[4]);
45 const Component& host,
46 Component components[4]);
60 const Component& host,
64 const Component& host,
74 const Component& host,
77 const Component& host,
H A Durl_util_internal.h18 const Component& component,
21 const Component& component,
H A Durl_canon_unittest.cc33 Component expected_component;
44 Component expected_component;
54 Component expected_component;
100 void (Replacements<CHAR>::*set)(const CHAR*, const Component&),
107 (rep->*set)(str, Component(0, static_cast<int>(strlen(str))));
241 {"http", "http:", Component(0, 4), true},
242 {"HTTP", "http:", Component(0, 4), true},
243 {" HTTP ", "%20http%20:", Component(0, 10), false},
244 {"htt: ", "htt%3A%20:", Component(0, 9), false},
245 {"\xe4\xbd\xa0\xe5\xa5\xbdhttp", "%E4%BD%A0%E5%A5%BDhttp:", Component(
99 SetupReplComp( void (Replacements<CHAR>::*set)(const CHAR*, const Component&), void (Replacements<CHAR>::*clear)(), Replacements<CHAR>* rep, const CHAR* str) argument
[all...]
H A Durl_canon_stdstring.h59 this->SetScheme(s.data(), Component(0, static_cast<int>(s.length())));
62 this->SetUsername(s.data(), Component(0, static_cast<int>(s.length())));
65 this->SetPassword(s.data(), Component(0, static_cast<int>(s.length())));
68 this->SetHost(s.data(), Component(0, static_cast<int>(s.length())));
71 this->SetPort(s.data(), Component(0, static_cast<int>(s.length())));
74 this->SetPath(s.data(), Component(0, static_cast<int>(s.length())));
77 this->SetQuery(s.data(), Component(0, static_cast<int>(s.length())));
80 this->SetRef(s.data(), Component(0, static_cast<int>(s.length())));
H A Durl_parse_internal.h66 const Component& path,
67 Component* filepath,
68 Component* query,
69 Component* ref);
71 const Component& path,
72 Component* filepath,
73 Component* query,
74 Component* ref);
H A Durl_canon_etc.cc85 const Component& scheme,
87 Component* out_scheme) {
90 *out_scheme = Component(output->length(), 0);
149 const Component& username,
151 const Component& password,
153 Component* out_username,
154 Component* out_password) {
157 *out_username = Component();
158 *out_password = Component();
180 *out_password = Component();
[all...]
H A Durl_canon_query.cc45 bool IsAllASCII(const CHAR* spec, const Component& query) {
72 const Component& query,
86 const Component& query,
94 const Component& query,
119 const Component& query,
122 Component* out_query) {
124 *out_query = Component();
139 const Component& query,
142 Component* out_query) {
148 const Component
[all...]
H A Durl_canon.h277 const Component& scheme,
279 Component* out_scheme);
281 const Component& scheme,
283 Component* out_scheme);
296 const Component& username,
298 const Component& password,
300 Component* out_username,
301 Component* out_password);
303 const Component& username,
305 const Component
[all...]
H A Durl_canon_ip.cc34 const Component& host,
35 Component components[4]) {
46 components[cur_component] = Component(cur_component_begin, component_len);
78 components[cur_component++] = Component();
94 const Component& component,
160 const Component& host,
164 Component components[4];
236 const Component& host,
263 // ==> hex_components[0] = Component(3,2) "aa"
264 // ==> hex_components[1] = Component(
[all...]
H A Durl_canon_fileurl.cc56 const Component& path,
58 Component* out_path) {
75 Component sub_path = MakeRange(after_drive, path.end());
76 Component fake_output_path;
94 new_parsed->username = Component();
95 new_parsed->password = Component();
96 new_parsed->port = Component();
147 const Component& path,
149 Component* out_path) {
155 const Component
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dcomposite_bitmap_glyph.cc36 CompositeBitmapGlyph::Component CompositeBitmapGlyph::GetComponent(
40 return CompositeBitmapGlyph::Component(
62 * CompositeBitmapGlyph::Component class
64 CompositeBitmapGlyph::Component::Component(const Component& rhs) function in class:sfntly::CompositeBitmapGlyph::Component
70 bool CompositeBitmapGlyph::Component::operator==(
71 const CompositeBitmapGlyph::Component& rhs) {
75 CompositeBitmapGlyph::Component& CompositeBitmapGlyph::Component
83 CompositeBitmapGlyph::Component::Component(int32_t glyph_code, function in class:sfntly::CompositeBitmapGlyph::Component
[all...]
H A Dcomposite_bitmap_glyph.h27 class Component { class in class:sfntly::CompositeBitmapGlyph
29 Component(const Component& rhs);
36 bool operator==(const Component& rhs);
37 Component& operator=(const Component& rhs);
40 Component(int32_t glyph_code, int32_t x_offset, int32_t y_offset);
64 Component GetComponent(int32_t component_num) const;
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dcomposite_bitmap_glyph.cc36 CompositeBitmapGlyph::Component CompositeBitmapGlyph::GetComponent(
40 return CompositeBitmapGlyph::Component(
62 * CompositeBitmapGlyph::Component class
64 CompositeBitmapGlyph::Component::Component(const Component& rhs) function in class:sfntly::CompositeBitmapGlyph::Component
70 bool CompositeBitmapGlyph::Component::operator==(
71 const CompositeBitmapGlyph::Component& rhs) {
75 CompositeBitmapGlyph::Component& CompositeBitmapGlyph::Component
83 CompositeBitmapGlyph::Component::Component(int32_t glyph_code, function in class:sfntly::CompositeBitmapGlyph::Component
[all...]
H A Dcomposite_bitmap_glyph.h27 class Component { class in class:sfntly::CompositeBitmapGlyph
29 Component(const Component& rhs);
36 bool operator==(const Component& rhs);
37 Component& operator=(const Component& rhs);
40 Component(int32_t glyph_code, int32_t x_offset, int32_t y_offset);
64 Component GetComponent(int32_t component_num) const;
/external/chromium_org/third_party/WebKit/ManualTests/resources/
H A DCheckerApplet.java3 import java.awt.Component;
/external/chromium_org/net/base/
H A Durl_util.h64 url::Component query_;
66 url::Component key_;
67 url::Component value_;
/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,
/external/chromium_org/chrome/browser/resources/print_preview/settings/
H A Dsettings_section.js11 * @extends {print_preview.Component}
14 print_preview.Component.call(this);
40 __proto__: print_preview.Component.prototype,
81 print_preview.Component.prototype.enterDocument.call(this);
/external/chromium_org/chrome/browser/resources/print_preview/common/
H A Dsearch_box.js9 * Component that renders a search box for searching through destinations.
12 * @extends {print_preview.Component}
15 print_preview.Component.call(this);
52 __proto__: print_preview.Component.prototype,
75 print_preview.Component.prototype.enterDocument.call(this);
81 print_preview.Component.prototype.exitDocument.call(this);
/external/chromium_org/chrome/browser/resources/print_preview/search/
H A Dfedex_tos.js12 * @extends {print_preview.Component}
15 print_preview.Component.call(this);
28 __proto__: print_preview.Component.prototype,
/external/chromium_org/remoting/host/setup/
H A Doauth_helper.cc15 const url::Component component) {
69 url::Component query = url_parsed.query;
70 url::Component key;
71 url::Component value;

Completed in 279 milliseconds

123456