/AliOS-Things-master/hardware/chip/haas1000/drivers/services/ble_stack/common/api/ |
A D | lePhone_rw_ble_error.txt | 12 [BLE]: ke_msg_send line: 72 ++++ 27 [BLE]: ke_msg_send line: 72 ++++ 29 [BLE]: l2cc_create line: 106 ++++ 31 [BLE]: l2cc_create line: 140 ---- 33 [BLE]: htpt_create line: 176 ++++ 35 [BLE]: htpt_create line: 182 ---- 55 [BLE]: ke_msg_send line: 72 ++++ 72 [BLE]: ke_msg_send line: 72 ++++ 89 [BLE]: ke_msg_send line: 72 ++++ 101 [BLE]: ke_msg_send line: 72 ++++ [all …]
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_line.c | 124 lv_obj_set_size(line, xmax + style->line.width, ymax + style->line.width); in lv_line_set_points() 127 lv_obj_invalidate(line); in lv_line_set_points() 161 lv_obj_invalidate(line); in lv_line_set_y_invert() 219 lv_obj_get_coords(line, &area); in lv_line_design() 251 if(style->line.rounded) { in lv_line_design() 252 … circle_area.x1 = p1.x - ((style->line.width - 1) >> 1) - ((style->line.width - 1) & 0x1); in lv_line_design() 253 … circle_area.y1 = p1.y - ((style->line.width - 1) >> 1) - ((style->line.width - 1) & 0x1); in lv_line_design() 261 if(style->line.rounded) { in lv_line_design() 262 … circle_area.x1 = p2.x - ((style->line.width - 1) >> 1) - ((style->line.width - 1) & 0x1); in lv_line_design() 263 … circle_area.y1 = p2.y - ((style->line.width - 1) >> 1) - ((style->line.width - 1) & 0x1); in lv_line_design() [all …]
|
A D | lv_line.h | 72 void lv_line_set_points(lv_obj_t * line, const lv_point_t point_a[], uint16_t point_num); 80 void lv_line_set_auto_size(lv_obj_t * line, bool en); 89 void lv_line_set_y_invert(lv_obj_t * line, bool en); 101 static inline void lv_line_set_style(lv_obj_t * line, lv_line_style_t type, const lv_style_t * styl… in lv_line_set_style() argument 104 lv_obj_set_style(line, style); in lv_line_set_style() 116 bool lv_line_get_auto_size(const lv_obj_t * line); 123 bool lv_line_get_y_invert(const lv_obj_t * line); 131 static inline const lv_style_t * lv_line_get_style(const lv_obj_t * line, lv_line_style_t type) in lv_line_get_style() argument 134 return lv_obj_get_style(line); in lv_line_get_style()
|
/AliOS-Things-master/components/SDL2/src/joystick/ |
A D | sort_controllers.py | 26 def save_controller(line): argument 46 if ',sdk' in line or ',hint:' in line: 69 line = line.replace("\t", " ") 70 if not line.endswith(",\n") and not line.endswith("*/\n"): 72 output.write(line) 77 for line in input: 80 output.write(line) 84 output.write(line) 87 output.write(line) 90 output.write(line) [all …]
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | makecompresseddata.py | 29 for line in error_strings: 30 check_non_ascii(line) 49 check_non_ascii(line) 92 for c in line: 101 result = line 116 check_non_ascii(line) 117 if len(line) < N: 140 result += line[len(line) - len(line) % N :] 153 for line in f: 154 line = line.strip() [all …]
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | cc1 | 96 output.append(line) 103 if len(line) == 0: 106 line = line.strip() 107 if len(line) == 0: 113 if line == '};': 187 if len(line) == 0: 190 line = line.strip() 191 if len(line) == 0: 202 print(line) 205 output.append(line) [all …]
|
A D | file2h.py | 19 for line in open(filename, "r").readlines(): 22 if line.endswith(ending): 27 line = line.rstrip("\r\n") variable 28 line = line.replace("\\", "\\\\") variable 29 line = line.replace('"', '\\"') variable 30 print('"%s%s"' % (line, line_end))
|
A D | verifygitlog.py | 27 for line in subprocess.Popen(args, stdout=subprocess.PIPE).stdout: 28 yield line.decode().rstrip("\r\n") 46 for line in git_log("%ae%n%ce", sha, "-n1"): 47 very_verbose("email", line) 48 if "noreply" in line: 49 error("Unwanted email address: " + line) 71 for line in raw_body[2:]: 72 if len(line) >= 76: 73 error("Message lines should be 75 or less characters: " + line)
|
A D | insert-usb-ids.py | 17 for line in open(filename).readlines(): 18 line = line.rstrip("\r\n") 19 match = re.match("^#define\s+(\w+)\s+\(0x([0-9A-Fa-f]+)\)$", line) 36 for line in open(template_file, "r").readlines(): 37 print(string.Template(line).safe_substitute(replacements), end="")
|
/AliOS-Things-master/components/py_engine/engine/shared/readline/ |
A D | readline.c | 91 vstr_t *line; member 324 vstr_cut_tail_bytes(rl.line, rl.line->len - rl.orig_line_len); in readline_process_char() 430 mp_hal_stdout_tx_strn(rl.line->buf + rl.cursor_pos, rl.line->len - rl.cursor_pos); in readline_process_char() 445 vstr_t *line = rl.line; in readline_auto_indent() local 446 if (line->len > 1 && line->buf[line->len - 1] == '\n') { in readline_auto_indent() 473 if (line->buf[line->len - 2] == ':') { in readline_auto_indent() 486 rl.orig_line_len = rl.line->len; in readline_note_newline() 496 rl.line = line; in readline_init() 497 rl.orig_line_len = line->len; in readline_init() 510 readline_init(line, prompt); in readline() [all …]
|
/AliOS-Things-master/components/littlevgl/src/lv_draw/ |
A D | lv_draw_line.c | 580 line->dx = LV_MATH_ABS(line->p2.x - line->p1.x); in line_init() 581 line->sx = line->p1.x < line->p2.x ? 1 : -1; in line_init() 582 line->dy = LV_MATH_ABS(line->p2.y - line->p1.y); in line_init() 583 line->sy = line->p1.y < line->p2.y ? 1 : -1; in line_init() 584 line->err = (line->dx > line->dy ? line->dx : -line->dy) / 2; in line_init() 594 if(line->p_act.x == line->p2.x && line->p_act.y == line->p2.y) return false; in line_next() 595 line->e2 = line->err; in line_next() 596 if(line->e2 > -line->dx) { in line_next() 597 line->err -= line->dy; in line_next() 600 if(line->e2 < line->dy) { in line_next() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_xv.c | 31 if ( SDL_RWread(src, line, 1, 1) <= 0 ) { in get_line() 34 if ( *line == '\r' ) { in get_line() 37 if ( *line == '\n' ) { in get_line() 38 *line = '\0'; in get_line() 41 ++line; in get_line() 50 char line[1024]; in get_header() local 56 if ( (get_line(src, line, sizeof(line)) < 0) || in get_header() 57 (SDL_memcmp(line, "P7 332", 6) != 0) ) { in get_header() 62 while ( get_line(src, line, sizeof(line)) == 0 ) { in get_header() 68 if ( get_line(src, line, sizeof(line)) == 0 ) { in get_header() [all …]
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/doc/ |
A D | depgraph.sh | 83 while IFS= read -r line; do 84 if [[ "${line}" =~ '->' ]]; then 85 arrow_lines+=("${line}") 90 if [[ "${line}" =~ ${f} ]]; then 91 frontend_lines+=("${line}") 99 if [[ "${line}" =~ ${f} ]]; then 100 middleend_lines+=("${line}") 108 if [[ "${line}" =~ ${f} ]]; then 109 backend_lines+=("${line}") 117 if [[ "${line}" =~ ${f} ]]; then [all …]
|
/AliOS-Things-master/components/freetype/src/tools/docmaker/ |
A D | tohtml.py | 260 line = "" 264 line = line + " " + self.make_html_word( word ) 266 line = re_url.sub( r'<a href="\1">\1</a>', line ) 272 line = string.replace( line, "~", " " ) 280 line = line + html_quote( l ) + '\n' 330 line = line[length:] 397 line = line + '<td></td>' 398 line = line + "</tr>" 495 line = line + '<td></td><td>' 500 line = line + '</td>' [all …]
|
A D | sources.py | 285 for line in self.lines: 286 print line 331 for line in fileinput.input( filename ): 333 if line[-1] == '\012': 334 line = line[0:-1] 337 self.process_normal_line( line ) 342 self.lines.append( line ) 346 self.lines.append( line ) 358 def process_normal_line( self, line ): argument 361 if f.start.match( line ): [all …]
|
/AliOS-Things-master/components/mbedtls/library/ |
A D | debug.c | 115 debug_send_line( ssl, level, file, line, str ); in mbedtls_debug_print_msg() 119 const char *file, int line, in mbedtls_debug_print_ret() argument 138 debug_send_line( ssl, level, file, line, str ); in mbedtls_debug_print_ret() 155 debug_send_line( ssl, level, file, line, str ); in mbedtls_debug_print_buf() 197 const char *file, int line, in mbedtls_debug_print_ecp() argument 215 const char *file, int line, in mbedtls_debug_print_mpi() argument 236 debug_send_line( ssl, level, file, line, str ); in mbedtls_debug_print_mpi() 273 debug_send_line( ssl, level, file, line, str ); in mbedtls_debug_print_mpi() 290 debug_send_line( ssl, level, file, line, in debug_print_pk() 311 debug_send_line( ssl, level, file, line, in debug_print_pk() [all …]
|
/AliOS-Things-master/components/mbedtls/programs/hash/ |
A D | generic_sum.c | 59 int line ) in mbedtls_param_failed() argument 103 char line[1024]; in generic_check() local 120 memset( line, 0, sizeof( line ) ); in generic_check() 122 n = sizeof( line ); in generic_check() 124 while( fgets( line, (int) n - 1, f ) != NULL ) in generic_check() 126 n = strlen( line ); in generic_check() 134 …if( line[2 * mbedtls_md_get_size( md_info )] != ' ' || line[2 * mbedtls_md_get_size( md_info ) + 1… in generic_check() 140 if( line[n - 1] == '\n' ) { n--; line[n] = '\0'; } in generic_check() 141 if( line[n - 1] == '\r' ) { n--; line[n] = '\0'; } in generic_check() 159 diff |= line[i] ^ buf[i]; in generic_check() [all …]
|
/AliOS-Things-master/components/freetype/src/tools/ |
A D | glnames.py | 4927 line = "" 4945 line = " " 4950 line += comma 5159 for line in lines: 5160 if line: 5195 line = " " 5199 line += comma 5217 line = "" 5222 line += comma 5232 write( line ) [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/scripts/ |
A D | dfn.awk | 74 line=$0 78 if (sub(/^[^"]*PNG_DFN *"/,"",line) != 1) { 110 if (line ~ /@"/) { 118 if (!sub(/@" */, "", line) || !sub(/ *"@/, "", line)) { 131 line = line " " nextline 148 if (sub(/"[^"]*$/, "", line)) 155 line = line " " nextline
|
/AliOS-Things-master/components/py_engine/tests/net_inet/ |
A D | uasyncio_tcp_read_headers.py | 21 line = await reader.readline() 22 line = line.strip() 23 if not line: 26 line.find(b"Date") == -1 27 and line.find(b"Modified") == -1 28 and line.find(b"Server") == -1 30 print(line)
|
/AliOS-Things-master/components/py_engine/engine/shared/runtime/ |
A D | pyexec.c | 487 vstr_t line; in pyexec_raw_repl() local 488 vstr_init(&line, 32); in pyexec_raw_repl() 494 vstr_reset(&line); in pyexec_raw_repl() 500 if (vstr_len(&line) == 2 && vstr_str(&line)[0] == CHAR_CTRL_E) { in pyexec_raw_repl() 531 if (line.len == 0) { in pyexec_raw_repl() 534 vstr_clear(&line); in pyexec_raw_repl() 546 vstr_t line; in pyexec_friendly_repl() local 547 vstr_init(&line, 32); in pyexec_friendly_repl() 595 vstr_reset(&line); in pyexec_friendly_repl() 602 vstr_clear(&line); in pyexec_friendly_repl() [all …]
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_memory.c | 226 char line[128], *tmp; in SDLTest_LogAllocations() local 236 message_size += (SDL_strlen(line) + 1); \ in SDLTest_LogAllocations() 242 SDL_strlcat(message, line, message_size) in SDLTest_LogAllocations() 244 SDL_strlcpy(line, "Memory allocations:\n", sizeof(line)); in SDLTest_LogAllocations() 246 SDL_strlcpy(line, "Expect 2 allocations from within SDL_GetErrBuf()\n", sizeof(line)); in SDLTest_LogAllocations() 253 SDL_snprintf(line, sizeof(line), "Allocation %d: %d bytes\n", count, (int)entry->size); in SDLTest_LogAllocations() 260 …SDL_snprintf(line, sizeof(line), "\t0x%"SDL_PRIx64": %s\n", entry->stack[stack_index], entry->stac… in SDLTest_LogAllocations() 267 …SDL_snprintf(line, sizeof(line), "Total: %.2f Kb in %d allocations\n", (float)total_allocated / 10… in SDLTest_LogAllocations()
|
/AliOS-Things-master/components/cli/src/iobox/ |
A D | hexdump.c | 42 unsigned char line[HEXDUMP_LINE_CHR_CNT] = {0}; in multi_hexdump() local 47 memcpy(line, hd->buf + addr, len); in multi_hexdump() 48 memset(line + len, 0, HEXDUMP_LINE_CHR_CNT - len); in multi_hexdump() 50 if (is_same_char(line, HEXDUMP_LINE_CHR_CNT, line[0])) { in multi_hexdump() 52 if (is_same_char(line, HEXDUMP_LINE_CHR_CNT, hd->same_chr)) { in multi_hexdump() 62 hd->same_chr = line[0]; in multi_hexdump() 74 aos_cli_printf("%.2X ", line[i]); in multi_hexdump() 87 if (line[i] >= 0x20 && line[i] <= 0x7E) in multi_hexdump() 88 aos_cli_printf("%c", line[i]); in multi_hexdump()
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftlcdfil.c | 46 FT_Byte* line = bitmap->buffer; in _ft_lcd_filter_fir() local 55 val1 = line[0]; in _ft_lcd_filter_fir() 62 val1 = line[1]; in _ft_lcd_filter_fir() 73 val = line[xx]; in _ft_lcd_filter_fir() 82 line[xx - 2] = (FT_Byte)pix; in _ft_lcd_filter_fir() 91 line[xx - 2] = (FT_Byte)pix; in _ft_lcd_filter_fir() 95 line[xx - 1] = (FT_Byte)pix; in _ft_lcd_filter_fir() 189 FT_Byte* line = bitmap->buffer; in _ft_lcd_filter_legacy() local 205 p = line[xx]; in _ft_lcd_filter_legacy() 210 p = line[xx + 1]; in _ft_lcd_filter_legacy() [all …]
|
/AliOS-Things-master/components/mbedtls/include/mbedtls/ |
A D | debug.h | 122 const char *file, int line, 141 const char *file, int line, 162 const char *file, int line, const char *text, 183 const char *file, int line, 205 const char *file, int line, 226 const char *file, int line, 255 const char *file, int line,
|