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

1 2 3 4 5 6 7

  /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;
  /packages/apps/Browser/src/com/android/browser/
UrlUtils.java 42 String component = hostComponents[googleComponent]; local
43 if (!"google".equals(component)) {
45 (!"co".equals(component) && !"com".equals(component))) {
  /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/
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
92 ICalendar.Component component local
109 ICalendar.Component component local
145 ICalendar.Component component = new ICalendar.Component("DUMMY", null); local
249 ICalendar.Component component = ICalendar.parseComponent(text); local
258 ICalendar.Component component = ICalendar.parseComponent(text); local
267 ICalendar.Component component = ICalendar.parseComponent(text); local
    [all...]
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...]
  /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)
  /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...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_core/
SEC_OMX_Component_Register.c 20 * @brief SEC OpenMAX IL Component Register
106 SEC_OSAL_Strcpy(componentList[totalCompNum].component.componentName, secComponentsTemp[i]->componentName);
108 SEC_OSAL_Strcpy(componentList[totalCompNum].component.roles[j], secComponentsTemp[i]->roles[j]);
109 componentList[totalCompNum].component.totalRoleNum = secComponentsTemp[i]->totalRoleNum;
129 /* not a component name line. skip */
157 OMX_ERRORTYPE SEC_OMX_ComponentAPICheck(OMX_COMPONENTTYPE component)
161 if ((NULL == component.GetComponentVersion) ||
162 (NULL == component.SendCommand) ||
163 (NULL == component.GetParameter) ||
164 (NULL == component.SetParameter) |
    [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);
  /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;
  /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);
157 final ComponentName component = applicationInfo.intent.getComponent(); local
158 if (packageName.equals(component.getPackageName())) {
160 mIconCache.remove(component);
182 * Returns whether <em>apps</em> contains <em>component</em>
214 final ComponentName component = info.intent.getComponent(); local
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Sources.java 31 * Creates a new source for a specific component.
32 * @param component Name of the component to search
33 * @return a new {@code Source} corresponding to {@code component}.
35 Source createSourceFor(ComponentName 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;
  /hardware/qcom/media/mm-core/omxcore/src/common/
omx_core_cmp.cpp 33 operate directly on the component.
49 OMX_COMPONENTTYPE* component = &(pThis->m_cmp); local
52 component->nSize = sizeof(OMX_COMPONENTTYPE);
53 component->nVersion.nVersion = OMX_SPEC_VERSION;
54 component->pApplicationPrivate = 0;
55 component->pComponentPrivate = obj_ptr;
57 component->AllocateBuffer = &qc_omx_component_allocate_buffer;
58 component->FreeBuffer = &qc_omx_component_free_buffer;
59 component->GetParameter = &qc_omx_component_get_parameter;
60 component->SetParameter = &qc_omx_component_set_parameter
    [all...]
  /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");
190 String duration = computeDuration(start, component);
191 String rrule = flattenProperties(component, "RRULE");
192 String rdate = extractDates(component.getFirstProperty("RDATE"))
    [all...]
  /device/samsung/crespo/libstagefrighthw/
SEC_OMX_Plugin.h 33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
  /external/webkit/WebCore/platform/chromium/
FileSystemChromium.cpp 65 String pathByAppendingComponent(const String& path, const String& component)
67 return ChromiumBridge::pathByAppendingComponent(path, component);
  /hardware/msm7k/libstagefrighthw/
QComOMXPlugin.h 33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
  /hardware/qcom/media/libstagefrighthw/
QComOMXPlugin.h 33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);
  /hardware/ti/omap3/libstagefrighthw/
TIOMXPlugin.h 33 OMX_COMPONENTTYPE **component);
36 OMX_COMPONENTTYPE *component);

Completed in 1421 milliseconds

1 2 3 4 5 6 7