/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/ |
nasm-parser.h | 113 #define cur_line (yasm_linemap_get_current(parser_nasm->linemap)) macro 115 #define p_expr_new_tree(l,o,r) yasm_expr_create_tree(l,o,r,cur_line) 116 #define p_expr_new_branch(o,r) yasm_expr_create_branch(o,r,cur_line) 117 #define p_expr_new_ident(r) yasm_expr_create_ident(r,cur_line)
|
nasm-parse.c | 249 cur_line); 254 cur_line); 256 parser_nasm->abspos, YASM_EXPR_ADD, e, cur_line); 269 yasm_errwarn_propagate(parser_nasm->errwarns, cur_line); 429 yasm_symtab_define_equ(p_symtab, name, e, cur_line); 606 size, cur_line); 636 return yasm_bc_create_reserve(e, size, cur_line); 670 cur_line); 683 return yasm_bc_create_reserve(e, size, cur_line); 726 parser_nasm->linemap, cur_line); [all...] |
nasm-token.re | 397 (p_object->arch, TOK, TOKLEN, cur_line, &lvalp->bc, 489 yasm_errwarn_propagate(parser_nasm->errwarns, cur_line); 715 yasm_errwarn_propagate(parser_nasm->errwarns, cur_line);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/ |
gas-parser.h | 150 #define cur_line (yasm_linemap_get_current(parser_gas->linemap)) macro 152 #define p_expr_new(l,o,r) yasm_expr_create(o,l,r,cur_line) 153 #define p_expr_new_tree(l,o,r) yasm_expr_create_tree(l,o,r,cur_line) 154 #define p_expr_new_branch(o,r) yasm_expr_create_branch(o,r,cur_line) 155 #define p_expr_new_ident(r) yasm_expr_create_ident(r,cur_line)
|
gas-parse.c | 215 yasm_symtab_define_equ(p_symtab, id, e, cur_line); 226 cur_line)) { 337 yasm_object_directive(p_object, ".file", "gas", &vps, NULL, cur_line); 445 yasm_object_directive(p_object, ".file", "gas", &vps, NULL, cur_line); 535 yasm_intnum_get_uint(value), cur_line); 539 cur_line); 550 yasm_symtab_declare(p_symtab, ID_val, YASM_SYM_DLOCAL, cur_line); 595 cur_line); 602 cur_line); 618 cur_line); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
textwrap.py | 210 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): 212 cur_line : [string], 228 cur_line.append(reversed_chunks[-1][:space_left]) 234 elif not cur_line: 235 cur_line.append(reversed_chunks.pop()) 267 # cur_len is just the length of all the chunks in cur_line. 268 cur_line = [] 290 cur_line.append(chunks.pop()) 300 self._handle_long_word(chunks, cur_line, cur_len, width) 303 if self.drop_whitespace and cur_line and cur_line[-1].strip() == '' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
textwrap.py | 210 def _handle_long_word(self, reversed_chunks, cur_line, cur_len, width): 212 cur_line : [string], 228 cur_line.append(reversed_chunks[-1][:space_left]) 234 elif not cur_line: 235 cur_line.append(reversed_chunks.pop()) 267 # cur_len is just the length of all the chunks in cur_line. 268 cur_line = [] 290 cur_line.append(chunks.pop()) 300 self._handle_long_word(chunks, cur_line, cur_len, width) 303 if self.drop_whitespace and cur_line and cur_line[-1].strip() == '' [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
genperf.c | 51 static unsigned int cur_line = 1; variable 59 fprintf(stderr, "%u: ", cur_line); 303 cur_line++; 335 sprintf(tmp, "#line %u \"%s\"\n", cur_line, filename); 353 cur_line++; 357 cur_line++; 363 cur_line++; 380 sprintf(tmp, "#line %u \"%s\"\n\n", cur_line, filename); 385 cur_line++; 392 cur_line++ [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
fancy_getopt.py | 430 cur_line = [] # list of chunks (to-be-joined) 436 cur_line.append(chunks[0]) 441 if cur_line and cur_line[-1][0] == ' ': 442 del cur_line[-1] 451 cur_line.append(chunks[0][0:width]) 462 lines.append(string.join(cur_line, ''))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
fancy_getopt.py | 430 cur_line = [] # list of chunks (to-be-joined) 436 cur_line.append(chunks[0]) 441 if cur_line and cur_line[-1][0] == ' ': 442 del cur_line[-1] 451 cur_line.append(chunks[0][0:width]) 462 lines.append(string.join(cur_line, ''))
|
/external/chromium/testing/gtest/scripts/ |
pump.py | 707 def IsComment(cur_line): 708 return '//' in cur_line 711 def IsInPreprocessorDirevative(prev_lines, cur_line): 712 if cur_line.lstrip().startswith('#'): 729 cur_line = '' 731 if len((cur_line + seg).rstrip()) < max_len: 732 cur_line += seg 734 if cur_line.strip() != '': 735 output.append(prefix + cur_line.rstrip()) 736 cur_line = seg.lstrip( [all...] |
/external/chromium_org/testing/gtest/scripts/ |
pump.py | 707 def IsSingleLineComment(cur_line): 708 return '//' in cur_line 711 def IsInPreprocessorDirective(prev_lines, cur_line): 712 if cur_line.lstrip().startswith('#'): 729 cur_line = '' 731 if len((cur_line + seg).rstrip()) < max_len: 732 cur_line += seg 734 if cur_line.strip() != '': 735 output.append(prefix + cur_line.rstrip()) 736 cur_line = seg.lstrip( [all...] |
/external/gtest/scripts/ |
pump.py | 707 def IsComment(cur_line): 708 return '//' in cur_line 711 def IsInPreprocessorDirevative(prev_lines, cur_line): 712 if cur_line.lstrip().startswith('#'): 729 cur_line = '' 731 if len((cur_line + seg).rstrip()) < max_len: 732 cur_line += seg 734 if cur_line.strip() != '': 735 output.append(prefix + cur_line.rstrip()) 736 cur_line = seg.lstrip( [all...] |
/external/libffi/testsuite/lib/ |
libffi-dg.exp | 206 while { [gets $fd cur_line]>=0 } { 207 if [string match "*$pattern*" $cur_line] then {
|
/external/chromium_org/tools/gn/ |
tokenizer.cc | 139 int cur_line = 1; local 149 cur_line++; 150 if (cur_line == n)
|