Searched defs:className (Results 51 - 72 of 72) sorted by relevance

123

/frameworks/base/test-runner/src/android/test/mock/
H A DMockContext.java424 public boolean startInstrumentation(ComponentName className, argument
H A DMockPackageManager.java114 public ActivityInfo getActivityInfo(ComponentName className, int flags) argument
120 public ActivityInfo getReceiverInfo(ComponentName className, int flags) argument
126 public ServiceInfo getServiceInfo(ComponentName className, int flags) argument
132 public ProviderInfo getProviderInfo(ComponentName className, int flags) argument
280 public InstrumentationInfo getInstrumentationInfo(ComponentName className, int flags) argument
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java116 String className = classReaderToClassName(cr);
117 classes.put(className, cr);
141 static String internalToBinaryClassName(String className) { argument
142 if (className == null) {
145 return className.replace('/', '.');
176 ClassReader findClass(String className, Map<String, ClassReader> zipClasses, argument
178 ClassReader classReader = zipClasses.get(className);
181 className, mOsSourceJar);
184 inOutFound.put(className, classReader);
238 String className
359 considerName(String className) argument
[all...]
H A DDependencyFinder.java164 String className = classReaderToClassName(cr);
165 classes.put(className, cr);
189 static String internalToBinaryClassName(String className) { argument
190 if (className == null) {
193 return className.replace('/', '.');
301 public void considerName(String className) { argument
302 if (className == null) {
306 className = internalToBinaryClassName(className);
310 if (getClass().getClassLoader().loadClass(className) !
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java89 public void setClassName(Object info, CharSequence className); argument
294 public void setClassName(Object info, CharSequence className) { argument
561 public void setClassName(Object info, CharSequence className) { argument
562 AccessibilityNodeInfoCompatIcs.setClassName(info, className);
1661 * @param className The class name.
1664 public void setClassName(CharSequence className) { argument
1665 IMPL.setClassName(mInfo, className);
/frameworks/base/media/libdrm/mobile1/src/jni/
H A Ddrm1_jni.c1110 static int registerNativeMethods(JNIEnv* env, const char* className, argument
1115 clazz = (*env)->FindClass(env, className);
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java214 public ActivityInfo getActivityInfo(ComponentName className, int flags) argument
217 ActivityInfo ai = mPM.getActivityInfo(className, flags, mContext.getUserId());
225 throw new NameNotFoundException(className.toString());
229 public ActivityInfo getReceiverInfo(ComponentName className, int flags) argument
232 ActivityInfo ai = mPM.getReceiverInfo(className, flags, mContext.getUserId());
240 throw new NameNotFoundException(className.toString());
244 public ServiceInfo getServiceInfo(ComponentName className, int flags) argument
247 ServiceInfo si = mPM.getServiceInfo(className, flags, mContext.getUserId());
255 throw new NameNotFoundException(className.toString());
259 public ProviderInfo getProviderInfo(ComponentName className, in argument
595 getInstrumentationInfo( ComponentName className, int flags) argument
[all...]
H A DContextImpl.java1463 public boolean startInstrumentation(ComponentName className, argument
1470 className, profileFile, 0, arguments, null, getUserId());
H A DInstrumentation.java959 * @param className The name of the class implementing the Application
965 public Application newApplication(ClassLoader cl, String className, Context context) argument
968 return newApplication(cl.loadClass(className), context);
1043 * @param className The name of the class implementing the Activity
1050 public Activity newActivity(ClassLoader cl, String className, argument
1054 return (Activity)cl.loadClass(className).newInstance();
H A DActivityManagerNative.java749 ComponentName className = ComponentName.readFromParcel(data);
752 boolean res = stopServiceToken(className, token, startId);
760 ComponentName className = ComponentName.readFromParcel(data);
768 setServiceForeground(className, token, id, notification, removeNotification);
833 ComponentName className = ComponentName.readFromParcel(data);
840 boolean res = startInstrumentation(className, profileFile, fl, arguments, w, userId);
2671 public boolean stopServiceToken(ComponentName className, IBinder token, argument
2676 ComponentName.writeToParcel(className, data);
2686 public void setServiceForeground(ComponentName className, IBinder token, argument
2691 ComponentName.writeToParcel(className, dat
2843 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, int userId) argument
[all...]
H A DIActivityManager.java136 public boolean stopServiceToken(ComponentName className, IBinder token, argument
138 public void setServiceForeground(ComponentName className, IBinder token, argument
160 public boolean startInstrumentation(ComponentName className, String profileFile, argument
/frameworks/base/core/java/android/content/
H A DContext.java1710 * @param className Name of the Instrumentation component to be run.
1719 public abstract boolean startInstrumentation(ComponentName className, argument
H A DIntent.java5956 * @param className The name of a class inside of the application package
5965 public Intent setClassName(Context packageContext, String className) { argument
5966 mComponent = new ComponentName(packageContext, className);
5976 * @param className The name of a class inside of the application package
5985 public Intent setClassName(String packageName, String className) { argument
5986 mComponent = new ComponentName(packageName, className);
6744 String className = sa.getString(com.android.internal.R.styleable.Intent_targetClass);
6745 if (packageName != null && className != null) {
6746 intent.setComponent(new ComponentName(packageName, className));
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1698 ai.className = buildClassName(pkgName, name, outError);
1699 if (ai.className == null) {
2205 + a.className + " at " + mArchiveSourcePath + " "
2545 + p.className + " at " + mArchiveSourcePath + " "
2811 + s.className + " at " + mArchiveSourcePath + " "
3291 if (name.equals(activities.get(i).className)) {
3296 if (name.equals(receivers.get(i).className)) {
3301 if (name.equals(providers.get(i).className)) {
3306 if (name.equals(services.get(i).className)) {
3311 if (name.equals(instrumentation.get(i).className)) {
3328 public final String className; field in class:PackageParser.Component
[all...]
H A DPackageManager.java2048 * @param className The full name (i.e.
2057 ComponentName className, int flags) throws NameNotFoundException;
2056 getInstrumentationInfo( ComponentName className, int flags) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1176 * @param className The class name.
1180 public void setClassName(CharSequence className) { argument
1182 mClassName = className;
1851 builder.append("; className: ").append(mClassName);
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java240 public View findHierarchyView(String className, int hashCode); argument
H A DWebView.java1731 public View findHierarchyView(String className, int hashCode) { argument
1732 return mProvider.findHierarchyView(className, hashCode);
H A DWebViewClassic.java8655 public View findHierarchyView(String className, int hashCode) { argument
8658 if (!nativeDumpLayerContentToPicture(mNativeClass, className, hashCode, pic)) {
8709 String className, int layerId, Picture pict);
8708 nativeDumpLayerContentToPicture(int nativeInstance, String className, int layerId, Picture pict) argument
/frameworks/base/tools/aapt/
H A DResource.cpp722 String8 className; local
726 className += package;
727 className += name;
729 className += package;
730 className += ".";
731 className += name;
733 className += name;
735 NOISY(printf("Qualifying class '%s' to '%s'", name.string(), className.string()));
736 attr->string.setTo(String16(className));
1961 const sp<AaptSymbols>& symbols, const String8& className, in
1959 writeSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className, int indent, bool nonConstantId) argument
2097 writeTextSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java10959 public boolean stopServiceToken(ComponentName className, IBinder token, argument
10962 return mServices.stopServiceTokenLocked(className, token, startId);
10966 public void setServiceForeground(ComponentName className, IBinder token, argument
10969 mServices.setServiceForegroundLocked(className, token, id, notification,
11031 String className, int flags) {
11038 ComponentName comp = new ComponentName(aInfo.packageName, className);
11054 + ", " + className + ", 0x" + Integer.toHexString(flags) + ") = " + result);
12083 public boolean startInstrumentation(ComponentName className, argument
12099 className, STOCK_PM_FLAGS);
12106 reportStartInstrumentationFailure(watcher, className,
11030 isSingleton(String componentProcessName, ApplicationInfo aInfo, String className, int flags) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java4229 + ", className = " + p.info.name + ", isSyncable = "
4557 + ", className = " + p.info.name + ", isSyncable = "
4987 + a.className + " with priority > 0, forcing to 0");
5088 //System.out.println("Result: " + res.activityInfo.className +
5286 //System.out.println("Result: " + res.activityInfo.className +
8862 final String packageName, String className, int newState, final int flags, int userId) {
8877 boolean isApp = (className == null);
8878 String componentName = isApp ? packageName : className;
8886 if (className == null) {
8892 + "/" + className);
8861 setEnabledSetting( final String packageName, String className, int newState, final int flags, int userId) argument
[all...]

Completed in 414 milliseconds

123