Searched defs:FieldIndex (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Dfield-index.h20 class FieldIndex final {
22 FieldIndex() : bit_field_(0) {} function in class:v8::internal::final
24 static FieldIndex ForPropertyIndex(Map* map,
27 static FieldIndex ForInObjectOffset(int offset, Map* map = NULL);
28 static FieldIndex ForDescriptor(Map* map, int descriptor_index);
29 static FieldIndex ForLoadByFieldIndex(Map* map, int index);
30 static FieldIndex FromFieldAccessStubKey(int key);
74 bool operator==(FieldIndex const& other) const {
77 bool operator!=(FieldIndex const& other) const { return !(*this == other); }
80 FieldIndex(boo function in class:v8::internal::final
92 explicit FieldIndex(int bit_field) : bit_field_(bit_field) {} function in class:v8::internal::final
[all...]
/external/clang/lib/CodeGen/
H A DCGBlocks.h147 unsigned FieldIndex; member in class:clang::CodeGen::BlockByrefInfo
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h168 static ABIArgInfo getInAlloca(unsigned FieldIndex) { argument
170 AI.setInAllocaFieldIndex(FieldIndex);
349 void setInAllocaFieldIndex(unsigned FieldIndex) { argument
351 AllocaFieldIndex = FieldIndex;
/external/v8/tools/
H A Dgrokdump.py1366 def FieldIndex(self, value): member in class:DescriptorArray
1377 self.FieldIndex(value),
/external/clang/lib/Sema/
H A DSemaInit.cpp2226 unsigned FieldIndex = 0; local
2234 ++FieldIndex;
2243 FieldIndex = 0;
2286 if (FieldIndex >= StructuredList->getNumInits())
2287 StructuredList->resizeInits(SemaRef.Context, FieldIndex + 1);
2334 unsigned newStructuredIndex = FieldIndex;
2346 ++FieldIndex;
2349 StructuredIndex = FieldIndex;
2355 unsigned newStructuredIndex = FieldIndex;
2369 ++FieldIndex;
[all...]

Completed in 213 milliseconds