Searched defs:className (Results 76 - 87 of 87) sorted by relevance

1234

/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java246 public View findHierarchyView(String className, int hashCode); argument
H A DWebView.java1863 public View findHierarchyView(String className, int hashCode) { argument
1864 return mProvider.findHierarchyView(className, hashCode);
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java2285 * @param className The full name (i.e.
2294 ComponentName className, int flags) throws NameNotFoundException;
2293 getInstrumentationInfo( ComponentName className, int flags) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1620 * @param className The class name.
1624 public void setClassName(CharSequence className) { argument
1626 mClassName = className;
2511 builder.append("; className: ").append(mClassName);
/frameworks/base/tools/aapt/
H A DResource.cpp723 String8 className; local
727 className += package;
728 className += name;
730 className += package;
731 className += ".";
732 className += name;
734 className += name;
736 NOISY(printf("Qualifying class '%s' to '%s'", name.string(), className.string()));
737 attr->string.setTo(String16(className));
1993 const sp<AaptSymbols>& symbols, const String8& className, in
1991 writeSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className, int indent, bool nonConstantId) argument
2123 writeTextSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1422 public View findHierarchyView(String className, int hashCode) { argument
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java824 ComponentName className = ComponentName.readFromParcel(data);
827 boolean res = stopServiceToken(className, token, startId);
835 ComponentName className = ComponentName.readFromParcel(data);
843 setServiceForeground(className, token, id, notification, removeNotification);
908 ComponentName className = ComponentName.readFromParcel(data);
917 boolean res = startInstrumentation(className, profileFile, fl, arguments, w, c, userId);
3002 public boolean stopServiceToken(ComponentName className, IBinder token, argument
3007 ComponentName.writeToParcel(className, data);
3017 public void setServiceForeground(ComponentName className, IBinder token, argument
3022 ComponentName.writeToParcel(className, dat
3174 startInstrumentation(ComponentName className, String profileFile, int flags, Bundle arguments, IInstrumentationWatcher watcher, IUiAutomationConnection connection, int userId) argument
[all...]
H A DIActivityManager.java149 public boolean stopServiceToken(ComponentName className, IBinder token, argument
151 public void setServiceForeground(ComponentName className, IBinder token, argument
173 public boolean startInstrumentation(ComponentName className, String profileFile, argument
/frameworks/base/core/java/android/content/
H A DIntent.java6311 * @param className The name of a class inside of the application package
6320 public Intent setClassName(Context packageContext, String className) { argument
6321 mComponent = new ComponentName(packageContext, className);
6331 * @param className The name of a class inside of the application package
6340 public Intent setClassName(String packageName, String className) { argument
6341 mComponent = new ComponentName(packageName, className);
7097 String className = sa.getString(com.android.internal.R.styleable.Intent_targetClass);
7098 if (packageName != null && className != null) {
7099 intent.setComponent(new ComponentName(packageName, className));
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java1710 String processName, String className) {
1712 ProcessStats.ServiceState ss = as.mServices.get(className);
1719 ss = new ProcessStats.ServiceState(this, packageName, className, processName, ps);
1720 as.mServices.put(className, ss);
1709 getServiceStateLocked(String packageName, int uid, String processName, String className) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java12654 public boolean stopServiceToken(ComponentName className, IBinder token, argument
12657 return mServices.stopServiceTokenLocked(className, token, startId);
12661 public void setServiceForeground(ComponentName className, IBinder token, argument
12664 mServices.setServiceForegroundLocked(className, token, id, notification,
12726 String className, int flags) {
12733 ComponentName comp = new ComponentName(aInfo.packageName, className);
12749 + ", " + className + ", 0x" + Integer.toHexString(flags) + ") = " + result);
13819 public boolean startInstrumentation(ComponentName className, argument
13836 className, STOCK_PM_FLAGS);
13843 reportStartInstrumentationFailure(watcher, className,
12725 isSingleton(String componentProcessName, ApplicationInfo aInfo, String className, int flags) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java4845 + ", className = " + p.info.name + ", isSyncable = "
5208 + ", className = " + p.info.name + ", isSyncable = "
5699 + a.className + " with priority > 0, forcing to 0");
5801 //System.out.println("Result: " + res.activityInfo.className +
6000 //System.out.println("Result: " + res.activityInfo.className +
10227 private void setEnabledSetting(final String packageName, String className, int newState, argument
10244 boolean isApp = (className == null);
10245 String componentName = isApp ? packageName : className;
10253 if (className == null) {
10259 + "/" + className);
[all...]

Completed in 393 milliseconds

1234