/third_party/python/Lib/distutils/ |
D | text_file.py | 104 self.current_line = 0 # assuming that file is at BOF! 116 self.current_line = 0 124 self.current_line = None 130 line = self.current_line 230 if isinstance(self.current_line, list): 231 self.current_line[1] = self.current_line[1] + 1 233 self.current_line = [self.current_line, 234 self.current_line + 1] 241 if isinstance(self.current_line, list): 242 self.current_line = self.current_line[1] + 1 [all …]
|
/third_party/selinux/libselinux/src/ |
D | matchmediacon.c | 20 char current_line[PATH_MAX]; in matchmediacon() local 24 if (!fgets_unlocked(current_line, sizeof(current_line), infile)) { in matchmediacon() 28 if (current_line[strlen(current_line) - 1]) in matchmediacon() 29 current_line[strlen(current_line) - 1] = 0; in matchmediacon() 31 ptr = current_line; in matchmediacon()
|
/third_party/e2fsprogs/ext2ed/ |
D | init.c | 110 char current_line [500],current_word [50],*ch; in set_struct_descriptors() local 120 fgets (current_line,500,fp); in set_struct_descriptors() 122 ch=parse_word (current_line,current_word); in set_struct_descriptors() 127 while (strchr (current_line,'{')==NULL) { in set_struct_descriptors() 128 fgets (current_line,500,fp); in set_struct_descriptors() 133 fgets (current_line,500,fp); in set_struct_descriptors() 135 while (strchr (current_line,'}')==NULL) { in set_struct_descriptors() 136 while (strchr (current_line,';')==NULL) { in set_struct_descriptors() 137 fgets (current_line,500,fp); in set_struct_descriptors() 138 if (strchr (current_line,'}')!=NULL) break; in set_struct_descriptors() [all …]
|
/third_party/python/Lib/email/ |
D | charset.py | 336 current_line = [] 339 current_line.append(character) 340 this_line = EMPTYSTRING.join(current_line) 344 current_line.pop() 346 if not lines and not current_line: 350 joined_line = EMPTYSTRING.join(current_line) 353 current_line = [character] 355 joined_line = EMPTYSTRING.join(current_line)
|
/third_party/boost/libs/geometry/index/example/ |
D | glut_vis.cpp | 976 std::string current_line; variable 982 if ( current_line == "storeb" ) in keyboard() 988 else if ( current_line == "storep" ) in keyboard() 993 else if ( current_line == "stores" ) in keyboard() 999 else if ( current_line == "t" ) in keyboard() 1005 else if ( current_line == "rand" ) in keyboard() 1012 else if ( current_line == "bulk" ) in keyboard() 1021 if ( current_line == "knn" ) in keyboard() 1023 else if ( current_line == "knnb" ) in keyboard() 1025 else if ( current_line == "knns" ) in keyboard() [all …]
|
/third_party/boost/libs/interprocess/example/ |
D | doc_anonymous_mutex_shared_data.hpp | 20 : current_line(0) in shared_memory_log() 30 int current_line; member
|
D | doc_upgradable_mutex_shared_data.hpp | 18 : current_line(0) in shared_data() 28 int current_line; member
|
D | comp_doc_anonymous_mutexB.cpp | 55 std::sprintf(data->items[(data->current_line++) % shared_memory_log::NumItems] in main()
|
D | comp_doc_anonymous_upgradable_mutexB.cpp | 56 std::sprintf(data->items[(data->current_line++) % shared_data::NumItems] in main()
|
D | comp_doc_anonymous_upgradable_mutexA.cpp | 58 std::sprintf(data->items[(data->current_line++) % shared_data::NumItems] in main()
|
D | comp_doc_anonymous_mutexA.cpp | 60 std::sprintf(data->items[(data->current_line++) % shared_memory_log::NumItems] in main()
|
/third_party/ffmpeg/libavcodec/ |
D | truemotion1.c | 625 unsigned char *current_line = s->frame->data[0]; in truemotion1_decode_16bit() local 647 current_pixel_pair = (unsigned int *)current_line; in truemotion1_decode_16bit() 740 current_line += s->frame->linesize[0]; in truemotion1_decode_16bit() 752 unsigned char *current_line = s->frame->data[0]; in truemotion1_decode_24bit() local 774 current_pixel_pair = (unsigned int *)current_line; in truemotion1_decode_24bit() 866 current_line += s->frame->linesize[0]; in truemotion1_decode_24bit()
|
/third_party/jerryscript/jerry-core/vm/ |
D | vm-defines.h | 59 uint32_t current_line; /**< currently executed line */ member
|
D | vm.c | 3976 frame_ctx_p->current_line = value; in vm_loop() 4268 frame_ctx_p->current_line = 0; in vm_init_exec()
|
/third_party/boost/tools/build/src/engine/ |
D | debugger.cpp | 389 int current_line = 1; in debug_print_source() local 393 printf( "%d\t", current_line ); in debug_print_source() 405 ++current_line; in debug_print_source() 406 if ( current_line == line ) in debug_print_source() 409 printf( "%d\t", current_line ); in debug_print_source()
|
D | function.cpp | 2065 static int current_line; variable 2069 out_printf( "%s:%d: %s\n", current_file, current_line, message ); in parse_error() 2628 current_line = parse->line; in compile_parse() 2656 current_line = parse->line; in compile_parse() 2712 current_line = value->line; in compile_parse() 2778 current_line = parse->line; in compile_parse() 2830 current_line = parse->line; in compile_parse() 3018 current_line = line; in function_compile_actions()
|
/third_party/python/Lib/distutils/command/ |
D | sdist.py | 348 template.current_line,
|
/third_party/python/Tools/gdb/ |
D | libpython.py | 959 def current_line(self): member in PyFrameObjectPtr 1686 line = pyop.current_line() 1704 line = pyop.current_line()
|