Home
last modified time | relevance | path

Searched refs:START_BLOCK (Results 1 – 11 of 11) sorted by relevance

/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
Dindentation.py155 start_token = self._PopTo(Type.START_BLOCK)
182 self._Add(self._PopTo(Type.START_BLOCK))
226 elif token_type == Type.START_BLOCK or token.metadata.is_implied_block:
498 if (token_info.token.type == Type.START_BLOCK and
530 if (token_info.token.type == Type.START_BLOCK and
556 if token_info.token.type not in (Type.START_BLOCK, Type.START_BRACKET):
Djavascripttokenizer.py104 START_BLOCK = re.compile('{') variable in JavaScriptTokenizer
289 Matcher(START_BLOCK, Type.DOC_START_BRACE),
349 Matcher(cls.START_BLOCK, Type.START_BLOCK),
Decmametadatapass.py343 if next_code.type != TokenType.START_BLOCK:
365 if (next_code.type != TokenType.START_BLOCK and
386 elif token_type == TokenType.START_BLOCK:
511 next_code_is_block = next_code and next_code.type == TokenType.START_BLOCK
Djavascriptstatetracker.py141 if token.type == Type.START_BLOCK:
Djavascripttokens.py38 START_BLOCK = '{' variable in JavaScriptTokenType
Decmalintrules.py341 elif (token_type == Type.START_BLOCK and
372 if state.InInterfaceMethod() and last_code.type != Type.START_BLOCK:
685 next_code.type in (Type.START_BRACKET, Type.START_BLOCK) or
Dtokenutil.py435 if token.type != JavaScriptTokenType.START_BLOCK:
Djavascriptlintrules.py545 elif token.type == Type.START_BLOCK:
Dstatetracker.py1098 if type == Type.START_BLOCK:
/external/f2fs-tools/fsck/
Df2fs.h297 #define START_BLOCK(sbi, segno) (SM_I(sbi)->main_blkaddr + \ macro
351 if (START_BLOCK(sbi, curseg->segno) + in IS_VALID_BLK_ADDR()
Dmount.c632 addr = START_BLOCK(sbi, segno); in restore_node_summary()