Home
last modified time | relevance | path

Searched refs:lines (Results 1 – 25 of 81) sorted by relevance

1234

/AliOS-Things-master/components/freetype/src/tools/docmaker/
A Dsources.py243 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 Ddocbeauty.py34 lines = [" /*************************************************************************"]
36 lines.append( " *" + l )
37 lines.append( " */" )
39 block.lines = lines
99 for line in block.lines:
A Dcontent.py58 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 Dtohtml.py276 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 Dgendoc.py38 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 Dcodeformat.py95 lines = f.readlines()
100 while lines:
102 l = lines.pop(0)
110 l_next = lines[0]
A Dmetrics.py103 lines = []
111 lines.append(line)
113 for line in lines:
A Dgen-cpydiff.py159 lines = entry.split("\n")
160 for line in lines:
/AliOS-Things-master/components/py_engine/engine/drivers/sdcard/
A Dsdtest.py16 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 Dtestintersections.c85 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 Dsettings_file.c116 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 Dnmake.opt35 ###### 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 Dtest_std.js82 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 Dafblue.dat28 // 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 DCODING_STYLE.md23 * 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 DSDL_gfx.spec20 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 Djscompress.c42 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 Dmakeqstrdefs.py118 lines = f.readlines()
119 all_lines += lines
A Dstream.c399 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 DIMG_xpm.c927 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 Dbluepill.resc21 # These lines are needed to show the results of DebugLog calls in the output.
A Dstm32f4.resc21 # 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 Dmenuconfig.py1782 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 Dmenuconfig.py1782 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 Dbm_hexiom.py457 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:]

Completed in 30 milliseconds

1234