HomeSort by relevance Sort by last modified time
    Searched defs:Checkpoint (Results 1 - 6 of 6) sorted by null

  /external/libcxx/test/support/
assert_checkpoint.h 8 struct Checkpoint {
14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {}
15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg)
22 s << "NO CHECKPOINT\n";
25 s << file << ":" << line << " " << func << ": Checkpoint";
32 inline Checkpoint& globalCheckpoint() {
33 static Checkpoint C;
38 globalCheckpoint() = Checkpoint();
47 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint(__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
assert_checkpoint.h 8 struct Checkpoint {
17 s << "NO CHECKPOINT\n";
20 s << file << ":" << line << " " << func << ": Checkpoint";
27 inline Checkpoint& globalCheckpoint() {
28 static Checkpoint C;
33 globalCheckpoint() = Checkpoint{0};
42 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint{__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE__, msg}
  /external/v8/src/compiler/
liveness-analyzer.h 105 void Checkpoint(Node* node) { entries_.push_back(Entry(node)); }
ast-graph-builder.cc 844 Node* AstGraphBuilder::Environment::Checkpoint(BailoutId ast_id,
866 // If the owning node has an exception, register the checkpoint to the
867 // predecessor so that the checkpoint is used for both the normal and the
871 liveness_block()->GetPredecessor()->Checkpoint(result);
873 liveness_block()->Checkpoint(result);
4223 Node* checkpoint = graph->NewNode(common()->Checkpoint(), frame_state, local
    [all...]
bytecode-graph-builder.cc 57 // Preserve a checkpoint of the environment for the IR graph. Any
59 Node* Checkpoint(BailoutId bytecode_offset, OutputFrameStateCombine combine,
387 Checkpoint(loop_id, OutputFrameStateCombine::Ignore(), false);
388 Node* checkpoint = local
389 graph()->NewNode(common()->Checkpoint(), frame_state, entry, entry);
390 UpdateEffectDependency(checkpoint);
394 Node* effect = checkpoint;
455 Node* BytecodeGraphBuilder::Environment::Checkpoint(
471 // If the owning node has an exception, register the checkpoint to the
472 // predecessor so that the checkpoint is used for both the normal and th
    [all...]
  /external/v8/src/parsing/
parser-base.h 269 class Checkpoint;
520 friend class Checkpoint;
569 class Checkpoint BASE_EMBEDDED {
571 explicit Checkpoint(ParserBase* parser) {
    [all...]

Completed in 85 milliseconds