HomeSort by relevance Sort by last modified time
    Searched refs:structs (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /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}}
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
test_support.py 96 len(module1.structs) != len(module2.structs) or \
99 for i in range(len(module1.structs)):
100 if not KindsAreEqual(module1.structs[i], module2.structs[i]):
130 errors += EXPECT_EQ(1, len(module.structs))
131 errors += EXPECT_EQ('teststruct', module.structs[0].name)
132 errors += EXPECT_EQ(2, len(module.structs[0].fields))
133 errors += EXPECT_EQ('testfield1', module.structs[0].fields[0].name)
134 errors += EXPECT_EQ(mojom.INT32, module.structs[0].fields[0].kind
    [all...]
  /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 928 - Parses structs and unions to a list of Structure objects.
936 types, constants, structs, defines, typemap = parser.Parse()
981 Returns these in the following order: types, constants, structs, defines,
987 structs = []
996 structs += self._ParseStructures(self._STRUCTURE_SECTION_RE, typemap)
998 structs += self._ParseStructures(self._UNION_SECTION_RE, typemap)
1005 # Empty structs not handled by the extractor.
1006 self._AddEmptyStruct('TPMU_SYM_DETAILS', True, structs, typemap)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue14729.go 7 // Issue 14729: structs cannot embed unsafe.Pointer per the spec.
issue7366.go 8 // during comparison of small structs.
bug477.go 7 // Test multiple identical unnamed structs with methods. This caused
  /prebuilts/go/linux-x86/test/fixedbugs/
issue14729.go 7 // Issue 14729: structs cannot embed unsafe.Pointer per the spec.
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
  /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.
  /external/libopus/
silk_headers.mk 11 silk/structs.h \
  /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.
  /external/syslinux/com32/gplinclude/acpi/
acpi.h 23 #include <acpi/structs.h>
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /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
68 // Multiword data structures are effectively structs
193 // 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
68 // Multiword data structures are effectively structs
193 // must be structs (rather than pointer to structs).
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
composite.go 97 // Check whitelisted structs: if vet is run with --compositewhitelist=false,

Completed in 388 milliseconds

1 2 3 4 5 6 7 8