HomeSort by relevance Sort by last modified time
    Searched refs:Component (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/chromium/googleurl/src/
url_canon_internal_file.h 93 ParsedURL::Component sub_path(after_slashes, end - after_slashes);
95 // Give it a fake output component to write into. DoCanonicalizeFile will
96 // compute the full path component.
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);
url_canon_mailtourl.cc 49 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();
url_canon_fileurl.cc 81 const url_parse::Component& path,
83 url_parse::Component* out_path) {
98 // path. Give it a fake output component to write into. DoCanonicalizeFile
99 // will compute the full path component.
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
    [all...]
url_util_unittest.cc 38 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(0, 4))
    [all...]
url_canon_relative.cc 53 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;
203 // Copies a single component from the source to the output. This is used
204 // when resolving relative URLs and a given component is unchanged. Since the
208 const url_parse::Component& source_component,
210 url_parse::Component* output_component) {
212 // This component is not present
    [all...]
url_canon_host.cc 103 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,
url_canon_path.cc 162 // appending directory paths, so the previous path component has and ending
206 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
    [all...]
url_util.cc 95 const url_parse::Component& component,
97 if (!component.is_nonempty())
98 return compare_to[0] == 0; // When component is empty, match empty scheme.
99 return LowerCaseEqualsASCII(&spec[component.begin],
100 &spec[component.end()],
107 bool DoIsStandard(const CHAR* spec, const url_parse::Component& scheme) {
124 url_parse::Component* found_scheme) {
132 url_parse::Component our_scheme;
136 *found_scheme = url_parse::Component();
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
CompoundTransform.java 34 public static abstract class Component {
40 Component(int type, String name) {
74 public static class TranslateComponent extends Component {
90 public static class RotateComponent extends Component {
114 public static class ScaleComponent extends Component {
131 public ArrayList<Component> mTransformComponents;
134 mTransformComponents = new ArrayList<Component>();
155 public void addComponent(Component c) {
165 public void setComponent(int index, Component c) {
170 throw new IllegalArgumentException("Invalid component index")
    [all...]
  /external/proguard/src/proguard/gui/
TabbedPane.java 66 * Adds a component with a given title to the tabbed pane.
69 * @param component the component that will be added as a tab.
71 public Component add(final String title, Component component)
137 cardPanel.add(title, component);
139 return component;
148 * @return the component containing the image.
150 public Component addImage(final Image image
158 JButton component = new JButton(new ImageIcon(image)); local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 105 ICalendar.Component component = new ICalendar.Component(MOCK_COMPONENT_NAME, null); local
112 assertTrue(RecurrenceSet.populateComponent(values, component));
113 List<ICalendar.Property> list = component.getProperties("DTSTART");
117 list = component.getProperties("RRULE");
121 component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
128 assertTrue(RecurrenceSet.populateComponent(values, component));
130 list = component.getProperties("RRULE")
    [all...]
  /external/skia/src/sfnt/
SkOTTable_glyf.h 110 struct Component {
181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix;
202 } component;//[] last element does not set MORE_COMPONENTS member in struct:SkOTTableGlyphData::Composite
204 /** Comes after the last Component if the last component has WE_HAVE_INSTR. */
  /external/llvm/include/llvm/Support/
PathV2.h 28 /// @name Lexical Component Iterator
41 /// Iteration examples. Each component is separated by ',':
52 StringRef Component; ///< The current component. Not necessarily in Path.
66 reference operator*() const { return Component; }
67 pointer operator->() const { return &Component; }
83 /// @returns Iterator initialized with the first component of \a path.
93 /// @returns Iterator initialized with the first reverse component of \a path.
109 /// @brief Remove the last component from \a path unless it is the root dir.
117 /// @param path A path that is modified to not have a file component
    [all...]
  /external/chromium/chrome/browser/net/
url_fixer_upper.cc 33 url_parse::Component UTF8ComponentToUTF16Component(
35 const url_parse::Component& component_utf8) {
37 return url_parse::Component();
45 url_parse::Component component_16(before_component_string_16.length(),
222 const url_parse::Component& part,
234 const url_parse::Component& part,
245 const url_parse::Component& part,
274 const url_parse::Component& part,
285 const url_parse::Component& part,
298 const url_parse::Component& part
    [all...]
  /external/webkit/Source/WebCore/platform/
KURLGooglePrivate.h 69 // Returns the substring of the input identified by the given component.
70 String componentString(const url_parse::Component&) const;
KURLGoogle.cpp 289 String KURLGooglePrivate::componentString(const url_parse::Component& comp) const
465 url_parse::Component path = m_url.m_parsed.path;
469 url_parse::Component file;
609 url_parse::Component protocolComponent;
611 url_parse::Component(0, newProtocol.length()),
618 url_parse::Component(0, newProtocol.length()));
634 url_parse::Component(0, host.length()));
651 url_parse::Component(0, host.length()));
656 replacements.SetPort(CharactersOrEmpty(port), url_parse::Component(0, port.length()));
676 url_parse::Component(0, portStr.length()))
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 11 import net.java.games.input.Component.Identifier;
12 import net.java.games.input.Component.Identifier.Axis;
13 import net.java.games.input.Component.Identifier.Button;
14 import net.java.games.input.Component.POV;
31 Component[] ces = c.getComponents();
36 for (Component comp : ces){
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
RunnerController.java 33 import java.awt.Component;
93 public Component getView() {
202 public Component getTreeCellRendererComponent(JTree tree, Object value,
RuleListController.java 35 import java.awt.Component;
117 public Component getListCellRendererComponent(
  /external/chromium/chrome/browser/
browser_url_handler.cc 56 url_parse::Component(0, strlen(chrome::kViewSourceScheme)));
58 url_parse::Component(0, url->spec().size()));
  /external/chromium/net/http/
http_stream_factory.cc 94 url_parse::Component(0, port_str.size()));
96 url_parse::Component(0, endpoint->host().size()));
  /external/chromium/net/base/
registry_controlled_domain.cc 66 const url_parse::Component host =
105 const url_parse::Component host1 =
107 const url_parse::Component host2 =
120 const url_parse::Component host =
  /external/chromium/net/socket_stream/
socket_stream_job.cc 36 url_parse::Component(0, strlen(kNewScheme)));
  /external/llvm/lib/Support/
PathV2.cpp 35 // Look for this first component in the following order.
157 i.Component = find_first_component(path);
172 // Increment Position to past the current component
173 Position += Component.size();
177 Component = StringRef();
183 bool was_net = Component.size() > 2 &&
184 is_separator(Component[0]) &&
185 Component[1] == Component[0] &&
186 !is_separator(Component[2])
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestChatClient.java 38 import java.awt.Component;
96 public static String getString(Component owner, String title, String message, String initialValue) {

Completed in 515 milliseconds

12 3 4 5