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

1 23 4 5

  /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 101 const Component & getComponent() const {return mComponent;}
166 Component mComponent;
  /external/clang/utils/TableGen/
TableGenBackends.h 46 const std::string &Component);
ClangDiagnosticsEmitter.cpp 478 const std::string &Component) {
480 if (!Component.empty()) {
481 std::string ComponentName = StringRef(Component).upper();
520 // Filter by component.
521 if (!Component.empty() && Component != R.getValueAsString("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...]
url_parse_unittest.cc 107 const url_parse::Component& component) {
108 // If the component is nonexistant (length == -1), it should begin at 0.
109 EXPECT_TRUE(component.len >= 0 || component.len == -1);
112 EXPECT_LE(0, component.begin);
114 // A NULL reference means the component should be nonexistant.
116 return component.len == -1;
117 if (component.len < 0)
120 if (strlen(reference) != static_cast<size_t>(component.len)
169 Parsed::ComponentType component; member in struct:CountCase
    [all...]
gurl.h 118 // the individual component getters below.
240 // empty if the component is empty or is not present.
270 // URL component exists in this URL. Note that existance is different than
351 // Returns the substring of the input identified by the given component.
352 std::string ComponentString(const url_parse::Component& comp) const {
url_canon_stdurl.cc 100 new_parsed->path = url_parse::Component(output->length(), 1);
url_parse_file.cc 86 parsed->host = Component(after_slashes, host_len);
95 // component. As in "file://localhost/c:/", we get "c:/" out. We want to
217 // file: URL with exactly 2 slashes is considered to have a host component.
gurl.cc 341 url_parse::Component file_component;
361 url_parse::Component h(parsed_.host);
gurl_unittest.cc 23 const url_parse::Component&),
27 url_parse::Component comp;
  /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...]
AwtKeyInput.java 38 import java.awt.Component;
57 private Component component; field in class:AwtKeyInput
68 public void setInputSource(Component comp){
70 if (component != null){
71 component.removeKeyListener(this);
74 component = comp;
75 component.addKeyListener(this);
  /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/clang/lib/CodeGen/
CGVTables.cpp 518 VTableComponent Component = Components[I];
522 switch (Component.getKind()) {
525 Component.getVCallOffset().getQuantity());
530 Component.getVBaseOffset().getQuantity());
535 Component.getOffsetToTop().getQuantity());
547 switch (Component.getKind()) {
549 llvm_unreachable("Unexpected vtable component kind");
551 GD = Component.getFunctionDecl();
554 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Complete);
557 GD = GlobalDecl(Component.getDestructorDecl(), Dtor_Deleting)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
WorkSpaceController.java 73 public Component getEmbeddedView() {
212 public Component getView() {
  /external/chromium/chrome/browser/autocomplete/
autocomplete.h 250 url_parse::Component* scheme,
251 url_parse::Component* host);
    [all...]
autocomplete.cc 215 url_parse::Component* components[] = {
409 url_parse::Component* scheme,
410 url_parse::Component* host) {
429 *scheme = url_parse::Component(
436 *host = url_parse::Component(
518 url_parse::Component scheme;
    [all...]
  /external/chromium/chrome/browser/
session_history_uitest.cc 346 ref_params.SetRef("a", url_parse::Component(0, 1));
352 ref_params.SetRef("b", url_parse::Component(0, 1));
358 ref_params.SetRef("c", url_parse::Component(0, 1));
  /external/proguard/src/proguard/gui/
ClassSpecificationsPanel.java 170 * given key, to the given component.
172 private static JComponent tip(JComponent component, String messageKey)
174 component.setToolTipText(msg(messageKey));
176 return component;
200 public Component getListCellRendererComponent(JList list,
MemberSpecificationsPanel.java 221 public Component getListCellRendererComponent(JList list,
268 * given key, to the given component.
270 private static JComponent tip(JComponent component, String messageKey)
272 component.setToolTipText(msg(messageKey));
274 return component;
  /external/webkit/Source/WebCore/platform/audio/mac/
AudioDestinationMac.cpp 78 Component comp;
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]
  /external/chromium/net/base/
net_util.cc 597 // Returns true if the given Unicode host component is safe to display to the
665 // by whether a component is a single script or not. This will block
694 // Converts one component of a host (between dots) to IDN if safe. The result
706 // Only transform if the input can be an IDN component.
817 // If |component| is valid, its begin is incremented by |delta|.
818 void AdjustComponent(int delta, url_parse::Component* component) {
819 if (!component->is_valid())
822 DCHECK(delta >= 0 || component->begin >= -delta);
823 component->begin += delta
    [all...]

Completed in 494 milliseconds

1 23 4 5