HomeSort by relevance Sort by last modified time
    Searched refs:is_statement (Results 1 - 17 of 17) sorted by null

  /external/v8/src/interpreter/
source-position-table.h 26 : bytecode_offset(0), source_position(0), is_statement(false) {}
30 is_statement(statement) {}
34 bool is_statement; member in struct:v8::internal::interpreter::PositionTableEntry
49 bool is_statement);
78 bool is_statement() const { function in class:v8::internal::interpreter::SourcePositionTableIterator
80 return current_.is_statement;
source-position-table.cc 34 // Helper: Add the offsets from 'other' to 'value'. Also set is_statement.
39 value.is_statement = other.is_statement;
69 // Since bytecode_offset is not negative, we use sign to encode is_statement.
70 EncodeInt(bytes, entry.is_statement ? entry.bytecode_offset
96 entry->is_statement = true;
99 entry->is_statement = false;
109 bool is_statement) {
111 AddEntry({offset, source_position, is_statement});
120 if (entry.is_statement) {
    [all...]
bytecode-pipeline.h 61 BytecodeSourceInfo(int source_position, bool is_statement)
62 : position_type_(is_statement ? PositionType::kStatement
83 DCHECK(!is_statement());
107 bool is_statement() const { function in class:v8::internal::interpreter::final
bytecode-pipeline.cc 132 char description = info.is_statement() ? 'S' : 'E';
bytecode-peephole-optimizer.cc 196 !current->source_info().is_statement()) {
bytecode-array-writer.cc 104 source_info.is_statement());
bytecode-array-builder.cc 105 if (latest_source_info_.is_statement() ||
645 if (!latest_source_info_.is_statement()) {
  /external/v8/test/cctest/interpreter/
source-position-matcher.cc 28 return entry.is_statement ? 1 : 0;
154 if ((original.is_statement || optimized.is_statement) ||
170 !expression_positions->at(i).is_statement);
213 if (iterator->is_statement()) {
218 iterator->is_statement()});
bytecode-expectations-printer.cc 207 if (source_iterator.is_statement()) {
  /external/v8/test/unittests/interpreter/
bytecode-pipeline-unittest.cc 21 CHECK_EQ(x.is_statement(), true);
24 CHECK_EQ(x.is_statement(), false);
38 CHECK_EQ(y.is_statement(), true);
42 CHECK_EQ(y.is_statement(), true);
47 CHECK_EQ(y.is_statement(), false);
51 CHECK_EQ(y.is_statement(), true);
bytecode-array-writer-unittest.cc 150 CHECK_EQ(source_iterator.is_statement(), expected.is_statement);
246 CHECK_EQ(source_iterator.is_statement(), expected.is_statement);
  /external/clang/bindings/python/tests/cindex/
test_cursor_kind.py 24 assert CursorKind.UNEXPOSED_STMT.is_statement()
38 'is_statement', 'is_invalid', 'is_attribute')
  /external/v8/src/
gdb-jit.cc 927 void SetPosition(intptr_t pc, int pos, bool is_statement) {
928 AddPCInfo(PCInfo(pc, pos, is_statement));
932 PCInfo(intptr_t pc, int pos, bool is_statement)
933 : pc_(pc), pos_(pos), is_statement_(is_statement) {}
1512 bool is_statement = true; local
    [all...]
objects.cc     [all...]
  /external/v8/src/debug/
debug.cc 204 if (source_position_iterator_.is_statement()) {
242 } else if (source_position_iterator_.is_statement()) {
    [all...]
liveedit.cc     [all...]
  /external/clang/bindings/python/clang/
cindex.py 571 def is_statement(self): member in class:CursorKind
    [all...]

Completed in 3154 milliseconds