Searched refs:bar (Results 101 - 118 of 118) sorted by relevance

12345

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dbit_or.pass.cpp54 constexpr int bar = std::bit_or<> () (0x58D3L, 0xEA95); local
55 static_assert ( bar == 0xFAD7, "" );
H A Dbit_xor.pass.cpp54 constexpr int bar = std::bit_xor<> () (0x58D3L, 0xEA95); local
55 static_assert ( bar == 0xB246, "" );
/ndk/tests/device/test-gnustl-full/unit/
H A Dcstring_test.cpp40 std::size_t bar = 0; local
41 CPPUNIT_CHECK( bar == 0 );
H A Dlist_test.cpp445 class bar {}; class in namespace:foo
453 list<foo::bar> lbar;
H A Dunordered_test.cpp273 UnorderedMap2 bar; local
281 bar.insert(UnorderedMap2::value_type(0, foo));
282 UnorderedMap2::iterator it = bar.find(0);
283 CPPUNIT_ASSERT( it != bar.end() );
/ndk/tests/device/test-stlport/unit/
H A Dcstring_test.cpp40 std::size_t bar = 0; local
41 CPPUNIT_CHECK( bar == 0 );
H A Dlist_test.cpp445 class bar {}; class in namespace:foo
453 list<foo::bar> lbar;
H A Dunordered_test.cpp273 UnorderedMap2 bar; local
281 bar.insert(UnorderedMap2::value_type(0, foo));
282 UnorderedMap2::iterator it = bar.find(0);
283 CPPUNIT_ASSERT( it != bar.end() );
/ndk/build/core/
H A Ddefinitions-host.mk134 # Arguments: 1: list of file paths (e.g. "foo bar")
172 # //bar/foo -> top-level 'foo' on network share 'bar'
196 $(call test-expect,,$(call host-path-is-absolute,foo/bar))\
203 $(call test-expect,true,$(call host-path-is-absolute,/foo/bar))\
209 $(call test-expect,$(call windows-path-is-absolute,foo/bar))\
H A Ddefinitions-graph.mk61 $(call test-expect,foo,$(call -ndk-mod-filter,foo bar,-local-func))\
62 $(call test-expect,foo foo,$(call -ndk-mod-filter,aaa foo bar foo,-local-func))\
66 $(call test-expect,bar,$(call -ndk-mod-filter,foo bar,-local-func))\
67 $(call test-expect,aaa bar,$(call -ndk-mod-filter,aaa foo bar,-local-func))
86 $(call test-expect,bar,$(call -ndk-mod-filter-out,foo bar,-local-func))\
87 $(call test-expect,aaa bar,$(call -ndk-mod-filter-out,aaa foo bar fo
[all...]
H A Ddefinitions-tests.mk40 # $(call test-expect,foo,$(filter bar,foo bar))
H A Dimport-locals.mk24 # I.e. If module 'foo' depends on 'bar' which depends on 'zoo',
25 # then 'foo' will get the CFLAGS/CONLYFLAGS/CPPFLAGS/C_INCLUDES/... of both 'bar'
H A Dsetup-toolchain.mk89 # So it TARGET_TOOLCHAIN is 'foo-bar-zoo-xxx', then
90 # TARGET_TOOLCHAIN_BASE will be 'foo-bar-zoo'
H A Ddefinitions.mk337 $(call test-expect,$(_start) foo bar $(_end),$(call link-whole-archives,foo bar))
933 $(call test-expect,foo/bar,$(call pretty-dir,$(NDK_PROJECT_PATH)/foo/bar))\
935 $(call test-expect,<NDK>/foo/bar,$(call pretty-dir,$(NDK_ROOT)/foo/bar))
1320 $(call test-expect,bar.o,$(call get-object-name,bar.s))\
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest-param-test_test.cc465 const char* bar = "bar"; local
467 Combine(Values(foo, bar), Values(3, 4));
471 make_tuple(bar, 3), make_tuple(bar, 4)};
530 const char* bar = "bar"; local
532 int, int> > gen = Combine(Values(foo, bar),
541 make_tuple(bar, 1, 2, 3, 4, 5, 6, 7, 8, 9)};
H A Dgtest_output_test_.cc544 namespace bar { namespace
562 } // namespace bar
H A Dgtest-port_test.cc1003 ThreadLocal<NoDefaultContructor> bar(NoDefaultContructor("foo"));
1004 bar.pointer();
1139 thread_local_string.set("bar");
1140 EXPECT_STREQ("bar", thread_local_string.get().c_str());
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h72 #define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
73 #define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo ## bar
177 // and their values, as strings. For example, for ASSERT_EQ(foo, bar)
178 // where foo is 5 and bar is 6, we have:
181 // actual_expression: "bar"

Completed in 1806 milliseconds

12345