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

1 23 4 5 6 7 8

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/
UnifiedContentBorder.java 28 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
38 public Insets getBorderInsets(Component component) {
  /packages/services/Telecomm/src/com/android/server/telecom/components/
BluetoothPhoneService.java 29 public final class BluetoothPhoneService extends Service implements TelecomSystem.Component {
TelecomBroadcastReceiver.java 30 extends BroadcastReceiver implements TelecomSystem.Component {
PrimaryCallReceiver.java 16 public class PrimaryCallReceiver extends BroadcastReceiver implements TelecomSystem.Component {
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
36 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
39 public static class Component {
45 * Creates a new component with the provided name.
46 * @param name The name of the component.
48 public Component(String name, Component parent) {
53 * Adds a Property to this component.
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/cycle/
Cycles.java 18 import dagger.Component;
136 @Component(modules = CycleMapModule.class)
142 @Component
152 @Component
  /external/dagger2/core/src/main/java/dagger/
Component.java 33 * have the name of the type annotated with {@code @Component} prepended with {@code Dagger}. For
34 * example, {@code @Component interface MyComponent {...}} will produce an implementation named
37 * <a name="component-methods">
38 * <h2>Component methods</h2>
41 * <p>Every type annotated with {@code @Component} must contain at least one abstract component
42 * method. Component methods may have any name, but must have signatures that conform to either
59 * of the component to request provision any number of times by calling {@link Provider#get}. A
110 * <p>Component implementations are primarily instantiated via a generated
112 * is obtained using the {@code builder()} method on the component implementation
    [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/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkClassChecker.java 24 import dagger.Component;
88 @Component(modules = {
MainComponent.java 28 import dagger.Component;
33 * The main component used when running caliper.
36 @Component(modules = {
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
BasicComponent.java 18 import dagger.Component;
23 @Component(modules = PrimitivesModule.class)
MultibindingComponent.java 18 import dagger.Component;
27 @Component(
  /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. */
  /frameworks/av/services/audiopolicy/enginedefault/
Android.mk 3 # Component build
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-api/1.5/
gmaven-runtime-api-1.5.jar 
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentProcessingStep.java 23 import dagger.Component;
35 * A {@link ProcessingStep} that is responsible for dealing with the {@link Component} annotation
59 Component.class,
75 return ImmutableSet.<Class<? extends Annotation>>of(Component.class, Component.Builder.class,
83 processComponentBuilders(elementsByAnnotation.get(Component.Builder.class));
145 * Returns true if the component's report is clean, its builder report is clean, and all
152 Element component = report.report().subject();
157 ValidationReport<?> builderReport = builderReportsByComponent.get(component);
  /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/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoUtility.java 10 import java.awt.Component;
55 Component[] components = cont.getComponents();
75 Call AFTER fixGridBag, passing in the container, the component, and the
78 public static void setInsets(Container cont, Component comp, Insets insets) {
  /frameworks/av/services/audiopolicy/engineconfigurable/
Android.mk 5 # Component build
  /external/llvm/lib/Support/
Path.cpp 46 // Look for this first component in the following order.
235 i.Component = find_first_component(path);
250 // Increment Position to past the current component
251 Position += Component.size();
255 Component = StringRef();
261 bool was_net = Component.size() > 2 &&
262 is_separator(Component[0]) &&
263 Component[1] == Component[0] &&
264 !is_separator(Component[2])
    [all...]

Completed in 1351 milliseconds

1 23 4 5 6 7 8