Searched refs:name (Results 251 - 275 of 1628) sorted by path

<<11121314151617181920>>

/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java59 * name cannot be found.
65 public NameNotFoundException(String name) { argument
66 super(name);
430 * package is already installed with the same name.
448 * a previously installed package of the same name has a different signature
685 * if the parser encountered a bad or missing package name in the manifest.
694 * if the parser encountered a bad shared user id name in the manifest.
743 * <p>The package name of the app which has already defined the permission is passed to
745 * string extra; and the name of the permission being redefined is passed in the
1597 * Extra field name fo
1829 getPermissionInfo(String name, int flags) argument
1865 getPermissionGroupInfo(String name, int flags) argument
2179 removePermission(String name) argument
2364 hasSystemFeature(String name) argument
2624 resolveContentProvider(String name, int flags) argument
2638 resolveContentProviderAsUser(String name, int flags, int userId) argument
[all...]
H A DPackageParser.java90 * {@code null} split name) and zero or more "split" APKs (with unique split
94 * <li>All APKs must have the exact same package name, version code, and signing
110 /** File name in an APK for the Android manifest. */
115 public final String name; field in class:PackageParser.NewPermissionInfo
119 public NewPermissionInfo(String name, int sdkVersion, int fileVersion) { argument
120 this.name = name;
622 * base APK (with {@code null} split name) first.
643 * requiring identical package name and version codes, a single base APK,
701 "Split name "
1191 validateName(String name, boolean requiresSeparator) argument
4394 hasComponentClassName(String name) argument
[all...]
H A DPermissionGroupInfo.java99 + " " + name + " flgs=0x" + Integer.toHexString(flags) + "}";
H A DPermissionInfo.java208 + " " + name + "}";
H A DProviderInfo.java33 /** The name provider is published under content:// */
153 return "ContentProviderInfo{name=" + authority + " className=" + name + "}";
H A DRegisteredServicesCache.java308 for (String name : packages) {
311 mContext.getPackageManager().getPackageInfo(name, 0 /* flags */);
487 ComponentName componentName = new ComponentName(si.packageName, si.name);
H A DResolveInfo.java162 * item does not have a label, its name is returned.
294 ComponentName.appendShortString(sb, ci.packageName, ci.name);
410 if (sa == null) sa = a.activityInfo.name;
412 if (sb == null) sb = b.activityInfo.name;
H A DServiceInfo.java31 * Optional name of a permission required to be able to access this
85 + " " + name + "}";
H A DUserInfo.java83 public String name; field in class:UserInfo
94 public UserInfo(int id, String name, int flags) { argument
95 this(id, name, null, flags);
98 public UserInfo(int id, String name, String iconPath, int flags) { argument
100 this.name = name;
142 name = orig.name;
160 return "UserInfo{" + id + ":" + name + ":" + Integer.toHexString(flags) + "}";
169 dest.writeString(name);
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java280 * @param fileName The name of the asset to open. This name can be
296 * @param fileName The name of the asset to open. This name can be
344 * concatenating 'path' and a name in the returned string (via
438 * @param fileName The name of the file to retrieve.
449 * @param fileName The name of the file to retrieve.
464 * @param fileName The name of the file to retrieve.
692 * Retrieve the resource identifier for the given resource name.
695 String name,
694 getResourceIdentifier(String type, String name, String defPackage) argument
[all...]
H A DColorStateList.java144 final String name = parser.getName();
145 if (name.equals("selector")) {
149 parser.getPositionDescription() + ": invalid drawable tag " + name);
H A DResources.java218 public NotFoundException(String name) { argument
219 super(name);
1136 * with resources whose value is the name of an asset files -- that is, it can be
1169 * with resources whose value is the name of an asset file -- that is, it can be
1196 * with resources whose value is the name of an asset files -- that is, it can be
1299 * efficient to retrieve resources by identifier than by name.
1301 * @param name The name of the desired resource. This is passed to
1312 public void getValue(String name, TypedValue outValue, boolean resolveRefs) argument
1314 int id = getIdentifier(name, "strin
2032 getIdentifier(String name, String defType, String defPackage) argument
2290 verifyPreloadConfig(int changingConfigurations, int allowVarying, int resourceId, String name) argument
[all...]
H A DStringBlock.java314 * HTML hexadecimal, octal or a name
328 String name = color.substring(1);
329 int colorRes = res.getIdentifier(name, "color", "android");
H A DTypedArray.java583 * @param name Textual name of attribute for error reporting.
588 public int getLayoutDimension(int index, String name) { argument
607 + ": You must supply a " + name + " attribute.");
H A DXmlBlock.java84 public void setFeature(String name, boolean state) throws XmlPullParserException { argument
85 if (FEATURE_PROCESS_NAMESPACES.equals(name) && state) {
88 if (FEATURE_REPORT_NAMESPACE_ATTRIBUTES.equals(name) && state) {
91 throw new XmlPullParserException("Unsupported feature: " + name);
93 public boolean getFeature(String name) { argument
94 if (FEATURE_PROCESS_NAMESPACES.equals(name)) {
97 if (FEATURE_REPORT_NAMESPACE_ATTRIBUTES.equals(name)) {
102 public void setProperty(String name, Object value) throws XmlPullParserException { argument
105 public Object getProperty(String name) { argument
223 public String getAttributeValue(String namespace, String name) { argument
267 require(int type, String namespace, String name) argument
512 nativeGetAttributeIndex(long state, String namespace, String name) argument
[all...]
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java193 * @param name The window name.
196 protected void clearOrCreateWindow(String name) { argument
198 mWindow = new CursorWindow(name);
H A DCursorWindow.java59 private static native long nativeCreate(String name, int cursorWindowSize); argument
88 * Creates a new empty cursor window and gives it a name.
94 * @param name The name of the cursor window, or null if none.
96 public CursorWindow(String name) { argument
98 mName = name != null && name.length() != 0 ? name : "<unnamed>";
168 * Gets the name of this cursor window, never null.
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1130 String name = window.getString(i, 1);
1135 pageCount = executeForLong("PRAGMA " + name + ".page_count;", null, null);
1136 pageSize = executeForLong("PRAGMA " + name + ".page_size;", null, null);
1140 String label = " (attached) " + name;
H A DSQLiteCustomFunction.java25 public final String name; field in class:SQLiteCustomFunction
32 * @param name The name of the sqlite3 function.
37 public SQLiteCustomFunction(String name, int numArgs, argument
39 if (name == null) {
40 throw new IllegalArgumentException("name must not be null.");
43 this.name = name;
H A DSQLiteDatabase.java563 * The name of this method comes from a time when having an active connection
836 * @param name the name of the sqlite3 function
841 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
843 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
955 * Finds the name of the first table, which is editable.
1004 * @param table The table name to compile the query against.
1042 * @param table The table name to compile the query against.
1084 * @param table The table name to compile the query against.
1124 * @param table The table name t
[all...]
H A DSQLiteOpenHelper.java70 * @param name of the database file, or null for an in-memory database
76 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) { argument
77 this(context, name, factory, version, null);
89 * @param name of the database file, or null for an in-memory database
97 public SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version, argument
102 mName = name;
109 * Return the name of the SQLite database being opened, as given to
H A DSQLiteQueryBuilder.java129 * could map "name" to "people.name". If a projection map is set
234 private static void appendClause(StringBuilder s, String name, String clause) { argument
236 s.append(name);
491 * @param typeDiscriminatorColumn the name of the result column
492 * whose cells will contain the name of the table from which
500 * that appear in this table (i.e. in the table whose name is
/frameworks/base/core/java/android/ddm/
H A DDdmHandleAppName.java27 * Track our app name. We don't (currently) handle any inbound packets.
68 * Set the application name. Called when we get named, which may be
72 public static void setAppName(String name, int userId) { argument
73 if (name == null || name.length() == 0)
76 mAppName = name;
78 // if DDMS is already connected, send the app name up
79 sendAPNM(name, userId);
91 Log.v("ddm", "Sending app name");
H A DDdmHandleExit.java62 Log.v("ddm-exit", "Handling " + name(request.type) + " chunk");
H A DDdmHandleHeap.java81 Log.v("ddm-heap", "Handling " + name(request.type) + " chunk");
104 + ChunkHandler.name(type));

Completed in 2135 milliseconds

<<11121314151617181920>>