Lines Matching defs:name

191         public NotFoundException(String name) {
192 super(name);
195 public NotFoundException(String name, Exception cause) {
196 super(name, cause);
1169 * with resources whose value is the name of an asset files -- that is, it can be
1226 * with resources whose value is the name of an asset file -- that is, it can be
1244 * with resources whose value is the name of an asset files -- that is, it can be
1318 * efficient to retrieve resources by identifier than by name.
1320 * @param name The name of the desired resource. This is passed to
1331 public void getValue(String name, TypedValue outValue, boolean resolveRefs)
1333 mResourcesImpl.getValue(name, outValue, resolveRefs);
1615 * adjacent Theme data: resource name followed by whether or not it was
1853 * Return a resource identifier for the given resource name. A fully
1854 * qualified resource name is of the form "package:type/entry". The first
1859 * efficient to retrieve resources by identifier than by name.
1861 * @param name The name of the desired resource.
1863 * not included in the name. Can be null to require an
1866 * not included in the name. Can be null to require an
1872 public int getIdentifier(String name, String defType, String defPackage) {
1873 return mResourcesImpl.getIdentifier(name, defType, defPackage);
1886 * Return the full name for a given resource identifier. This name is
1889 * @param resid The resource identifier whose name is to be retrieved.
1891 * @return A string holding the name of the resource.
1904 * Return the package name for a given resource identifier.
1906 * @param resid The resource identifier whose package name is to be
1909 * @return A string holding the package name of the resource.
1920 * Return the type name for a given resource identifier.
1922 * @param resid The resource identifier whose type name is to be
1925 * @return A string holding the type name of the resource.
1936 * Return the entry name for a given resource identifier.
1938 * @param resid The resource identifier whose entry name is to be
1941 * @return A string holding the entry name of the resource.
1984 * Parse a name/value pair out of an XML tag holding that data. The
1998 * @param tagName The name of the tag these attributes come from; this is
2000 * @param attrs The attributes from which to retrieve the name/value pair.
2009 String name = sa.getString(
2011 if (name == null) {
2014 + "> requires an android:name attribute at "
2023 outBundle.putCharSequence(name, cs);
2025 outBundle.putBoolean(name, v.data != 0);
2028 outBundle.putInt(name, v.data);
2030 outBundle.putFloat(name, v.getFloat());