Lines Matching refs:defaultValue

130      * @param defaultValue Value returned if attribute doesn't exist or no
133 * @return Index in to 'options' or defaultValue.
136 String[] options, int defaultValue);
143 * @param defaultValue What to return if the attribute isn't found.
148 boolean defaultValue);
161 * @param defaultValue What to return if the attribute isn't found.
166 int defaultValue);
173 * @param defaultValue What to return if the attribute isn't found.
178 int defaultValue);
187 * @param defaultValue What to return if the attribute isn't found.
192 int defaultValue);
199 * @param defaultValue What to return if the attribute isn't found.
204 float defaultValue);
212 * @param defaultValue Value returned if attribute doesn't exist or no
215 * @return Index in to 'options' or defaultValue.
217 public int getAttributeListValue(int index, String[] options, int defaultValue);
223 * @param defaultValue What to return if the attribute isn't found.
227 public boolean getAttributeBooleanValue(int index, boolean defaultValue);
239 * @param defaultValue What to return if the attribute isn't found.
243 public int getAttributeResourceValue(int index, int defaultValue);
249 * @param defaultValue What to return if the attribute isn't found.
253 public int getAttributeIntValue(int index, int defaultValue);
261 * @param defaultValue What to return if the attribute isn't found.
265 public int getAttributeUnsignedIntValue(int index, int defaultValue);
271 * @param defaultValue What to return if the attribute isn't found.
275 public float getAttributeFloatValue(int index, float defaultValue);
294 * Return the integer value of the "id" attribute or defaultValue if there
296 * Equivalent to getAttributeResourceValue(null, "id", defaultValue);
298 * @param defaultValue What to return if the "id" attribute isn't found.
301 public int getIdAttributeResourceValue(int defaultValue);