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 34 unsigned fieldcount)
36 FieldCount(fieldcount), CXXInfo(0) {
37 if (FieldCount > 0) {
38 FieldOffsets = new (Ctx) uint64_t[FieldCount];
39 memcpy(FieldOffsets, fieldoffsets, FieldCount * sizeof(*FieldOffsets));
49 unsigned fieldcount,
58 FieldCount(fieldcount), CXXInfo(new (Ctx) CXXRecordLayoutInfo)
60 if (FieldCount > 0)
    [all...]
  /external/clang/include/clang/AST/
RecordLayout.h 72 // FieldCount - Number of fields.
73 unsigned FieldCount;
119 unsigned fieldcount);
127 const uint64_t *fieldoffsets, unsigned fieldcount,
150 unsigned getFieldCount() const { return FieldCount; }
155 assert (FieldNo < FieldCount && "Invalid Field No");
  /external/chromium/chrome/browser/autofill/
form_structure_unittest.cc 51 TEST(FormStructureTest, FieldCount) {
    [all...]

Completed in 68 milliseconds