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

1 2 34 5 6 7 8

  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
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_org/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc 37 url_parse::Component query = url.parsed_for_possibly_invalid_spec().query;
38 url_parse::Component key, value;
  /external/chromium_org/content/browser/
browser_url_handler_impl.cc 56 url_parse::Component(0, strlen(kViewSourceScheme)));
58 url_parse::Component(0, url->spec().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/chromium_org/net/base/registry_controlled_domains/
registry_controlled_domain.cc 197 const url_parse::Component host =
227 const url_parse::Component host1 =
229 const url_parse::Component host2 =
242 const url_parse::Component host =
  /external/llvm/lib/Support/
Path.cpp 42 // Look for this first component in the following order.
176 i.Component = find_first_component(path);
191 // Increment Position to past the current component
192 Position += Component.size();
196 Component = StringRef();
202 bool was_net = Component.size() > 2 &&
203 is_separator(Component[0]) &&
204 Component[1] == Component[0] &&
205 !is_separator(Component[2])
    [all...]
  /external/chromium_org/url/
url_canon_pathurl.cc 18 const url_parse::Component& component,
21 url_parse::Component* new_parsed) {
23 if (component.is_valid()) {
30 int end = component.end();
31 for (int i = component.begin; i < end; i++) {
url_canon_internal.h 357 const url_parse::Component& query,
361 // Applies the replacements to the given component source. The component source
400 const url_parse::Component& path,
404 const url_parse::Component& path,
url_canon_internal.cc 61 // Overrides one component, see the url_canon::Replacements structure for
62 // what the various combionations of source pointer and component mean.
64 const url_parse::Component& override_component,
66 url_parse::Component* dest_component) {
77 // holding place. The component indentifying the portion of the buffer used in
82 // may get resized while we're overriding a subsequent component. Instead, the
87 const url_parse::Component& override_component,
89 url_parse::Component* dest_component) {
93 // Non-"valid" component (means delete), so we need to preserve that.
94 *dest_component = url_parse::Component();
    [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) {
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceSetTest.java 133 ICalendar.Component recurrenceComponent =
134 new ICalendar.Component("DUMMY", null /* parent */);
  /frameworks/rs/
rsElement.h 89 const Component & getComponent() const {return mComponent;}
154 Component mComponent;
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymactoolbox.h 106 extern PyObject *CmpObj_New(Component);
107 extern int CmpObj_Convert(PyObject *, Component *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymactoolbox.h 106 extern PyObject *CmpObj_New(Component);
107 extern int CmpObj_Convert(PyObject *, Component *);
  /external/chromium_org/net/socket_stream/
socket_stream_job.cc 36 url_parse::Component(0, strlen(kNewScheme)));
  /external/clang/utils/TableGen/
TableGenBackends.h 47 const std::string &Component);
  /external/chromium/googleurl/src/
url_canon_internal.h 375 const url_parse::Component& query,
379 // Applies the replacements to the given component source. The component source
418 const url_parse::Component& path,
422 const url_parse::Component& path,
url_canon_internal.cc 85 // Overrides one component, see the url_canon::Replacements structure for
86 // what the various combionations of source pointer and component mean.
88 const url_parse::Component& override_component,
90 url_parse::Component* dest_component) {
101 // holding place. The component indentifying the portion of the buffer used in
106 // may get resized while we're overriding a subsequent component. Instead, the
111 const url_parse::Component& override_component,
113 url_parse::Component* dest_component) {
117 // Non-"valid" component (means delete), so we need to preserve that.
118 *dest_component = url_parse::Component();
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/input/awt/
AwtMouseInput.java 65 private Component component; field in class:AwtMouseInput
99 public void setInputSource(Component comp){
100 if (component != null){
101 component.removeMouseListener(this);
102 component.removeMouseMotionListener(this);
103 component.removeMouseWheelListener(this);
119 component = comp;
120 component.addMouseListener(this);
121 component.addMouseMotionListener(this)
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc 227 url_parse::Component* components[] = {
377 // If there is more than one recognized non-host component, this is likely to
426 url_parse::Component* scheme,
427 url_parse::Component* host) {
446 *scheme = url_parse::Component(
453 *host = url_parse::Component(
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 181 * EXRULE, and EXDATE values extracted from the parsed iCalendar component.
182 * @param component The iCalendar component containing the desired
185 * @return true if the component contained the necessary information
190 public static boolean populateContentValues(ICalendar.Component component,
194 component.getFirstProperty("DTSTART");
210 String duration = computeDuration(start, component);
211 String rrule = flattenProperties(component, "RRULE");
212 String rdate = extractDates(component.getFirstProperty("RDATE"))
    [all...]
  /external/chromium_org/net/cookies/
canonical_cookie.cc 168 replacements.SetScheme("http", url_parse::Component(0, 4));
286 url_parse::Component path_component(0, cookie_path.length());
288 url_parse::Component canon_path_component;

Completed in 9114 milliseconds

1 2 34 5 6 7 8