Home | History | Annotate | Download | only in android

Lines Matching refs:Res_value

188   public static class Res_value
311 public static final Res_value NULL_VALUE = new Res_value((byte) TYPE_NULL, DATA_NULL_UNDEFINED);
317 public Res_value() {
324 public Res_value(ByteBuffer buf, int offset) {
335 public Res_value(Res_value other) {
342 public Res_value(byte dataType, int data) {
356 public Res_value withType(byte dataType) {
357 return new Res_value(dataType, data);
360 public Res_value withData(int data) {
361 return new Res_value(dataType, data);
364 // public void copyFrom_dtoh(Res_value other) {
371 public Res_value copy() {
372 return new Res_value(this);
377 return "Res_value{dataType=" + dataType + ", data=" + data + '}';
727 final Res_value typedData;
734 this.typedData = new Res_value((byte) dataType, data);
872 public void attr(int ns, int name, int value, Res_value resValue, String fullName) {
921 public Attr(int ns, int name, int value, Res_value resValue, String fullName) {
939 public static final int SIZEOF = 12+ ResourceTypes.Res_value.SIZEOF;
951 final Res_value typedValue;
957 this.typedValue = new Res_value(buf, offset + 12);
965 ResourceTypes.Res_value.write(buf, resValueDataType, resValueData);
1275 * * A Res_value structure, if FLAG_COMPLEX is -not- set.
1311 public Res_value getResValue() {
1314 // final Res_value device_value = reinterpret_cast<final Res_value>(
1317 return new Res_value(myBuf(), myOffset() + dtohs(size));
1355 public static final int SIZEOF = ResTable_ref.SIZEOF + ResourceTypes.Res_value.SIZEOF;
1437 public Res_value value;
1443 value = new Res_value(buf, offset + ResTable_ref.SIZEOF);
1449 this.value = new Res_value();