Home
last modified time | relevance | path

Searched refs:is_statement (Results 1 – 3 of 3) sorted by relevance

/external/clang/bindings/python/tests/cindex/
Dtest_cursor_kind.py24 assert CursorKind.UNEXPOSED_STMT.is_statement()
/external/v8/src/
Dgdb-jit.cc915 void SetPosition(intptr_t pc, int pos, bool is_statement) { in SetPosition() argument
916 AddPCInfo(PCInfo(pc, pos, is_statement)); in SetPosition()
920 PCInfo(intptr_t pc, int pos, bool is_statement) in PCInfo()
921 : pc_(pc), pos_(pos), is_statement_(is_statement) {} in PCInfo()
1498 bool is_statement = true; in WriteBodyInternal() local
1520 if (!is_statement) { in WriteBodyInternal()
1523 } else if (is_statement != info->is_statement_) { in WriteBodyInternal()
1525 is_statement = !is_statement; in WriteBodyInternal()
/external/clang/bindings/python/clang/
Dcindex.py571 def is_statement(self): member in CursorKind