Searched defs:component (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/media/libstagefright/omx/
H A DOMXPVCodecsPlugin.cpp37 OMX_COMPONENTTYPE **component) {
39 reinterpret_cast<OMX_HANDLETYPE *>(component),
46 OMX_COMPONENTTYPE *component) {
47 return OMX_MasterFreeHandle(component);
33 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
45 destroyComponentInstance( OMX_COMPONENTTYPE *component) argument
H A DOMXMaster.cpp82 LOGE("A component of name '%s' already exists, ignoring this one.",
111 OMX_COMPONENTTYPE **component) {
114 *component = NULL;
124 plugin->makeComponentInstance(name, callbacks, appData, component);
130 mPluginByInstance.add(*component, plugin);
136 OMX_COMPONENTTYPE *component) {
139 ssize_t index = mPluginByInstance.indexOfKey(component);
148 return plugin->destroyComponentInstance(component);
107 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
135 destroyComponentInstance( OMX_COMPONENTTYPE *component) argument
/frameworks/base/cmds/service/
H A Dservice.cpp156 char* component = NULL; local
188 else if (strcmp(key, "component") == 0)
190 component = value;
212 writeString16(data, component);
269 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/base/core/java/android/pim/
H A DRecurrenceSet.java162 * 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, argument
174 component.getFirstProperty("DTSTART");
190 String duration = computeDuration(start, component);
191 String rrule = flattenProperties(component, "RRULE");
192 String rdate = extractDates(component.getFirstProperty("RDATE"));
193 String exrule = flattenProperties(component, "EXRUL
234 populateComponent(Cursor cursor, ICalendar.Component component) argument
303 populateComponent(ContentValues values, ICalendar.Component component) argument
362 addPropertiesForRuleStr(ICalendar.Component component, String propertyName, String ruleStr) argument
422 addPropertyForDateStr(ICalendar.Component component, String propertyName, String dateStr) argument
443 computeDuration(Time start, ICalendar.Component component) argument
477 flattenProperties(ICalendar.Component component, String name) argument
[all...]
H A DICalendar.java57 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
81 * Creates a new component with the provided name.
82 * @param name The name of the component.
90 * Returns the name of the component.
91 * @return The name of the component.
98 * Returns the parent of this component.
99 * @return The parent of this component.
117 * Adds a child component to this component.
118 * @param child The child component
428 parseComponentImpl(Component component, String text) argument
467 parseLine(String line, ParserState state, Component component) argument
656 parseComponent(Component component, String text) argument
[all...]
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dslice.cpp620 int component, SubBlock_indx, block_x, block_y; local
626 for (component = 0; component < 4; component++) /* partition index */
628 block_x = ((component & 1) << 1);
629 block_y = ((component >> 1) << 1);
H A Dpred_intra.cpp28 int component, SubBlock_indx, temp; local
59 for (component = 0; component < 4; component++)
61 block_x = ((component & 1) << 1);
62 block_y = ((component >> 1) << 1);
108 if (component&1)
1491 int component, j; local
1592 for (component = 0; component <
1627 int component, j; local
1660 int component, j; local
1687 int component, j; local
[all...]
/frameworks/base/core/java/android/app/
H A DSuggestionsAdapter.java604 // First check the component that the suggestion is originally from
607 ComponentName component = ComponentName.unflattenFromString(c);
608 if (component != null) {
609 Drawable drawable = getActivityIconWithCache(component);
614 Log.w(LOG_TAG, "Bad component name: " + c);
618 // Then check the component that gave us the suggestion
632 * @param component Name of an activity.
636 private Drawable getActivityIconWithCache(ComponentName component) { argument
638 String componentIconKey = component.flattenToShortString();
645 Drawable drawable = getActivityIcon(component);
659 getActivityIcon(ComponentName component) argument
[all...]
H A DInstrumentation.java232 * Returns complete component name of this instrumentation.
234 * @return Returns the complete component name for this instrumentation.
346 * activity component is resolved before talking with the activity manager
1386 Context instrContext, Context appContext, ComponentName component,
1392 mComponent = component;
1385 init(ActivityThread thread, Context instrContext, Context appContext, ComponentName component, IInstrumentationWatcher watcher) argument
/frameworks/base/media/libstagefright/codecs/avc/enc/src/
H A Dslice.cpp924 int component, SubBlock_indx, block_x, block_y; local
931 for (component = 0; component < 4; component++) /* partition index */
933 block_x = ((component & 1) << 1);
934 block_y = ((component >> 1) << 1);
H A Dintra_est.cpp1377 int i, j, component; local
1598 for (component = 0; component < 2; component++)
2012 int component, SubBlock_indx, temp; local
/frameworks/base/services/java/com/android/server/
H A DAppWidgetService.java680 private Provider parseProviderInfoXml(ComponentName component, ResolveInfo ri) { argument
690 + "AppWidget provider '" + component + '\'');
705 + " AppWidget provider '" + component + '\'');
716 info.provider = component;
741 info.configure = new ComponentName(component.getPackageName(), className);
750 Slog.w(TAG, "XML parsing failed for AppWidget provider '" + component + '\'', e);
1189 ComponentName component = new ComponentName(ai.packageName, ai.name);
1190 Provider p = lookupProviderLocked(component);
1196 Provider parsed = parseProviderInfoXml(component, ri);
H A DPackageManagerService.java1583 public ActivityInfo getActivityInfo(ComponentName component, int flags) { argument
1585 PackageParser.Activity a = mActivities.mActivities.get(component);
1587 if (Config.LOGV) Log.v(TAG, "getActivityInfo " + component + ": " + a);
1591 if (mResolveComponentName.equals(component)) {
1598 public ActivityInfo getReceiverInfo(ComponentName component, int flags) { argument
1600 PackageParser.Activity a = mReceivers.mActivities.get(component);
1602 TAG, "getReceiverInfo " + component + ": " + a);
1610 public ServiceInfo getServiceInfo(ComponentName component, int flags) { argument
1612 PackageParser.Service s = mServices.mServices.get(component);
1614 TAG, "getServiceInfo " + component
1622 getProviderInfo(ComponentName component, int flags) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java45 * This exception is thrown when a given package, application, or component
111 * data {@link android.os.Bundle}s that are associated with a component.
271 * that you don't want to kill the app containing the component. Be careful when you set this
272 * since changing component states can make the containing application's behavior unpredictable.
1059 * @param component The full component name (i.e.
1072 public abstract ActivityInfo getActivityInfo(ComponentName component, argument
1082 * @param component The full component name (i.e.
1095 public abstract ActivityInfo getReceiverInfo(ComponentName component, argument
1117 getServiceInfo(ComponentName component, int flags) argument
1139 getProviderInfo(ComponentName component, int flags) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DCalendar.java820 private static String extractValue(ICalendar.Component component, argument
823 component.getFirstProperty(propertyName);
/frameworks/base/media/libstagefright/
H A DAwesomePlayer.cpp485 // component is completely released by the time we may try
666 // component is completely released by the time we may try
828 const char *component; local
831 CHECK(meta->findCString(kKeyDecoderComponent, &component));
847 if (!strncmp("OMX.", component, 4)) {
854 mISurface, component,
870 component,
/frameworks/base/core/java/android/content/
H A DIntent.java119 * <li> <p><b>component</b> -- Specifies an explicit name of a component
122 * categories) and matching that with a component that can handle it.
124 * and this component is used exactly as is. By specifying this attribute,
127 * This can be used to provide extended information to the component.
176 * <li> <p><b>Explicit Intents</b> have specified a component (via
182 * <li> <p><b>Implicit Intents</b> have not specified a component;
203 * is done on the {@link PackageManager} for a component that can handle the
204 * intent. The appropriate component is determined based on the intent
209 * <li> <p>The <b>action</b>, if given, must be listed by the component a
4853 setComponent(ComponentName component) argument
[all...]

Completed in 359 milliseconds