Lines Matching refs:target

28     public static MutableFrameFormat createByteFormat(int count, int target) {
29 return createFormat(FrameFormat.TYPE_BYTE, count, target);
32 public static MutableFrameFormat createInt16Format(int count, int target) {
33 return createFormat(FrameFormat.TYPE_INT16, count, target);
36 public static MutableFrameFormat createInt32Format(int count, int target) {
37 return createFormat(FrameFormat.TYPE_INT32, count, target);
40 public static MutableFrameFormat createFloatFormat(int count, int target) {
41 return createFormat(FrameFormat.TYPE_FLOAT, count, target);
44 public static MutableFrameFormat createDoubleFormat(int count, int target) {
45 return createFormat(FrameFormat.TYPE_DOUBLE, count, target);
48 public static MutableFrameFormat createByteFormat(int target) {
49 return createFormat(FrameFormat.TYPE_BYTE, target);
52 public static MutableFrameFormat createInt16Format(int target) {
53 return createFormat(FrameFormat.TYPE_INT16, target);
56 public static MutableFrameFormat createInt32Format(int target) {
57 return createFormat(FrameFormat.TYPE_INT32, target);
60 public static MutableFrameFormat createFloatFormat(int target) {
61 return createFormat(FrameFormat.TYPE_FLOAT, target);
64 public static MutableFrameFormat createDoubleFormat(int target) {
65 return createFormat(FrameFormat.TYPE_DOUBLE, target);
68 private static MutableFrameFormat createFormat(int baseType, int count, int target) {
69 MutableFrameFormat result = new MutableFrameFormat(baseType, target);
74 private static MutableFrameFormat createFormat(int baseType, int target) {
75 MutableFrameFormat result = new MutableFrameFormat(baseType, target);