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

  /external/chromium-trace/trace-viewer/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/chromium_org/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 token.type not in (
101 result += ' {is_block: %s, is_transient: %s}' % (
102 self.is_block, self.is_transient)
235 is_block=token.metadata.context.type == Context.ARRAY_LITERAL))
238 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/
DWARFFormValue.cpp 133 bool is_block = false; local
157 is_block = true;
161 is_block = true;
165 is_block = true;
169 is_block = true;
242 if (is_block) {

Completed in 148 milliseconds