/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | sources.py | 243 self.lines = lines[:] 253 lines = [] 255 for line0 in self.lines: 258 lines.append( m.group( 1 ) ) 261 for l in lines: 285 for line in self.lines: 313 self.lines = [] 329 self.lines = [] 366 self.lines.append( line ) 370 if self.lines != []: [all …]
|
A D | docbeauty.py | 34 lines = [" /*************************************************************************"] 36 lines.append( " *" + l ) 37 lines.append( " */" ) 39 block.lines = lines 99 for line in block.lines:
|
A D | content.py | 58 self.lines = [] 62 for l in lines: 69 for l in lines: 74 for l in self.lines: 88 def __init__( self, lines ): argument 89 self.lines = None 91 for l in lines: 97 for l in lines: 152 for l in lines: 242 for l in lines: [all …]
|
A D | tohtml.py | 276 def make_html_code( self, lines ): argument 279 for l in lines: 286 lines = [] 288 if item.lines: 289 lines.append( self.make_html_code( item.lines ) ) 291 lines.append( self.make_html_para( item.words ) ) 293 return string.join( lines, '\n' )
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | gendoc.py | 38 lines = [] 46 elif len(lines) > 0 and lines[-1][1] is not None: 48 if len(lines) > 0 and lines[-1][1] is not None: 51 self.lines = lines 54 if len(self.lines) > 0 and self.lines[0][1] is None: 55 self.lines.pop(0) 78 self.lines = [] 87 self.lines.append("") 90 if len(self.lines) > 0 and self.lines[-1] != "": 133 self.lines = [] [all …]
|
A D | codeformat.py | 95 lines = f.readlines() 100 while lines: 102 l = lines.pop(0) 110 l_next = lines[0]
|
A D | metrics.py | 103 lines = [] 111 lines.append(line) 113 for line in lines:
|
A D | gen-cpydiff.py | 159 lines = entry.split("\n") 160 for line in lines:
|
/AliOS-Things-master/components/py_engine/engine/drivers/sdcard/ |
A D | sdtest.py | 16 lines = line * 200 # 5400 chars 23 n = f.write(lines) 27 n = f.write(lines) 50 if result1 == "".join((lines, short, lines)):
|
/AliOS-Things-master/components/SDL2/test/ |
A D | testintersections.c | 85 SDL_Rect lines[MAX_LINES]; variable 95 lines[num_lines].x = x1; in add_line() 96 lines[num_lines].y = y1; in add_line() 97 lines[num_lines].w = x2; in add_line() 98 lines[num_lines].h = y2; in add_line() 122 SDL_RenderDrawLine(renderer, lines[i].x, lines[i].y, lines[i].w, lines[i].h); in DrawLines() 174 x1 = lines[j].x; in DrawRectLineIntersections() 175 y1 = lines[j].y; in DrawRectLineIntersections() 176 x2 = lines[j].w; in DrawRectLineIntersections() 177 y2 = lines[j].h; in DrawRectLineIntersections()
|
/AliOS-Things-master/components/ble_host/bt_host/port/core/settings/src/ |
A D | settings_file.c | 116 int lines; in settings_file_load_priv() local 125 lines = 0; in settings_file_load_priv() 160 lines++; in settings_file_load_priv() 164 cf->cf_lines = lines; in settings_file_load_priv() 240 int lines; in settings_file_save_and_compress() local 255 lines = 0; in settings_file_save_and_compress() 325 lines++; in settings_file_save_and_compress() 341 cf->cf_lines = lines + 1; in settings_file_save_and_compress()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | nmake.opt | 35 ###### Edit the following lines to choose a feature set you need. ####### 46 # Comment out the following lines to disable internal codecs. 62 # Uncomment and edit following lines to enable JPEG support. 70 # Uncomment and edit following lines to enable ZIP support 79 # Uncomment and edit following lines to enable ISO JBIG support 93 # Comment out the following lines to disable strip chopping 102 # Comment out the following lines to disable treating the fourth sample with 109 # Comment out the following lines to disable picking up YCbCr subsampling
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/tests/ |
A D | test_std.js | 82 var f, line, line_count, lines, i; 84 lines = ["hello world", "line 1", "line 2" ]; 86 for(i = 0; i < lines.length; i++) { 87 f.puts(lines[i], "\n"); 97 assert(line == lines[line_count]); 101 assert(line_count === lines.length);
|
/AliOS-Things-master/components/freetype/src/autofit/ |
A D | afblue.dat | 28 // of two or more lines. The first line holds the enumeration name, and the 29 // remaining lines the corresponding array data. 37 // string. If there are multiple strings (in multiple lines), they are 44 // which can span multiple lines. The opening brace of a block must be
|
/AliOS-Things-master/components/littlevgl/docs/ |
A D | CODING_STYLE.md | 23 * Try to write function shorter than is 50 lines 24 * Always shorter than 100 lines (except very straightforwards) 54 Short "code summaries" of a few lines are accepted. E.g. `/*Calculate the new coordinates*/`
|
/AliOS-Things-master/components/SDL2/src/gfx/ |
A D | SDL_gfx.spec | 20 provided basic drawing routines such as lines, circles or polygons and 41 provided basic drawing routines such as lines, circles or polygons and
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | jscompress.c | 42 int lines; /* number of embedded linefeeds in token */ member 222 tokc.lines = 0; in next() 426 tokc.lines++; in next() 445 tokc.lines++; in next() 540 output_line_num += tt->lines; in print_tok()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | makeqstrdefs.py | 118 lines = f.readlines() 119 all_lines += lines
|
A D | stream.c | 399 mp_obj_t lines = mp_obj_new_list(0, NULL); in stream_unbuffered_readlines() local 405 mp_obj_list_append(lines, line); in stream_unbuffered_readlines() 407 return lines; in stream_unbuffered_readlines()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_xpm.c | 927 static char *get_next_line(char ***lines, SDL_RWops *src, int len) in get_next_line() argument 931 if (lines) { in get_next_line() 932 return *(*lines)++; in get_next_line()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/micro/testing/ |
A D | bluepill.resc | 21 # These lines are needed to show the results of DebugLog calls in the output.
|
A D | stm32f4.resc | 21 # These lines are needed to show the results of DebugLog calls in the output.
|
/AliOS-Things-master/components/ble_host/script/Kconfiglib-10.21.0/ |
A D | menuconfig.py | 1782 lines = text.split("\n") 1784 win_height = min(len(lines) + 4, screen_height) 1785 win_width = min(max(len(line) for line in lines) + 4, screen_width) 2207 lines = _info_str(node).split("\n") 2213 _draw_info_dialog(node, lines, scroll, top_line_win, text_win, 2224 if scroll < _max_scroll(lines, text_win): 2228 scroll = min(scroll + _PG_JUMP, _max_scroll(lines, text_win)) 2234 scroll = _max_scroll(lines, text_win) 2292 def _draw_info_dialog(node, lines, scroll, top_line_win, text_win, argument 2306 for i, line in enumerate(lines[scroll:scroll + text_win_height]): [all …]
|
/AliOS-Things-master/components/ble_mesh/script/Kconfiglib-10.21.0/ |
A D | menuconfig.py | 1782 lines = text.split("\n") 1784 win_height = min(len(lines) + 4, screen_height) 1785 win_width = min(max(len(line) for line in lines) + 4, screen_width) 2207 lines = _info_str(node).split("\n") 2213 _draw_info_dialog(node, lines, scroll, top_line_win, text_win, 2224 if scroll < _max_scroll(lines, text_win): 2228 scroll = min(scroll + _PG_JUMP, _max_scroll(lines, text_win)) 2234 scroll = _max_scroll(lines, text_win) 2292 def _draw_info_dialog(node, lines, scroll, top_line_win, text_win, argument 2306 for i, line in enumerate(lines[scroll:scroll + text_win_height]): [all …]
|
/AliOS-Things-master/components/py_engine/tests/perf_bench/ |
A D | bm_hexiom.py | 457 lines = [line.strip("\r\n") for line in file.splitlines()] 458 size = int(lines[0]) 464 line = lines[linei][size - y - 1 :] 483 line = lines[linei][y:]
|