Lines Matching refs:defaultValue

409     public boolean getAttributeBooleanValue(int index, boolean defaultValue) {
410 return mAttrib.getAttributeBooleanValue(index, defaultValue);
415 boolean defaultValue) {
416 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
420 public float getAttributeFloatValue(int index, float defaultValue) {
421 return mAttrib.getAttributeFloatValue(index, defaultValue);
425 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) {
426 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
430 public int getAttributeIntValue(int index, int defaultValue) {
431 return mAttrib.getAttributeIntValue(index, defaultValue);
435 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) {
436 return mAttrib.getAttributeIntValue(namespace, attribute, defaultValue);
440 public int getAttributeListValue(int index, String[] options, int defaultValue) {
441 return mAttrib.getAttributeListValue(index, options, defaultValue);
446 String[] options, int defaultValue) {
447 return mAttrib.getAttributeListValue(namespace, attribute, options, defaultValue);
456 public int getAttributeResourceValue(int index, int defaultValue) {
457 return mAttrib.getAttributeResourceValue(index, defaultValue);
461 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) {
462 return mAttrib.getAttributeResourceValue(namespace, attribute, defaultValue);
466 public int getAttributeUnsignedIntValue(int index, int defaultValue) {
467 return mAttrib.getAttributeUnsignedIntValue(index, defaultValue);
471 public int getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) {
472 return mAttrib.getAttributeUnsignedIntValue(namespace, attribute, defaultValue);
486 public int getIdAttributeResourceValue(int defaultValue) {
487 return mAttrib.getIdAttributeResourceValue(defaultValue);