Lines Matching defs:code
37 // MTP property code
38 int code;
44 Property(int code, int type, int column) {
45 this.code = code;
90 private Property createProperty(int code, ArrayList<String> columns) {
94 switch (code) {
176 Log.e(TAG, "unsupported property " + code);
182 return new Property(code, type, columns.size() - 1);
184 return new Property(code, type, -1);
346 int propertyCode = property.code;