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

1 2 3 4 5 6

  /external/junit/src/junit/swingui/
MacProgressBar.java 10 private JTextField component; field in class:MacProgressBar
12 public MacProgressBar(JTextField component) {
14 this.component= component;
18 component.setBackground(getStatusColor());
  /external/skia/include/core/
SkUnPreMultiply.h 52 static U8CPU ApplyScale(Scale scale, U8CPU component) {
53 SkASSERT(component <= 255);
54 return (scale * component + (1 << 23)) >> 24;
  /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...]
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
createbug.py 38 Options.component,
45 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], component=self._options.component, cc=self._options.cc)
  /external/opencore/protocols/systems/3g-324m_pvterminal/h324/tsc/src/
tsc_componentregistry.cpp 57 TSC_component* component = NULL; local
60 component = OSCL_NEW(TSC_component,
62 aInterfacePtr = (PVMFComponentInterface*)component;
64 return component;
  /packages/apps/Gallery3D/src/com/cooliris/media/
PathBarLayer.java 31 private final ArrayList<Component> mComponents = new ArrayList<Component>();
35 private Component mTouchItem = null;
46 mComponents.add(new Component(icon, label, action, 0));
55 final Component component = mComponents.get(i); local
56 if (component != null) {
57 if (component.animatedIcons != null) {
58 component.animatedIcons = null;
61 component.animatedIcons = icons
164 Component component = mComponents.get(i); local
186 Component component = mComponents.get(i); local
205 Component component = mComponents.get(i); local
254 final Component component = mComponents.get(i); local
292 Component component = mComponents.get(i); local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 104 ICalendar.Component component = new ICalendar.Component(MOCK_COMPONENT_NAME, null); local
111 assertTrue(RecurrenceSet.populateComponent(values, component));
112 List<ICalendar.Property> list = component.getProperties("DTSTART");
116 list = component.getProperties("RRULE");
120 component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
127 assertTrue(RecurrenceSet.populateComponent(values, component));
129 list = component.getProperties("RRULE")
    [all...]
ICalendarTest.java 38 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
40 component.addProperty(new ICalendar.Property("prop2", "value3"));
41 component.addProperty(new ICalendar.Property("prop1", "value1"));
42 component.addProperty(new ICalendar.Property("prop1", "value2"));
43 assertEquals(text, component.toString());
56 ICalendar.Component parent = new ICalendar.Component("DUMMY", null);
58 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent)
74 ICalendar.Component component = ICalendar.parseComponent(text); local
102 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
206 ICalendar.Component component = ICalendar.parseComponent(text); local
215 ICalendar.Component component = ICalendar.parseComponent(text); local
224 ICalendar.Component component = ICalendar.parseComponent(text); local
    [all...]
  /frameworks/base/awt/java/awt/color/
ColorSpace.java 30 * methods for arrays of color component operations.
239 * Gets the name of the component for the specified component index.
242 * the index of the component.
243 * @return the name of the component.
247 // awt.16A=Invalid component index: {0}
251 return "Unnamed color component #" + idx; //$NON-NLS-1$
297 * Gets the minimum normalized color component value for the specified
298 * component.
300 * @param component
    [all...]
ICC_ProfileRGB.java 50 * The Constant REDCOMPONENT indicates the red component.
55 * The Constant GREENCOMPONENT indicates the green component.
60 * The Constant BLUECOMPONENT indicates the blue component.
64 // awt.15E=Unknown component. Must be REDCOMPONENT, GREENCOMPONENT or BLUECOMPONENT.
74 * @param component
79 public short[] getTRC(int component) {
80 switch (component) {
96 * @param component
101 public float getGamma(int component) {
102 switch (component) {
    [all...]
  /frameworks/base/include/media/stagefright/
OMXPluginBase.h 40 OMX_COMPONENTTYPE **component) = 0;
43 OMX_COMPONENTTYPE *component) = 0;
  /frameworks/base/media/libstagefright/omx/
OMXPVCodecsPlugin.h 33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
OMXPVCodecsPlugin.cpp 37 OMX_COMPONENTTYPE **component) {
39 reinterpret_cast<OMX_HANDLETYPE *>(component),
46 OMX_COMPONENTTYPE *component) {
47 return OMX_MasterFreeHandle(component);
OMXMaster.h 38 OMX_COMPONENTTYPE **component);
41 OMX_COMPONENTTYPE *component);
OMXMaster.cpp 78 LOGE("A component of name '%s' already exists, ignoring this one.",
107 OMX_COMPONENTTYPE **component) {
110 *component = NULL;
120 plugin->makeComponentInstance(name, callbacks, appData, component);
126 mPluginByInstance.add(*component, plugin);
132 OMX_COMPONENTTYPE *component) {
135 ssize_t index = mPluginByInstance.indexOfKey(component);
144 return plugin->destroyComponentInstance(component);
  /packages/apps/Camera/src/com/android/camera/ui/
GLView.java 138 public void addComponent(GLView component) {
142 mComponents.add(component);
143 component.onAddToParent(this);
146 public boolean removeComponent(GLView component) {
148 if (mComponents.remove(component)) {
149 component.onRemoveFromParent(this);
194 GLView component = getComponent(i); local
195 if (component.getVisibility() != GLView.VISIBLE
196 && component.mAnimation == null) continue;
197 renderChild(view, gl, component);
272 GLView component = getComponent(i); local
    [all...]
MeasureHelper.java 28 public MeasureHelper(GLView component) {
29 mComponent = component;
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzGL.m 240 GLint component;
243 glGetIntegerv (GL_RED_BITS, &component); bits += component;
244 glGetIntegerv (GL_GREEN_BITS,&component); bits += component;
245 glGetIntegerv (GL_BLUE_BITS, &component); bits += component;
246 glGetIntegerv (GL_ALPHA_BITS, &component); bits += component;
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 107 final ComponentName component = info.intent.getComponent(); local
108 if (packageName.equals(component.getPackageName())) {
127 final ComponentName component = applicationInfo.intent.getComponent(); local
128 if (packageName.equals(component.getPackageName())) {
129 if (!findActivity(matches, component)) {
131 mIconCache.remove(component);
184 * Returns whether <em>apps</em> contains <em>component</em>.
186 private static boolean findActivity(List<ResolveInfo> apps, ComponentName component) {
187 final String className = component.getClassName();
198 * Returns whether <em>apps</em> contains <em>component</em>
216 final ComponentName component = info.intent.getComponent(); local
    [all...]
IconCache.java 105 ComponentName component = intent.getComponent(); local
107 if (resolveInfo == null || component == null) {
111 CacheEntry entry = cacheLocked(component, resolveInfo);
116 public Bitmap getIcon(ComponentName component, ResolveInfo resolveInfo) {
118 if (resolveInfo == null || component == null) {
122 CacheEntry entry = cacheLocked(component, resolveInfo);
  /frameworks/base/core/java/android/pim/
RecurrenceSet.java 162 * EXRULE, and EXDATE values extracted from the parsed iCalendar component.
163 * @param component The iCalendar component containing the desired
166 * @return true if the component contained the necessary information
171 public static boolean populateContentValues(ICalendar.Component component,
174 component.getFirstProperty("DTSTART");
188 String duration = computeDuration(start, component);
189 String rrule = flattenProperties(component, "RRULE");
190 String rdate = extractDates(component.getFirstProperty("RDATE"))
    [all...]
ICalendar.java 57 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
60 public static class Component {
75 private final Component mParent; // see if we can get rid of this
76 private LinkedList<Component> mChildren = null;
81 * Creates a new component with the provided name.
82 * @param name The name of the component.
84 public Component(String name, Component parent) {
90 * Returns the name of the component.
91 * @return The name of the component
    [all...]
  /external/webkit/WebCore/platform/chromium/
FileSystemChromium.cpp 65 String pathByAppendingComponent(const String& path, const String& component)
67 return ChromiumBridge::pathByAppendingComponent(path, component);
  /hardware/ti/omap3/libstagefrighthw/
TIOMXPlugin.h 33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
  /external/icu4c/layout/
MarkToLigaturePosnSubtables.cpp 67 le_int32 component = ligatureIterator.getMarkComponent(markPosition); local
69 if (component >= componentCount) {
71 component = componentCount - 1;
74 const ComponentRecord *componentRecord = &ligatureAttachTable->componentRecordArray[component * mcCount];

Completed in 451 milliseconds

1 2 3 4 5 6