Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 589) sorted by relevance

12345678910>>...24

/reactos/
H A D.gitattributes2 * text=auto
6 *.acf text
7 *.asm text
8 *.c text
9 *.cc text
13 *.h text
20 *.l text
22 *.md text
24 *.s text
25 *.S text
[all …]
/reactos/modules/rosapps/applications/net/dhcpd/src/utils/
H A Diputils.c14 if( !text ) in split_ip()
17 for( dotcount = 0; (dotcount < place) && ( text ); text++ ) in split_ip()
18 if( *text == '.' ) in split_ip()
21 if( !text ) in split_ip()
24 while(( *text != '.' ) && ( *text != '\0' )) in split_ip()
29 text++; in split_ip()
41 if( !text ) in get_ip()
44 while( *text != '\0' ) in get_ip()
46 if( *text == '.' ) in get_ip()
49 text++; in get_ip()
[all …]
/reactos/sdk/include/reactos/libs/mbedtls/
H A Ddebug.h72 #define MBEDTLS_SSL_DEBUG_RET( level, text, ret ) \ argument
73 mbedtls_debug_print_ret( ssl, level, __FILE__, __LINE__, text, ret )
75 #define MBEDTLS_SSL_DEBUG_BUF( level, text, buf, len ) \ argument
79 #define MBEDTLS_SSL_DEBUG_MPI( level, text, X ) \ argument
80 mbedtls_debug_print_mpi( ssl, level, __FILE__, __LINE__, text, X )
84 #define MBEDTLS_SSL_DEBUG_ECP( level, text, X ) \ argument
85 mbedtls_debug_print_ecp( ssl, level, __FILE__, __LINE__, text, X )
89 #define MBEDTLS_SSL_DEBUG_CRT( level, text, crt ) \ argument
167 const char *text, int ret );
187 const char *file, int line, const char *text,
[all …]
/reactos/modules/rostests/winetests/mshtml/
H A Dxmlhttprequest.c507 ok(text == NULL, "Expect NULL, got %p\n", text); in test_sync_xhr()
512 ok(text == NULL, "text = %p\n", text); in test_sync_xhr()
517 ok(text == NULL, "text = %p\n", text); in test_sync_xhr()
542 ok(text == NULL, "text = %p\n", text); in test_sync_xhr()
547 ok(text == NULL, "text = %p\n", text); in test_sync_xhr()
556 ok(text == NULL, "Expect NULL, got %p\n", text); in test_sync_xhr()
654 ok(text == NULL, "text = %p\n", text); in test_async_xhr()
662 ok(text == NULL, "text = %p\n", text); in test_async_xhr()
672 ok(text == NULL, "Expect NULL, got %p\n", text); in test_async_xhr()
702 ok(text == NULL, "text = %p\n", text); in test_async_xhr()
[all …]
/reactos/modules/rostests/dxtest/win32kdxtest/
H A Dtest.h11 void dump_halinfo(DD_HALINFO *pHalInfo, char *text);
12 void dump_CallBackFlags(DWORD *pCallBackFlags, char *text);
13 void dump_D3dCallbacks(D3DNTHAL_CALLBACKS *puD3dCallbacks, char *text);
15 void dump_D3dBufferCallbacks(DD_D3DBUFCALLBACKS *puD3dCallbacks, char *text);
24 #define testing_eq(input,value,counter,text) \ argument
28 printf("FAIL ret=%s, %d != %d )\n",text,(int)input,(int)value); \
32 #define testing_noteq(input,value,counter,text) \ argument
36 printf("FAIL ret=%s, %d == %d )\n",text,(int)input,(int)value); \
40 #define show_status(counter, text) \ argument
43 printf("End testing of %s Status : ok\n\n",text); \
[all …]
/reactos/modules/rostests/tests/winhello/
H A Dwinhello.c126 TCHAR text[2]; in MainWndProc() local
142 TextOut(hDC, 530, 10, text, strlen(text)); in MainWndProc()
160 HBRUSH hbrCustom = CreateSolidBrush ( RGB(text[0], text[0], text[0])); in MainWndProc()
195 TextOut(hDC, 530, 30, text, strlen(text)); in MainWndProc()
216 TextOut(hDC, 530, 50, text, strlen(text)); in MainWndProc()
381 temp = _sntprintf ( text, sizeof(text)/sizeof(*text), _T("x: %d"), x ); in MainWndProc()
382 TextOut(hDC,10,100,text,strlen(text)); in MainWndProc()
383 temp = _sntprintf ( text, sizeof(text)/sizeof(*text), _T("y: %d"), y ); in MainWndProc()
384 TextOut(hDC,10,120,text,strlen(text)); in MainWndProc()
487 TextOut(hDC,200,100,text,strlen(text)); in MainWndProc()
[all …]
/reactos/modules/rosapps/applications/net/ncftp/ncftp/
H A Dreadln.c315 textbasename = strrchr(text, '/'); in RemoteCompletionFunction()
317 textbasename = text; in RemoteCompletionFunction()
320 textdirlen = (int) (textbasename - text); in RemoteCompletionFunction()
326 if (text[0] == '\0') { in RemoteCompletionFunction()
331 if (text[strlen(text) - 1] == '/') { in RemoteCompletionFunction()
401 cp = RemoteCompletionFunction(text, state, 0); in RemoteFileCompletionFunction()
430 textlen = strlen(text); in BookmarkCompletionFunction()
459 textlen = strlen(text); in CommandCompletionFunction()
493 textlen = strlen(text); in PrefOptCompletionFunction()
576 cp = CommandCompletionFunction(text, state); in CompletionFunction()
[all …]
/reactos/base/applications/mspaint/
H A Dregistry.cpp154 CRegKey text; in Load() local
157 ReadDWORD(text, L"Bold", Bold); in Load()
158 ReadDWORD(text, L"Italic", Italic); in Load()
159 ReadDWORD(text, L"Underline", Underline); in Load()
160 ReadDWORD(text, L"CharSet", CharSet); in Load()
161 ReadDWORD(text, L"PointSize", PointSize); in Load()
238 CRegKey text; in Store() local
239 if (text.Create(paint, L"Text") == ERROR_SUCCESS) in Store()
241 text.SetDWORDValue(L"Bold", Bold); in Store()
242 text.SetDWORDValue(L"Italic", Italic); in Store()
[all …]
/reactos/sdk/lib/3rdparty/libmpg123/
H A Did3.c410 if(text[0] == 0) in next_text()
419 text += width; in next_text()
426 text += width; in next_text()
428 if((size_t)(text-prev) >= limit) text = NULL; in next_text()
430 return text; in next_text()
581 if(text == NULL) in process_comment()
617 …store_id3_text(&xcom->text, text-1, realsize+1-(text-realdata), NOQUIET, fr->p.flags & MPG123_PLAI… in process_comment()
641 store_id3_text(&localcom.text, text-1, realsize+1-(text-realdata), NOQUIET, 0); in process_comment()
679 if(text == NULL) in process_extra()
709 …store_id3_text(&xex->text, text-1, realsize-(text-realdata)+1, NOQUIET, fr->p.flags & MPG123_PLAIN… in process_extra()
[all …]
/reactos/dll/win32/comctl32/
H A Dstatus.c55 LPWSTR text; member
99 return isW ? debugstr_w(text) : debugstr_a((LPCSTR)text); in debugstr_t()
506 result = part->text ? lstrlenW (part->text) : 0; in STATUSBAR_GetTextW()
744 part->text = text; in STATUSBAR_SetTextT()
749 if (text && !isW) { in STATUSBAR_SetTextT()
755 } else if (text) { in STATUSBAR_SetTextT()
772 if (text) { in STATUSBAR_SetTextT()
773 if (!changed && part->text && !lstrcmpW(ntext, part->text)) { in STATUSBAR_SetTextT()
1083 part->text = 0; in STATUSBAR_WMSetText()
1085 if (text && (len = lstrlenW((LPCWSTR)text))) { in STATUSBAR_WMSetText()
[all …]
/reactos/dll/directx/wine/d3dcompiler_43/
H A Dpreproc.c189 free( ppp->subst.text ); in pp_del_define()
194 pp_entry_t *pp_add_define(const char *def, const char *text) in pp_add_define() argument
218 ppp->subst.text = text ? pp_xstrdup(text) : NULL; in pp_add_define()
219 if(text && !ppp->subst.text) in pp_add_define()
229 if(ppp->subst.text) in pp_add_define()
232 len = strlen(ppp->subst.text); in pp_add_define()
233 while(len && strchr(" \t\r\n", ppp->subst.text[len-1])) in pp_add_define()
235 ppp->subst.text[--len] = '\0'; in pp_add_define()
240 if(ppp->subst.text != cptr) in pp_add_define()
241 memmove(ppp->subst.text, cptr, strlen(cptr)+1); in pp_add_define()
[all …]
H A Dppy.y159 %type <cptr> opt_text text
299 | text { $$ = $1; }
302 text : tLITERAL { $$ = $1; }
584 mt->subst.text = str; in new_mtext()
601 new_text = pp_xrealloc(tail->subst.text, strlen(tail->subst.text)+strlen(mtp->subst.text)+1); in combine_mtext()
604 tail->subst.text = new_text; in combine_mtext()
605 strcat(tail->subst.text, mtp->subst.text); in combine_mtext()
606 free(mtp->subst.text); in combine_mtext()
624 mtp->subst.text[--len] = '\0'; in combine_mtext()
631 free(mtp->subst.text); in combine_mtext()
[all …]
/reactos/dll/3rdparty/mbedtls/
H A Ddebug.c150 const char *text, int ret ) in mbedtls_debug_print_ret() argument
171 text, ret, -ret ); in mbedtls_debug_print_ret()
177 const char *file, int line, const char *text, in mbedtls_debug_print_buf() argument
193 text, (unsigned int) len ); in mbedtls_debug_print_buf()
238 const char *text, const mbedtls_ecp_point *X ) in mbedtls_debug_print_ecp() argument
250 mbedtls_snprintf( str, sizeof( str ), "%s(X)", text ); in mbedtls_debug_print_ecp()
253 mbedtls_snprintf( str, sizeof( str ), "%s(Y)", text ); in mbedtls_debug_print_ecp()
261 const char *text, const mbedtls_mpi *X ) in mbedtls_debug_print_mpi() argument
279 text, (unsigned) bitlen ); in mbedtls_debug_print_mpi()
361 start = text; in debug_print_line_by_line()
[all …]
/reactos/media/drivers/etc/
H A D.gitattributes2 hosts text eol=crlf
3 KDBinit text eol=crlf
4 networks text eol=crlf
5 protocol text eol=crlf
6 services text eol=crlf
/reactos/modules/rostests/winetests/comctl32/
H A Dupdown.c683 CHAR text[10]; in test_updown_base() local
727 GetWindowTextA(g_edit, text, ARRAY_SIZE(text)); in test_updown_base()
728 ok(lstrcmpA(text, "10") == 0, "Expected '10', got '%s'\n", text); in test_updown_base()
733 GetWindowTextA(g_edit, text, ARRAY_SIZE(text)); in test_updown_base()
853 CHAR text[10]; in test_UDS_SETBUDDYINT() local
856 text[0] = '\0'; in test_UDS_SETBUDDYINT()
867 GetWindowTextA(g_edit, text, ARRAY_SIZE(text)); in test_UDS_SETBUDDYINT()
873 GetWindowTextA(g_edit, text, ARRAY_SIZE(text)); in test_UDS_SETBUDDYINT()
875 ok(lstrcmpA(text, "50") == 0, "Expected '50', got '%s'\n", text); in test_UDS_SETBUDDYINT()
880 GetWindowTextA(g_edit, text, ARRAY_SIZE(text)); in test_UDS_SETBUDDYINT()
[all …]
/reactos/base/applications/mstsc/
H A Duimain.c442 switch (text[i]) in ui_draw_text()
447 cache_put_text(text[i + 1], text, text[i + 2]); in ui_draw_text()
457 text = &(text[i + 3]); in ui_draw_text()
492 text = &(text[i]); in ui_draw_text()
496 DO_GLYPH(text, i); in ui_draw_text()
788 char text[512]; in warning() local
795 strcat(text1, text); in warning()
804 char text[512]; in unimpl() local
811 strcat(text1, text); in unimpl()
820 char text[512]; in error() local
[all …]
/reactos/dll/3rdparty/libxslt/
H A Dtemplates.c557 xmlNodePtr text; in xsltAttrTemplateProcess() local
559 text = xmlNewText(NULL); in xsltAttrTemplateProcess()
560 if (text != NULL) { in xsltAttrTemplateProcess()
563 text->doc = ret->doc; in xsltAttrTemplateProcess()
589 text->content = val; in xsltAttrTemplateProcess()
597 text->content = xmlStrdup(value); in xsltAttrTemplateProcess()
639 xmlNodePtr oldInsert, text; in xsltAttrListTemplateProcess() local
778 text = xmlNewText(NULL); in xsltAttrListTemplateProcess()
779 if (text != NULL) { in xsltAttrListTemplateProcess()
782 text->doc = copy->doc; in xsltAttrListTemplateProcess()
[all …]
/reactos/sdk/tools/wpp/
H A Dpreproc.c318 free( ppp->subst.text ); in pp_del_define()
347 ppp->subst.text = text ? pp_xstrdup(text) : NULL; in pp_add_define()
348 if(text && !ppp->subst.text) in pp_add_define()
358 if(ppp->subst.text) in pp_add_define()
361 len = strlen(ppp->subst.text); in pp_add_define()
362 while(len && strchr(" \t\r\n", ppp->subst.text[len-1])) in pp_add_define()
364 ppp->subst.text[--len] = '\0'; in pp_add_define()
369 if(ppp->subst.text != cptr) in pp_add_define()
370 memmove(ppp->subst.text, cptr, strlen(cptr)+1); in pp_add_define()
379 free(ppp->subst.text); in pp_add_define()
[all …]
H A Dppy.y171 %type <cptr> opt_text text
317 | text { $$ = $1; }
320 text : tLITERAL { $$ = $1; }
602 mt->subst.text = str; in new_mtext()
619 new_text = pp_xrealloc(tail->subst.text, strlen(tail->subst.text)+strlen(mtp->subst.text)+1); in combine_mtext()
622 tail->subst.text = new_text; in combine_mtext()
623 strcat(tail->subst.text, mtp->subst.text); in combine_mtext()
624 free(mtp->subst.text); in combine_mtext()
642 mtp->subst.text[--len] = '\0'; in combine_mtext()
649 free(mtp->subst.text); in combine_mtext()
[all …]
/reactos/dll/3rdparty/libpng/
H A Dpngwrite.c302 info_ptr->text[i].key, in png_write_info()
303 info_ptr->text[i].lang, in png_write_info()
304 info_ptr->text[i].lang_key, in png_write_info()
305 info_ptr->text[i].text); in png_write_info()
322 info_ptr->text[i].text, info_ptr->text[i].compression); in png_write_info()
335 info_ptr->text[i].text, in png_write_info()
399 info_ptr->text[i].key, in png_write_end()
400 info_ptr->text[i].lang, in png_write_end()
402 info_ptr->text[i].text); in png_write_end()
418 info_ptr->text[i].text, info_ptr->text[i].compression); in png_write_end()
[all …]
/reactos/dll/win32/wmiutils/
H A Dstatuscode.c93 BSTR *text ) in status_code_GetErrorCodeText() argument
99 FIXME("%p, 0x%08x, 0x%04x, 0x%08x, %p\n", iface, res, lcid, flags, text); in status_code_GetErrorCodeText()
102 *text = SysAllocString(msg); in status_code_GetErrorCodeText()
111 BSTR *text ) in status_code_GetFacilityCodeText() argument
117 FIXME("%p, 0x%08x, 0x%04x, 0x%08x, %p\n", iface, res, lcid, flags, text); in status_code_GetFacilityCodeText()
120 *text = SysAllocString(msg); in status_code_GetFacilityCodeText()
/reactos/drivers/network/tcpip/lwip/
H A D.gitattributes1 # These files are text and should be normalized
2 *.txt text
3 *.c text
4 *.h text
/reactos/modules/rostests/apitests/shell32/
H A DInt64ToString.cpp15 LPCWSTR text; member
75 ok(lstrcmpW(pEntry->Vista.text, szBuff) == 0, "Line %d: %ls vs %ls\n", in DoTestEntry()
76 lineno, pEntry->Vista.text, szBuff); in DoTestEntry()
81 ok(lstrcmpW(pEntry->NonVista.text, szBuff) == 0, "Line %d: %ls vs %ls\n", in DoTestEntry()
82 lineno, pEntry->NonVista.text, szBuff); in DoTestEntry()
93 ok(lstrcmpW(pEntry->Vista.text, szBuff) == 0, "Line %d: %ls vs %ls\n", in DoTestEntry()
94 lineno, pEntry->Vista.text, szBuff); in DoTestEntry()
99 ok(lstrcmpW(pEntry->NonVista.text, szBuff) == 0, "Line %d: %ls vs %ls\n", in DoTestEntry()
100 lineno, pEntry->NonVista.text, szBuff); in DoTestEntry()
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/
H A Drdesktop.c129 char *text; in print_disconnect_reason() local
134 text = "No information available"; in print_disconnect_reason()
142 text = "Server initiated logoff"; in print_disconnect_reason()
154 text = "The session was replaced"; in print_disconnect_reason()
170 text = "Internal licensing error"; in print_disconnect_reason()
178 text = "No valid license available"; in print_disconnect_reason()
182 text = "Invalid licensing message"; in print_disconnect_reason()
190 text = "Client license error"; in print_disconnect_reason()
206 text = "Can't upgrade license"; in print_disconnect_reason()
216 text = "Internal protocol error"; in print_disconnect_reason()
[all …]
/reactos/modules/rosapps/templates/mdi/
H A Dmain.c184 TCHAR text[260]; in UpdateStatusBar() local
187 size = sizeof(text)/sizeof(TCHAR); in UpdateStatusBar()
188 GetUserName(text, &size); in UpdateStatusBar()
189 SendMessage(hStatusBar, SB_SETTEXT, 1, (LPARAM)text); in UpdateStatusBar()
190 size = sizeof(text)/sizeof(TCHAR); in UpdateStatusBar()
191 GetComputerName(text, &size); in UpdateStatusBar()
192 SendMessage(hStatusBar, SB_SETTEXT, 0, (LPARAM)text); in UpdateStatusBar()

12345678910>>...24