Home
last modified time | relevance | path

Searched refs:foo (Results 1 – 25 of 54) sorted by relevance

123

/reactos/sdk/lib/3rdparty/stlport/test/unit/
H A Dcstring_test.cpp50 const char* foo = "foo"; in import_checks() local
55 CPPUNIT_CHECK( std::strcat((char*)buf, foo) == (char*)buf ); // buf <- foo in import_checks()
56 CPPUNIT_CHECK( std::strchr(foo, 'o') != NULL ); in import_checks()
58 CPPUNIT_CHECK( std::strcpy((char*)buf, foo) == (char*)buf ); // buf <- foo in import_checks()
61 CPPUNIT_CHECK( std::strncat((char*)buf, foo, 2) == (char*)buf ); // buf <- foofo in import_checks()
63 CPPUNIT_CHECK( std::strncpy((char*)buf, foo, 3) == (char*)buf ); // buf <- foo in import_checks()
64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 ); in import_checks()
68 CPPUNIT_CHECK( std::strstr(foo, "") == foo ); in import_checks()
72 CPPUNIT_CHECK( std::strxfrm((char*)buf, foo, 3) != 0 ); in import_checks()
H A Diostream_test.cpp49 string foo; in manipulators() local
50 istr >> foo; in manipulators()
53 CPPUNIT_ASSERT( foo == "bar" ); in manipulators()
68 string foo; in manipulators() local
69 istr >> foo; in manipulators()
72 CPPUNIT_ASSERT( foo == "bar" ); in manipulators()
H A Dexception_test.cpp138 std::string foo = "foo"; in exception_emission() local
140 throw std::runtime_error(foo); in exception_emission()
143 CPPUNIT_ASSERT( foo == e.what() ); in exception_emission()
146 CPPUNIT_ASSERT(foo == clone.what() ); in exception_emission()
153 throw std::runtime_error(foo); in exception_emission()
156 CPPUNIT_ASSERT( foo == e.what() ); in exception_emission()
159 CPPUNIT_ASSERT(foo == clone.what() ); in exception_emission()
H A Dunordered_test.cpp272 UnorderedMap1 foo; in user_case() local
275 foo.insert(UnorderedMap1::value_type(1, string("test1"))); in user_case()
276 foo.insert(UnorderedMap1::value_type(2, string("test2"))); in user_case()
277 foo.insert(UnorderedMap1::value_type(3, string("test3"))); in user_case()
278 foo.insert(UnorderedMap1::value_type(4, string("test4"))); in user_case()
279 foo.insert(UnorderedMap1::value_type(5, string("test5"))); in user_case()
281 bar.insert(UnorderedMap2::value_type(0, foo)); in user_case()
/reactos/modules/rostests/winetests/cmd/
H A Dtest_builtins.cmd130 echo foo>foo
132 echo foo 1> foo
134 echo foo@tab@1> foo
136 echo foo 1>@tab@foo
160 echo foo>foo
161 echo foo >>foo
176 echo foo> foo
238 echo foo ^> foo
639 echo foo> foo
2035 echo foo>foo
[all …]
H A Dtest_builtins.cmd.exp139 foo
178 foo
192 foo
222 foo
244 foo > foo
468 foo
600 foo
602 foo
603 foo
605 foo
[all …]
H A Dtest_cmdline.cmd195 echo echo bar > foo.bat
196 cmd /qq/c foo
197 cmd /q "xyz /c foo"
198 del foo.bat
/reactos/modules/rostests/win32/cmd/
H A Dtest_echoer_parser.cmd541 (foo ^
545 (foo ^
550 (foo ^
560 (foo^
573 foo
582 foo ^
591 foo ^
601 foo ^
622 foo^
632 foo &^
[all …]
H A Dtest_echoer_parser.cmd.exp527 @pwd@>(foo bar )@space@
529 @pwd@>(foo & & bar@space@
533 foo && bar@space@
548 @pwd@>(foo & & bar@space@@space@
556 @pwd@>(foo bar )@space@
558 @pwd@>(foo & & bar@space@
562 foo && bar@space@
583 @pwd@>(foo & & bar@space@@space@
/reactos/modules/rostests/winetests/setupapi/
H A Dstringtable.c56 static WCHAR foo[] = {'f','o','o',0}; variable
93 hfoo=pStringTableAddString(table,foo,0); in test_StringTableAddString()
121 hfoo = pStringTableAddStringEx(table, foo, 0, NULL, 0); in test_StringTableAddStringEx()
182 hfoo = pStringTableAddString(table, foo, 0); in test_StringTableLookUpString()
204 retval=pStringTableLookUpString(table,foo,0); in test_StringTableLookUpString()
210 retval=pStringTableLookUpString(table2,foo,0); in test_StringTableLookUpString()
241 hfoo = pStringTableAddString(table, foo, 0); in test_StringTableLookUpStringEx()
263 retval=pStringTableLookUpStringEx(table, foo, 0, NULL, 0); in test_StringTableLookUpStringEx()
269 retval = pStringTableLookUpStringEx(table2, foo, 0, NULL, 0); in test_StringTableLookUpStringEx()
/reactos/modules/rostests/apitests/compiler/ms/eh/
H A Dnoreturn.cpp31 void foo(const A& a, int i) in foo() function
41 foo(A(a), bar(a)); in main()
46 foo(foobar(), bar(a)); in main()
H A Drecursive_throw.cpp25 void foo(int level) in foo() function
31 foo(level+1); in foo()
65 foo(0); in main()
H A Dnesttry.cxx14 void foo() in foo() function
25 foo(); in main()
H A Dihateeh.cxx133 A foo(A a1, A a2) { return a1 + a2; }; in foo() function
144 foo(a1, a3); in foo2()
158 A a4 = foo(a1, a2); in test()
/reactos/sdk/lib/3rdparty/freetype/src/tools/ftrandom/
H A Dftrandom.c270 FILE* foo; in figurefiletype() local
275 foo = fopen( item->name, "rb" ); in figurefiletype()
276 if ( foo ) in figurefiletype()
279 int ch1 = getc( foo ); in figurefiletype()
280 int ch2 = getc( foo ); in figurefiletype()
281 int ch3 = getc( foo ); in figurefiletype()
282 int ch4 = getc( foo ); in figurefiletype()
285 fclose( foo ); in figurefiletype()
/reactos/base/services/dhcpcsvc/dhcp/
H A Dtree.c61 pair foo = (pair)dmalloc (sizeof *foo, "cons"); local
62 if (!foo)
64 foo -> car = car;
65 foo -> cdr = cdr;
66 return foo;
/reactos/modules/rostests/winetests/kernel32/
H A Dresource.c313 char foo[] = "red and white"; in update_resources_version() local
332 foo, sizeof foo ); in update_resources_version()
343 char foo[2*page_size] = "foobar"; in update_resources_bigdata() local
352 foo, sizeof foo ); in update_resources_bigdata()
/reactos/base/shell/cmd/
H A Dtodo.txt4 … make sure to take into account the way MS handles "set /A /P foo=5" compared to "set /P /A foo=5".
/reactos/sdk/lib/3rdparty/stlport/doc/
H A Dstlport_namespaces.txt19 //foo.h
29 //foo.cpp
30 #include "foo.h"
39 #include "foo.h"
/reactos/drivers/filesystems/udfs/Include/
H A Denv_spec_w32.h476 #define KeSetEvent(pEvt, foo, foo2) {NOTHING;} argument
477 #define KeInitializeEvent(pEvt, foo, foo2) {NOTHING;} argument
478 #define KeWaitForSingleObject(pEvt, foo, a, b, c) {NOTHING;} argument
482 #define KeDelayExecutionThread(mode, foo, t) { NtDelayExecution(false, t); } argument
484 #define KeDelayExecutionThread(mode, foo, t) { Sleep( abs((LONG)(((t)->QuadPart)/10000)) ); } argument
/reactos/sdk/lib/3rdparty/stlport/test/compiler/
H A Dpartial_spec.cpp27 int foo() in foo() function
/reactos/modules/rostests/apitests/compiler/ms/seh/
H A Dseh_noreturn.c9 void foo(int arg) { bar(arg); } in foo() function
/reactos/sdk/include/c++/stlport/
H A Derrno.h55 # define errno foo
/reactos/sdk/tools/winesync/wininet_staging/
H A D0003-wininet_tests__Check_cookie_behaviour_when_overriding_host.diff37 + if (!strstr(buffer, "foo") &&
96 + InternetSetCookieA("http://test.local", "foo", "bar");
/reactos/modules/rostests/winetests/wintrust/
H A Dasn.c530 static WCHAR foo[] = { 'f','o','o',0 }; variable
571 info.pwszSubjGuid = foo; in test_encodeCatMemberInfo()
630 ok(info->pwszSubjGuid && !lstrcmpW(info->pwszSubjGuid, foo), in test_decodeCatMemberInfo()
664 static WCHAR foo[] = { 'f','o','o',0 }; in test_encodeCatNameValue() local
681 value.pwszTag = foo; in test_encodeCatNameValue()
749 ok(value->pwszTag && !lstrcmpW(value->pwszTag, foo), in test_decodeCatNameValue()

123