Lines Matching refs:ReadVector
205 std::vector<T> ReadVector() { in ReadVector() function in node::SnapshotDeserializer
217 std::vector<T> result = ReadVector<T>(count, std::is_arithmetic<T>{}); in ReadVector()
273 std::vector<Number> ReadVector(size_t count, std::true_type) { in ReadVector() function in node::SnapshotDeserializer
283 std::vector<T> ReadVector(size_t count, std::false_type) { in ReadVector() function in node::SnapshotDeserializer
474 builtins::CodeCacheInfo result{ReadString(), ReadVector<uint8_t>()}; in Read()
552 result.native_execution_async_resources = ReadVector<SnapshotIndex>(); in Read()
687 result.primitive_values = ReadVector<SnapshotIndex>(); in Read()
688 result.template_values = ReadVector<PropInfo>(); in Read()
714 result.persistent_values = ReadVector<PropInfo>(); in Read()
715 result.native_objects = ReadVector<PropInfo>(); in Read()
740 result.builtins = ReadVector<std::string>(); in Read()
898 out->code_cache = r.ReadVector<builtins::CodeCacheInfo>(); in FromBlob()