/external/clang/test/Analysis/ |
cxx-crashes.cpp | 69 struct { int x; } structs[n]; local 70 structs[0].x = 1; 71 clang_analyzer_eval(structs[0].x == 1); // expected-warning{{TRUE}}
|
/system/tpm/trunks/generator/ |
generator_test.py | 193 types, constants, structs, defines, typemap = parser.Parse() 196 self.assertIsNotNone(structs) 206 types, constants, structs, defines, typemap = parser.Parse() 210 self.assertGreaterEqual(len(structs), 1) 220 self.assertEqual(structs[0].name, 'struct_type') 221 self.assertEqual(structs[0].is_union, False) 222 self.assertEqual(len(structs[0].fields), 1) 223 self.assertEqual(structs[0].fields[0][0], 'field_type') 224 self.assertEqual(structs[0].fields[0][1], 'field_name[sizeof(depend_type)]') 225 self.assertEqual(len(structs[0].depends_on), 1 [all...] |
generator.py | 925 - Parses structs and unions to a list of Structure objects. 933 types, constants, structs, defines, typemap = parser.Parse() 978 Returns these in the following order: types, constants, structs, defines, 984 structs = [] 993 structs += self._ParseStructures(self._STRUCTURE_SECTION_RE, typemap) 995 structs += self._ParseStructures(self._UNION_SECTION_RE, typemap) 1002 # Empty structs not handled by the extractor. 1003 self._AddEmptyStruct('TPMU_SYM_DETAILS', True, structs, typemap) [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue7366.go | 8 // during comparison of small structs.
|
bug477.go | 7 // Test multiple identical unnamed structs with methods. This caused
|
issue4585.go | 8 // fields and padding in structs.
|
issue9110.go | 7 // Scenario that used to leak arbitrarily many SudoG structs.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue7366.go | 8 // during comparison of small structs.
|
bug477.go | 7 // Test multiple identical unnamed structs with methods. This caused
|
/build/blueprint/proptools/ |
typeequal.go | 19 // TypeEqual takes two property structs, and returns true if they are of equal type, any embedded 20 // pointers to structs or interfaces having matching nilitude, and any interface{} values in any 21 // embedded structs, pointers to structs, or interfaces are also of equal type.
|
extend.go | 23 // struct dst. dst and src must be the same type, and both must be pointers to structs. 34 // embedded structs, pointers to structs, and interfaces containing 35 // pointers to structs. Appending the zero value of a property will always be a no-op. 41 // struct dst. dst and src must be the same type, and both must be pointers to structs. 52 // embedded structs, pointers to structs, and interfaces containing 53 // pointers to structs. Prepending the zero value of a property will always be a no-op. 59 // property structs in dst. dst and src do not have to be the same type, but every property in src 60 // must be found in at least one property in dst. dst must be a slice of pointers to structs, an [all...] |
typeequal_test.go | 28 // Matching structs 34 // Mismatching structs 52 // Matching embedded structs 58 // Misatching embedded structs
|
/external/libopus/ |
silk_headers.mk | 10 silk/structs.h \
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue5242.go | 5 // Issue 5242. Cgo incorrectly computed the alignment of structs
|
/prebuilts/go/darwin-x86/test/ |
struct0.go | 7 // Test zero length structs.
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue5242.go | 5 // Issue 5242. Cgo incorrectly computed the alignment of structs
|
/prebuilts/go/linux-x86/test/ |
struct0.go | 7 // Test zero length structs.
|
/prebuilts/go/darwin-x86/test/ken/ |
ptrvar.go | 7 // Test pointers and the . (selector) operator on structs.
|
/prebuilts/go/linux-x86/test/ken/ |
ptrvar.go | 7 // Test pointers and the . (selector) operator on structs.
|
/prebuilts/go/darwin-x86/src/go/types/ |
sizes.go | 38 // - Arrays and structs are aligned per spec definition; all other 49 // For arrays and structs, alignment is defined in terms 186 // must be structs (rather than pointer to structs).
|
/prebuilts/go/linux-x86/src/go/types/ |
sizes.go | 38 // - Arrays and structs are aligned per spec definition; all other 49 // For arrays and structs, alignment is defined in terms 186 // must be structs (rather than pointer to structs).
|
/prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/ |
qdox-1.12.jar | |
/prebuilts/go/darwin-x86/src/go/ast/ |
print_test.go | 57 // structs
|
/prebuilts/go/darwin-x86/test/interface/ |
fake.go | 8 // inside reflected-on structs.
|
/prebuilts/go/linux-x86/src/go/ast/ |
print_test.go | 57 // structs
|