/external/flatbuffers/tests/FlatBuffers.Test/ |
D | TestTable.cs | 32 public bool GetSlot(int slot, bool def) in GetSlot() method 43 public sbyte GetSlot(int slot, sbyte def) in GetSlot() method 54 public byte GetSlot(int slot, byte def) in GetSlot() method 65 public short GetSlot(int slot, short def) in GetSlot() method 76 public ushort GetSlot(int slot, ushort def) in GetSlot() method 87 public int GetSlot(int slot, int def) in GetSlot() method 98 public uint GetSlot(int slot, uint def) in GetSlot() method 109 public long GetSlot(int slot, long def) in GetSlot() method 120 public ulong GetSlot(int slot, ulong def) in GetSlot() method 131 public float GetSlot(int slot, float def) in GetSlot() method [all …]
|
D | FlatBuffersFuzzTests.cs | 679 Assert.AreEqual(FuzzTestData.BoolValue, table.GetSlot(f, false)); in CheckObjects() 684 Assert.AreEqual(FuzzTestData.Int8Value, table.GetSlot(f, (sbyte)0)); in CheckObjects() 689 Assert.AreEqual(FuzzTestData.UInt8Value, table.GetSlot(f, (byte)0)); in CheckObjects() 694 Assert.AreEqual(FuzzTestData.Int16Value, table.GetSlot(f, (short)0)); in CheckObjects() 699 Assert.AreEqual(FuzzTestData.UInt16Value, table.GetSlot(f, (ushort)0)); in CheckObjects() 704 Assert.AreEqual(FuzzTestData.Int32Value, table.GetSlot(f, (int)0)); in CheckObjects() 709 Assert.AreEqual(FuzzTestData.UInt32Value, table.GetSlot(f, (uint)0)); in CheckObjects() 714 Assert.AreEqual(FuzzTestData.Int64Value, table.GetSlot(f, (long)0)); in CheckObjects() 719 Assert.AreEqual(FuzzTestData.UInt64Value, table.GetSlot(f, (ulong)0)); in CheckObjects() 724 Assert.AreEqual(FuzzTestData.Float32Value, table.GetSlot(f, (float)0)); in CheckObjects() [all …]
|
/external/flatbuffers/tests/ |
D | py_test.py | 262 table.GetSlot(f, False, N.BoolFlags)) 265 table.GetSlot(f, 0, N.Int8Flags)) 268 table.GetSlot(f, 0, N.Uint8Flags)) 271 table.GetSlot(f, 0, N.Int16Flags)) 274 table.GetSlot(f, 0, N.Uint16Flags)) 277 table.GetSlot(f, 0, N.Int32Flags)) 280 table.GetSlot(f, 0, N.Uint32Flags)) 283 table.GetSlot(f, 0, N.Int64Flags)) 286 table.GetSlot(f, 0, N.Uint64Flags)) 289 table.GetSlot(f, 0, N.Float32Flags)) [all …]
|
/external/flatbuffers/python/flatbuffers/ |
D | table.py | 95 def GetSlot(self, slot, d, validator_flags): member in Table
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 1133 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1197 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1200 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1212 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 1166 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1228 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1232 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1244 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 1123 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1187 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1190 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1202 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 1207 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1266 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1270 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1284 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 1194 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1253 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1257 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1270 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 1207 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1266 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1270 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1284 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 1209 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1268 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1272 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1286 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/s390/ |
D | full-codegen-s390.cc | 1143 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1201 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1205 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1219 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 1177 EmitSetHomeObject(expression, offset, property->GetSlot()); in EmitAccessor() 1236 CallStoreIC(property->GetSlot(0), key->value(), true); in VisitObjectLiteral() 1240 EmitSetHomeObjectAccumulator(value, 0, property->GetSlot(1)); in VisitObjectLiteral() 1254 EmitSetHomeObject(value, 2, property->GetSlot()); in VisitObjectLiteral()
|
/external/v8/src/crankshaft/ |
D | typing.cc | 408 FeedbackSlot slot = prop->GetSlot(); in VisitObjectLiteral()
|
D | hydrogen.cc | 5518 FeedbackSlot slot = property->GetSlot(); in VisitObjectLiteral() 5548 STORE, NULL, property->GetSlot(1), value, sym, literal); in VisitObjectLiteral()
|
/external/v8/src/ast/ |
D | ast.cc | 377 return GetSlot(offset); in GetStoreDataPropertySlot()
|
D | ast.h | 1306 FeedbackSlot GetSlot(int offset = 0) const {
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 1721 feedback_index(property->GetSlot(0))); in VisitObjectLiteral() 1726 feedback_index(property->GetSlot(0))); in VisitObjectLiteral() 3277 FeedbackSlot slot = property->GetSlot(slot_number); in VisitSetHomeObject()
|
/external/v8/src/compiler/ |
D | ast-graph-builder.cc | 1321 CreateVectorSlotPair(property->GetSlot(0)); in VisitObjectLiteral() 2691 CreateVectorSlotPair(property->GetSlot(slot_number)); in BuildSetHomeObject()
|