Home
last modified time | relevance | path

Searched refs:type1 (Results 1 – 3 of 3) sorted by relevance

/haiku/src/bin/rc/tests/
H A Dtype.rdef26 type #'what' type1 { int32 a, int32 b, bool d, int16 e }; // size 11
27 resource(810) type1 { 1, 2, false, 3 };
28 resource(811) type1 { d = false, 1, 2, 3 };
29 resource(812) type1 { d = false, e = 3, b = 2, 1 };
30 resource(813) type1 { d = false, e = 3, 6, 7, a = 1, b = 2 };
31 resource(814) type1 { 6, 7, false, 9, d = false, e = 3, a = 1, b = 2 };
/haiku/src/bin/rc/
H A Dparser.y582 same_type(type_t type1, type_t type2) in same_type() argument
584 return type1.name == type2.name; // no need for strcmp in same_type()
/haiku/src/tests/kits/storage/
H A DAppFileInfoTest.cpp506 type_code type1, type2; in operator ==() local
508 bool equal = (types.GetInfo("types", &type1, &count1) == B_OK in operator ==()
510 && type1 == type2 && count1 == count2); in operator ==()