/ark/runtime_core/verification/util/ |
D | lazy.h | 270 C ContainerOf(S stream, typename std::decay<decltype( 277 while (auto val = stream()) { 285 S stream, 293 while (auto val = stream()) { 314 auto FirstElement(Stream stream) in FirstElement() argument 316 return stream(); in FirstElement() 320 bool IsLazyStreamEmpty(Stream stream) in IsLazyStreamEmpty() argument 322 return !FirstElement(stream); in IsLazyStreamEmpty() 326 auto Find(Stream stream, Pred pred) in Find() argument 328 return FirstElement(Filter(stream, pred)); in Find() [all …]
|
D | relation.h | 108 auto stream = Direct_[from].LazyIntersect(Inverse_[to]); in ForAllBetween() local 109 auto value = stream(); in ForAllBetween() 114 value = stream(); in ForAllBetween()
|
D | int_set.h | 187 static const_iterator make(Stream &&stream, Index<T> index) in make() argument 189 return {MMakePandaUnique<LargeConstIterRepr<Stream>>(std::move(stream), index)}; in make() 604 auto stream = repr_.LazyIndicesOf<1>(); in cbegin() local 605 Index<T> start_idx = stream(); in cbegin() 606 return const_iterator::make(std::move(stream), start_idx); in cbegin() 705 …LargeConstIterRepr(Stream &&stream, Index<T> index) : stream_ {std::move(stream)}, index_ {index} … in LargeConstIterRepr() argument
|
/ark/runtime_core/libpandabase/utils/ |
D | bit_table.h | 35 static std::array<uint32_t, N> Read(BitMemoryStreamIn *stream) in Read() argument 40 auto data = stream->Read<uint64_t>(N * INLINE_BITS); in Read() 46 values[i] = stream->Read<uint32_t>((values[i] - INLINE_MAX) * BITS_PER_BYTE); in Read() 53 static void Write(BitMemoryStreamOut<Container> &stream, const std::array<uint32_t, N> &data) in Write() argument 57 … stream.Write(INLINE_MAX + BitsToBytesRoundUp(MinimumBitsToStore(value)), INLINE_BITS); in Write() 59 stream.Write(value, INLINE_BITS); in Write() 64 stream.Write(value, BitsToBytesRoundUp(MinimumBitsToStore(value)) * BITS_PER_BYTE); in Write() 418 void Decode(BitMemoryStreamIn *stream) in Decode() argument 420 auto columns = VarintPack::Read<NUM_COLUMNS + 1>(stream); in Decode() 429 region_ = stream->ReadRegion(GetRowsCount() * GetRowSizeInBits()); in Decode() [all …]
|
D | logger.cpp | 145 std::ofstream stream(log_file); in InitializeFileLogging() local 146 if (stream) { in InitializeFileLogging() 148 logger = new FileLogger(std::move(stream), level, component_mask); in InitializeFileLogging()
|
D | logger.h | 323 FileLogger(std::ofstream &&stream, Level level, ComponentMask component_mask) in FileLogger() argument 324 : Logger(level, component_mask), stream_(std::forward<std::ofstream>(stream)) in FileLogger()
|
/ark/runtime_core/runtime/include/ |
D | language_context.h | 425 friend std::ostream &operator<<(std::ostream &stream, const LanguageContext &ctx) 429 return stream << "PandaAssembly"; 431 return stream << "ECMAScript"; 438 return stream;
|
/ark/runtime_core/runtime/ |
D | cframe.cpp | 78 auto print_mem = [](std::ostream &stream, void *addr, std::string_view dscr, uintptr_t value) { in Dump() argument 80 …stream << ' ' << addr << ": " << std::setw(WIDTH) << std::setfill(' ') << dscr << " 0x" << std::he… in Dump()
|
D | runtime.cpp | 1138 [](ClassLinkerContext *ctx, std::ostream &stream, ClassLinkerContext *parent) { in DumpForSigQuit() argument 1139 ctx->Dump(stream); in DumpForSigQuit()
|
/ark/runtime_core/libpandafile/templates/ |
D | type.h.erb | 220 friend std::ostream &operator<<(std::ostream &stream, const Type &type) { 224 stream << "<%= PandaFile::asm_name(type) %>"; 228 return stream;
|
/ark/runtime_core/libpandafile/ |
D | bytecode_instruction.h | 65 friend std::ostream &operator<<(std::ostream &stream, BytecodeId id) 67 return stream << id.id_;
|
D | file.h | 115 friend std::ostream &operator<<(std::ostream &stream, const EntityId &id) 117 return stream << id.offset_;
|
/ark/runtime_core/docs/diagrams/ |
D | stacktrace.pusequence | 32 StackPrinter -> "output stream": Print
|
/ark/ts2abc/test262/ |
D | eshost.patch | 78 // When evalScript is called with a test262-stream test record:
|