Searched defs:className (Results 1 - 25 of 95) sorted by path

1234

/frameworks/av/camera/camera2/
H A DCaptureRequest.cpp57 const char16_t* className = parcel->readString16Inplace(&len); local
59 className != NULL ? String8(className).string() : "<null>");
61 if (className == NULL) {
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp42 void setClassNameAndArgs(const String8& className, int argc, char * const *argv) { argument
43 mClassName = className;
243 String8 className; local
258 className.setTo(arg);
267 if (!className.isEmpty()) {
274 runtime.setClassNameAndArgs(className, argc - i, argv + i);
308 } else if (className) {
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
H A DRunTestCommand.java202 String className = e.nextElement();
203 if (isTestClass(className)) {
204 mTestClasses.add(className);
217 * @param className
220 private boolean isTestClass(String className) { argument
222 Class<?> clazz = this.getClass().getClassLoader().loadClass(className);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java166 * @param className Value to match
170 public UiSelector className(String className) { argument
171 return buildSelector(SELECTOR_CLASS, className);
194 public <T> UiSelector className(Class<T> type) { method in class:UiSelector
331 * 2, the {@link #className(String)} matches the image
335 * new UiSelector().className("android.widget.ImageView")
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DTestCaseCollector.java52 for (String className : classNames) {
53 addTestClass(className);
62 * @param className classes must be subclass of {@link UiAutomatorTestCase}
65 public void addTestClass(String className) throws ClassNotFoundException { argument
66 int hashPos = className.indexOf('#');
69 methodName = className.substring(hashPos + 1);
70 className = className.substring(0, hashPos);
72 addTestClass(className, methodName);
78 * @param className clas
83 addTestClass(String className, String methodName) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java922 ComponentName className = ComponentName.readFromParcel(data);
925 boolean res = stopServiceToken(className, token, startId);
933 ComponentName className = ComponentName.readFromParcel(data);
941 setServiceForeground(className, token, id, notification, removeNotification);
1006 ComponentName className = ComponentName.readFromParcel(data);
1016 boolean res = startInstrumentation(className, profileFile, fl, arguments, w, c, userId,
3468 public boolean stopServiceToken(ComponentName className, IBinder token, argument
3473 ComponentName.writeToParcel(className, data);
3483 public void setServiceForeground(ComponentName className, IBinder token, argument
3488 ComponentName.writeToParcel(className, dat
3640 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId, String instructionSet) argument
[all...]
H A DApplicationPackageManager.java303 public ActivityInfo getActivityInfo(ComponentName className, int flags) argument
306 ActivityInfo ai = mPM.getActivityInfo(className, flags, mContext.getUserId());
314 throw new NameNotFoundException(className.toString());
318 public ActivityInfo getReceiverInfo(ComponentName className, int flags) argument
321 ActivityInfo ai = mPM.getReceiverInfo(className, flags, mContext.getUserId());
329 throw new NameNotFoundException(className.toString());
333 public ServiceInfo getServiceInfo(ComponentName className, int flags) argument
336 ServiceInfo si = mPM.getServiceInfo(className, flags, mContext.getUserId());
344 throw new NameNotFoundException(className.toString());
348 public ProviderInfo getProviderInfo(ComponentName className, in argument
701 getInstrumentationInfo( ComponentName className, int flags) argument
[all...]
H A DContextImpl.java1820 public boolean startInstrumentation(ComponentName className, argument
1827 className, profileFile, 0, arguments, null, null, getUserId(),
H A DIActivityManager.java162 public boolean stopServiceToken(ComponentName className, IBinder token, argument
164 public void setServiceForeground(ComponentName className, IBinder token, argument
186 public boolean startInstrumentation(ComponentName className, String profileFile, argument
H A DInstrumentation.java971 * @param className The name of the class implementing the Application
977 public Application newApplication(ClassLoader cl, String className, Context context) argument
980 return newApplication(cl.loadClass(className), context);
1055 * @param className The name of the class implementing the Activity
1062 public Activity newActivity(ClassLoader cl, String className, argument
1066 return (Activity)cl.loadClass(className).newInstance();
H A DLauncherActivity.java70 public String className; field in class:LauncherActivity.ListItem
86 className = ci.name;
123 intent.setClassName(item.packageName, item.className);
H A DLoadedApk.java469 @Override public Class<?> loadClass(String className) throws ClassNotFoundException { argument
471 return getParent().loadClass(className);
547 String appClass = mApplicationInfo.className;
H A DService.java700 ActivityThread thread, String className, IBinder token,
704 mClassName = className;
698 attach( Context context, ActivityThread thread, String className, IBinder token, Application application, Object activityManager) argument
/frameworks/base/core/java/android/content/
H A DComponentName.java115 String className) {
116 if (className.startsWith(packageName)) {
118 int CN = className.length();
119 if (CN > PN && className.charAt(PN) == '.') {
120 sb.append(className, PN, CN);
124 sb.append(className);
128 String className) {
129 if (className.startsWith(packageName)) {
131 int CN = className.length();
132 if (CN > PN && className
114 appendShortClassName(StringBuilder sb, String packageName, String className) argument
127 printShortClassName(PrintWriter pw, String packageName, String className) argument
179 appendShortString(StringBuilder sb, String packageName, String className) argument
185 printShortString(PrintWriter pw, String packageName, String className) argument
[all...]
H A DContext.java2072 * @param className Name of the Instrumentation component to be run.
2081 public abstract boolean startInstrumentation(@NonNull ComponentName className, argument
H A DContextWrapper.java555 public boolean startInstrumentation(ComponentName className, argument
557 return mBase.startInstrumentation(className, profileFile, arguments);
H A DIntent.java6760 * @param className The name of a class inside of the application package
6769 public Intent setClassName(Context packageContext, String className) { argument
6770 mComponent = new ComponentName(packageContext, className);
6780 * @param className The name of a class inside of the application package
6789 public Intent setClassName(String packageName, String className) { argument
6790 mComponent = new ComponentName(packageName, className);
7569 String className = sa.getString(com.android.internal.R.styleable.Intent_targetClass);
7570 if (packageName != null && className != null) {
7571 intent.setComponent(new ComponentName(packageName, className));
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java64 public String className; field in class:ApplicationInfo
592 if (className != null) {
593 pw.println(prefix + "className=" + className);
680 className = orig.className;
730 dest.writeString(className);
779 className = source.readString();
H A DPackageManager.java2668 * @param className The full name (i.e.
2677 ComponentName className, int flags) throws NameNotFoundException;
2676 getInstrumentationInfo( ComponentName className, int flags) argument
H A DPackageParser.java2411 ai.className = buildClassName(pkgName, name, outError);
2412 if (ai.className == null) {
3150 + a.className + " at " + mArchiveSourcePath + " "
3510 + p.className + " at " + mArchiveSourcePath + " "
3788 + s.className + " at " + mArchiveSourcePath + " "
4396 if (name.equals(activities.get(i).className)) {
4401 if (name.equals(receivers.get(i).className)) {
4406 if (name.equals(providers.get(i).className)) {
4411 if (name.equals(services.get(i).className)) {
4416 if (name.equals(instrumentation.get(i).className)) {
4433 public final String className; field in class:PackageParser.Component
[all...]
/frameworks/base/core/java/android/os/
H A DBaseBundle.java628 void typeWarning(String key, Object value, String className, argument
634 sb.append(className);
644 void typeWarning(String key, Object value, String className, argument
646 typeWarning(key, value, className, "<null>", e);
/frameworks/base/core/java/android/provider/
H A DSearchIndexableData.java79 public String className; field in class:SearchIndexableData
97 * {@link SearchIndexableData#className} is not relevant.
159 sb.append("className: ");
160 sb.append(className);
H A DSearchIndexableResource.java46 * @param className the class name associated with the data (generally a
50 public SearchIndexableResource(int rank, int xmlResId, String className, int iconResId) { argument
54 this.className = className;
/frameworks/base/core/java/android/test/
H A DAndroidTestCase.java88 * @param className The class of the activity to launch.
92 String packageName, String className, String permission) {
94 intent.setClassName(packageName, className);
91 assertActivityRequiresPermission( String packageName, String className, String permission) argument
/frameworks/base/core/java/android/view/
H A DMenuInflater.java509 private <T> T newInstance(String className, Class<?>[] constructorSignature, argument
512 Class<?> clazz = mContext.getClassLoader().loadClass(className);
516 Log.w(LOG_TAG, "Cannot instantiate class: " + className, e);

Completed in 5500 milliseconds

1234