HomeSort by relevance Sort by last modified time
    Searched refs:Component (Results 1 - 25 of 200) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium/googleurl/src/
url_parse.h 45 // Component ------------------------------------------------------------------
48 struct Component {
49 Component() : begin(0), len(-1) {}
52 Component(int b, int l) : begin(b), len(l) {}
58 // Returns true if this component is valid, meaning the length is given. Even
64 // Returns true if the given component is specified on false, the component
75 bool operator==(const Component& other) const {
79 int begin; // Byte offset in the string of this component.
80 int len; // Will be -1 if the component is unspecified
    [all...]
url_canon_ip.h 41 // each component will be placed into |components| and it will return true.
59 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,
url_canon_unittest.cc 58 url_parse::Component expected_component;
69 url_parse::Component expected_component;
79 url_parse::Component expected_component;
123 // Sets up a replacement for a single component. This is given pointers to
124 // the set and clear function for the component being replaced, and will
125 // either set the component (if it exists) or clear it (if the replacement
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}
    [all...]
url_parse_internal.h 87 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);
url_canon_etc.cc 110 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...]
url_parse.cc 69 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* username
    [all...]
url_canon_stdstring.h 99 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())));
url_canon.h 275 // corresponding URL component to the given std::string. The spec and the
276 // previously-identified range of that component are the input. The range of
277 // the canonicalized component will be written to the output component.
287 // Scheme: Appends the scheme and colon to the URL. The output component will
297 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
    [all...]
url_canon_query.cc 70 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& query
    [all...]
  /external/chromium/chrome/browser/net/
url_fixer_upper_unittest.cc 26 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(0, 4), // schem
    [all...]
  /external/chromium_org/chrome/common/net/
url_fixer_upper_unittest.cc 26 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(0, 4), // schem
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
IController.java 30 import java.awt.Component;
34 public Component getView() ;
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 20 // Component ------------------------------------------------------------------
23 struct Component {
24 Component() : begin(0), len(-1) {}
27 Component(int b, int l) : begin(b), len(l) {}
33 // Returns true if this component is valid, meaning the length is given. Even
39 // Returns true if the given component is specified on false, the component
50 bool operator==(const Component& other) const {
54 int begin; // Byte offset in the string of this component.
55 int len; // Will be -1 if the component is unspecified
    [all...]
  /external/chromium_org/url/
url_canon_ip.h 24 // each component will be placed into |components| and it will return true.
42 const url_parse::Component& host,
43 url_parse::Component components[4]);
45 const url_parse::Component& host,
46 url_parse::Component components[4]);
61 const url_parse::Component& host,
66 const url_parse::Component& host,
76 const url_parse::Component& host,
79 const url_parse::Component& host,
url_canon_unittest.cc 33 url_parse::Component expected_component;
44 url_parse::Component expected_component;
54 url_parse::Component expected_component;
110 // Sets up a replacement for a single component. This is given pointers to
111 // the set and clear function for the component being replaced, and will
112 // either set the component (if it exists) or clear it (if the replacement
121 const url_parse::Component&),
128 (rep->*set)(str, url_parse::Component(0, static_cast<int>(strlen(str))));
309 {"http", "http:", url_parse::Component(0, 4), true},
310 {"HTTP", "http:", url_parse::Component(0, 4), true}
    [all...]
url_parse_internal.h 62 const Component& path,
63 Component* filepath,
64 Component* query,
65 Component* ref);
67 const Component& path,
68 Component* filepath,
69 Component* query,
70 Component* ref);
url_util_internal.h 22 const url_parse::Component& component,
25 const url_parse::Component& component,
url_canon_etc.cc 85 const url_parse::Component& scheme,
87 url_parse::Component* out_scheme) {
90 *out_scheme = url_parse::Component(output->length(), 0);
149 const url_parse::Component& username,
151 const url_parse::Component& password,
153 url_parse::Component* out_username,
154 url_parse::Component* out_password) {
157 *out_username = url_parse::Component();
158 *out_password = url_parse::Component();
180 *out_password = url_parse::Component();
    [all...]
url_canon_stdstring.h 75 url_parse::Component(0, static_cast<int>(s.length())));
79 url_parse::Component(0, static_cast<int>(s.length())));
83 url_parse::Component(0, static_cast<int>(s.length())));
87 url_parse::Component(0, static_cast<int>(s.length())));
91 url_parse::Component(0, static_cast<int>(s.length())));
95 url_parse::Component(0, static_cast<int>(s.length())));
99 url_parse::Component(0, static_cast<int>(s.length())));
103 url_parse::Component(0, static_cast<int>(s.length())));
url_canon.h 255 // corresponding URL component to the given std::string. The spec and the
256 // previously-identified range of that component are the input. The range of
257 // the canonicalized component will be written to the output component.
267 // Scheme: Appends the scheme and colon to the URL. The output component will
277 const url_parse::Component& scheme,
279 url_parse::Component* out_scheme);
281 const url_parse::Component& scheme,
283 url_parse::Component* out_scheme);
296 const url_parse::Component& username
    [all...]
url_canon_query.cc 45 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) {
72 const url_parse::Component& query,
86 const url_parse::Component& query,
94 const url_parse::Component& query,
119 const url_parse::Component& query,
122 url_parse::Component* out_query) {
124 *out_query = url_parse::Component();
139 const url_parse::Component& query,
142 url_parse::Component* out_query) {
148 const url_parse::Component& query
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.h 27 class Component {
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;
composite_bitmap_glyph.cc 36 CompositeBitmapGlyph::Component CompositeBitmapGlyph::GetComponent(
40 return CompositeBitmapGlyph::Component(
62 * CompositeBitmapGlyph::Component class
64 CompositeBitmapGlyph::Component::Component(const Component& rhs)
70 bool CompositeBitmapGlyph::Component::operator==(
71 const CompositeBitmapGlyph::Component& rhs) {
75 CompositeBitmapGlyph::Component& CompositeBitmapGlyph::Component::operator=
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/resources/
CheckerApplet.java 3 import java.awt.Component;
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 39 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
41 component.addProperty(new ICalendar.Property("prop2", "value3"));
42 component.addProperty(new ICalendar.Property("prop1", "value1"));
43 component.addProperty(new ICalendar.Property("prop1", "value2"));
44 assertEquals(text, component.toString());
57 ICalendar.Component parent = new ICalendar.Component("DUMMY", null);
59 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent)
75 ICalendar.Component component = ICalendar.parseComponent(text); local
93 ICalendar.Component component local
110 ICalendar.Component component local
146 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
250 ICalendar.Component component = ICalendar.parseComponent(text); local
259 ICalendar.Component component = ICalendar.parseComponent(text); local
268 ICalendar.Component component = ICalendar.parseComponent(text); local
    [all...]

Completed in 687 milliseconds

1 2 3 4 5 6 7 8