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

  /external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
indentation.py 64 is_block: Whether the token represents a block indentation.
81 def __init__(self, token, is_block=False):
86 is_block: Whether the token represents a block indentation.
91 self.is_block = is_block
92 self.is_transient = not is_block and not token.type in (
101 result += ' {is_block: %s, is_transient: %s}' % (
102 self.is_block, self.is_transient)
234 is_block=token.metadata.context.type == Context.ARRAY_LITERAL))
237 self._Add(TokenInfo(token=token, is_block=True)
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFFormValue.cpp 120 bool is_block = false; local
129 case DW_FORM_block2: m_value.value.uval = data.GetU16(offset_ptr); is_block = true; break;
130 case DW_FORM_block4: m_value.value.uval = data.GetU32(offset_ptr); is_block = true; break;
140 case DW_FORM_block: m_value.value.uval = data.GetULEB128(offset_ptr); is_block = true; break;
141 case DW_FORM_block1: m_value.value.uval = data.GetU8(offset_ptr); is_block = true; break;
173 if (is_block)
  /external/llvm/lib/DebugInfo/DWARF/
DWARFFormValue.cpp 136 bool is_block = false; local
162 is_block = true;
166 is_block = true;
170 is_block = true;
174 is_block = true;
247 if (is_block) {

Completed in 126 milliseconds