HomeSort by relevance Sort by last modified time
    Searched refs:componentName (Results 76 - 100 of 162) sorted by null

1 2 34 5 6 7

  /development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java 121 protected Intent activityIntent(String pkg, String componentName) {
123 result.setClassName(pkg, componentName);
  /development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java 121 protected Intent activityIntent(String pkg, String componentName) {
123 result.setClassName(pkg, componentName);
  /development/samples/Support7Demos/src/com/example/android/supportv7/
Support7Demos.java 123 protected Intent activityIntent(String pkg, String componentName) {
125 result.setClassName(pkg, componentName);
  /device/lge/mako/camera/inc/
omx_jpeg_common.h 201 omx_component_image_init(OMX_IN OMX_HANDLETYPE hComp, OMX_IN OMX_STRING componentName);
206 OMX_OUT OMX_STRING componentName,
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java 125 protected Intent activityIntent(String pkg, String componentName) {
127 result.setClassName(pkg, componentName);
  /pdk/apps/HelloPDK/src/com/example/android/helloPDK/
MainActivity.java 124 protected Intent activityIntent(String pkg, String componentName) {
126 result.setClassName(pkg, componentName);
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
SimpleMenu.java 19 import android.content.ComponentName;
159 public int addIntentOptions(int i, int i1, int i2, ComponentName componentName,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ComponentResultsView.java 491 String componentName = this.componentResultsElement.getName();
494 if (componentName.startsWith(ORG_ECLIPSE)) {
495 partName = componentName.substring(ORG_ECLIPSE.length());
524 buffer.append(componentName);
  /frameworks/base/core/java/android/content/pm/
IPackageManager.aidl 20 import android.content.ComponentName;
73 ActivityInfo getActivityInfo(in ComponentName className, int flags, int userId);
75 ActivityInfo getReceiverInfo(in ComponentName className, int flags, int userId);
77 ServiceInfo getServiceInfo(in ComponentName className, int flags, int userId);
79 ProviderInfo getProviderInfo(in ComponentName className, int flags, int userId);
111 in ComponentName caller, in Intent[] specifics,
174 in ComponentName className, int flags);
218 in ComponentName[] set, in ComponentName activity, int userId);
221 in ComponentName[] set, in ComponentName activity)
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewIconCache.java 25 import android.content.ComponentName;
40 private final ComponentName mComponentName;
44 mComponentName = info.componentName;
50 mComponentName = new ComponentName(ci.packageName, ci.name);
58 private ComponentName getComponentName() {
  /development/samples/BluetoothLeGatt/src/com/example/bluetooth/le/
DeviceControlActivity.java 23 import android.content.ComponentName;
72 public void onServiceConnected(ComponentName componentName, IBinder service) {
83 public void onServiceDisconnected(ComponentName componentName) {
  /frameworks/base/core/java/android/app/
SearchManager.java 20 import android.content.ComponentName;
484 * @param launchActivity The ComponentName of the activity that has launched this search.
499 ComponentName launchActivity,
507 * As {@link #startSearch(String, boolean, ComponentName, Bundle, boolean)} but including
514 ComponentName launchActivity,
541 ComponentName globalSearchActivity = getGlobalSearchActivity();
593 public ComponentName getGlobalSearchActivity() {
611 public ComponentName getWebSearchActivity() {
625 * @param launchActivity The ComponentName of the activity that has launched this search.
634 ComponentName launchActivity
    [all...]
  /frameworks/base/services/java/com/android/server/dreams/
DreamManagerService.java 23 import android.content.ComponentName;
64 private ComponentName mCurrentDreamName;
109 public ComponentName[] getDreamComponents() {
122 public void setDreamComponents(ComponentName[] componentNames) {
138 public ComponentName getDefaultDreamComponent() {
147 return name == null ? null : ComponentName.unflattenFromString(name);
181 public void testDream(ComponentName dream) {
259 ComponentName dream = chooseDreamForUser(userId);
276 private ComponentName chooseDreamForUser(int userId) {
277 ComponentName[] dreams = getDreamComponentsForUser(userId)
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountManager.java 21 import android.content.ComponentName;
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java 30 import android.content.ComponentName;
131 private static final ComponentName sFakeAccessibilityServiceComponentName =
132 new ComponentName("foo.bar", "FakeService");
181 private final Set<ComponentName> mTempComponentNameSet = new HashSet<ComponentName>();
265 Iterator<ComponentName> it = userState.mEnabledServices.iterator();
267 ComponentName comp = it.next();
300 Iterator<ComponentName> it = userState.mEnabledServices.iterator();
302 ComponentName comp = it.next();
629 ComponentName service, boolean touchExplorationEnabled)
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProvider.java 19 import android.content.ComponentName;
47 private final ComponentName mComponentName;
56 public RegisteredMediaRouteProvider(Context context, ComponentName componentName) {
57 super(context, new ProviderMetadata(componentName.getPackageName()));
59 mComponentName = componentName;
185 public void onServiceConnected(ComponentName name, IBinder service) {
210 public void onServiceDisconnected(ComponentName name) {
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/h264/
Exynos_OMX_H264dec.c     [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/mpeg4/
Exynos_OMX_Mpeg4dec.c     [all...]
  /packages/apps/Phone/src/com/android/phone/
RespondViaSmsManager.java 23 import android.content.ComponentName;
337 final ComponentName componentName = ComponentName.unflattenFromString(flattenedName);
340 serviceInfo = packageManager.getServiceInfo(componentName, 0);
347 sendTextAndExit(phoneNumber, message, componentName, false);
356 final ArrayList<ComponentName> componentsWithPermission =
374 private ArrayList<ComponentName> getPackagesWithInstantTextPermission() {
377 ArrayList<ComponentName> componentsWithPermission = Lists.newArrayList();
394 componentsWithPermission.add(new ComponentName(serviceInfo.packageName
    [all...]
  /frameworks/base/test-runner/src/android/test/mock/
MockPackageManager.java 19 import android.content.ComponentName;
121 public ActivityInfo getActivityInfo(ComponentName className, int flags)
127 public ActivityInfo getReceiverInfo(ComponentName className, int flags)
133 public ServiceInfo getServiceInfo(ComponentName className, int flags)
139 public ProviderInfo getProviderInfo(ComponentName className, int flags)
250 public List<ResolveInfo> queryIntentActivityOptions(ComponentName caller,
293 public InstrumentationInfo getInstrumentationInfo(ComponentName className, int flags)
310 public Drawable getActivityIcon(ComponentName activityName)
336 public Drawable getActivityLogo(ComponentName activityName) throws NameNotFoundException {
372 public Resources getResourcesForActivity(ComponentName activityName
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
DB_Results.java 470 String componentName = buffer.toString();
471 System.err.println(scenarioName+" does not belongs to a known Eclipse component. So use scenario prefix "+componentName+" as component name by default and add it to the know components"); //$NON-NLS-1$
473 KNOWN_COMPONENTS[length] = componentName;
474 return componentName;
    [all...]
  /frameworks/av/include/media/stagefright/
MediaCodec.h 120 status_t getName(AString *componentName) const;
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/vp8/
Exynos_OMX_Vp8dec.c     [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/h264/
Exynos_OMX_H264enc.c     [all...]
  /frameworks/base/tools/aapt/
Command.cpp 377 const char *getComponentName(String8 &pkgName, String8 &componentName) {
378 ssize_t idx = componentName.find(".");
381 retStr += componentName;
384 retStr += componentName;
386 return componentName.string();
    [all...]

Completed in 1145 milliseconds

1 2 34 5 6 7