HomeSort by relevance Sort by last modified time
    Searched refs:FieldCount (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Sema/
CXXFieldCollector.h 32 /// FieldCount - Each entry represents the number of fields collected during
35 SmallVector<size_t, 4> FieldCount;
43 // // At this point, Fields contains [x,y,q] decls and FieldCount contains
47 // // At this point, Fields contains [x,y,z] decls and FieldCount contains
53 void StartClass() { FieldCount.push_back(0); }
58 ++FieldCount.back();
63 assert(!FieldCount.empty() && "no currently-parsed class");
64 return FieldCount.back();
74 FieldCount.pop_back();
  /external/clang/lib/AST/
RecordLayout.cpp 36 unsigned fieldcount)
39 FieldCount(fieldcount), CXXInfo(nullptr) {
40 if (FieldCount > 0) {
41 FieldOffsets = new (Ctx) uint64_t[FieldCount];
42 memcpy(FieldOffsets, fieldoffsets, FieldCount * sizeof(*FieldOffsets));
54 unsigned fieldcount,
67 FieldCount(fieldcount), CXXInfo(new (Ctx) CXXRecordLayoutInfo)
69 if (FieldCount > 0)
    [all...]
  /external/clang/include/clang/AST/
RecordLayout.h 76 // FieldCount - Number of fields.
77 unsigned FieldCount;
141 unsigned fieldcount);
151 const uint64_t *fieldoffsets, unsigned fieldcount,
177 unsigned getFieldCount() const { return FieldCount; }
182 assert (FieldNo < FieldCount && "Invalid Field No");
  /external/chromium_org/components/autofill/core/browser/
form_structure_unittest.cc 62 TEST(FormStructureTest, FieldCount) {
    [all...]

Completed in 323 milliseconds