Home
last modified time | relevance | path

Searched refs:FOO (Results 1 - 25 of 80) sorted by relevance

1234

/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dmacro-redef.h1 #define FOO 4 macro
2 #define BAR (1 + FOO)
3 #undef FOO macro
4 #define FOO 5 macro
5 #define BAZ (1 + FOO)
H A Dmacro-expr-basic.h1 #define FOO 1 macro
3 #define BAZ (FOO + BAR)
14 #define HAZ_A_COMMENT_INSIDE (/* comment for real */ BARR + FOO)
H A Dduplicated_constants_in_ns.hpp3 const int FOO = 4; member
6 const int FOO = 5; member
H A Dallowlist_vars.h2 #define FOO 5 macro
H A Dissue-1995.h4 const int FOO = 1; variable
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D128-space-before-hash.c6 #define FOO macro
7 #ifdef FOO
11 #elif defined FOO
18 #undef FOO macro
19 #ifndef FOO
H A D118-comment-becomes-space.c1 #define FOO first/* macro
4 FOO
H A D134-hash-comment-directive.c15 /*...*/# /*...*/ define FOO bar macro
18 FOO
H A D064-version.c2 #define FOO macro
/third_party/openssl/test/
H A Dcontext_internal_test.c28 } FOO; typedef
32 FOO *ptr = OPENSSL_zalloc(sizeof(*ptr)); in foo_new()
54 FOO *data = NULL; in test_context()
83 FOO *data = NULL; in test_set0_default()
/third_party/typescript/tests/baselines/reference/
H A DenumAssignmentCompat4.js13 FOO
16 foo: MyEnum.FOO
41 MyEnum[MyEnum["FOO"] = 0] = "FOO";
45 foo: MyEnum.FOO
/third_party/rust/crates/syn/tests/regression/
H A Dissue1235.rs9 pub static FOO: usize; in main() consts
18 quote!(static FOO: usize = 0; pub static BAR: usize = 0), in main()
27 quote!(static FOO: usize; pub static BAR: usize), in main()
/third_party/protobuf/src/google/protobuf/util/
H A Djson_util_test.cc53 using proto3::FOO;
117 "\"enumValue\":\"FOO\"," in TEST_F()
145 "\"enumValue\":\"FOO\"," in TEST_F()
173 "\"enum_value\":\"FOO\"," in TEST_F()
201 orig.add_repeated_enum_value(proto3::FOO); in TEST_F()
216 EXPECT_EQ(proto3::FOO, parsed.repeated_enum_value(0)); in TEST_F()
222 // orig.set_enum_value1(proto3::FOO) in TEST_F()
223 orig.set_enum_value2(proto3::FOO); in TEST_F()
238 EXPECT_EQ(proto3::FOO, parsed.enum_value1()); in TEST_F()
239 EXPECT_EQ(proto3::FOO, parse in TEST_F()
[all...]
/third_party/rust/crates/rust-openssl/openssl-errors/tests/
H A Dtest.rs7 FOO("function foo");
20 openssl_errors::put_error!(Test::FOO, Test::NO_MILK); in basic()
83 openssl_errors::put_error!(Test::FOO, Test::NO_BACON); in deferred_error_render()
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Douter-scope.c1 #ifndef FOO
3 #define FOO macro
H A Denum-type-dubious.c2 FOO = (void*)0, enumerator
13 validation/enum-type-dubious.c:2:8: error: enumerator value for 'FOO' is not an integer constant
/third_party/rust/crates/lazy-static.rs/compiletest/tests/compile-fail/
H A Dstatic_is_private.rs7 pub(in outer) static ref FOO: () = ();
13 assert_eq!(*outer::inner::FOO, ()); //~ ERROR static `FOO` is private in main()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dduplicated_constants_in_ns.rs15 pub const FOO: ::std::os::raw::c_int = 4; consts
20 pub const FOO: ::std::os::raw::c_int = 5; consts
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DProto2UnknownEnumValueTest.java59 .addVarint(TestAllTypes.NestedEnum.FOO.getNumber()) in buildPayloadWithUnknownEnumValues()
73 assertEquals(TestAllTypes.NestedEnum.FOO, message.getRepeatedNestedEnum(0)); in testUnknownEnumValues()
96 TestAllTypes.NestedEnum.FOO, in testExtensionUnknownEnumValues()
H A DMapForProto2LiteTest.java60 .putInt32ToEnumField(1, TestMap.EnumValue.FOO) in setMapValues()
105 assertEquals(TestMap.EnumValue.FOO, message.getInt32ToEnumField().get(1)); in assertMapValuesSet()
232 assertImmutable(testMapOrBuilder.getInt32ToEnumField(), 1, TestMap.EnumValue.FOO); in assertMapsAreImmutable()
265 builder.putInt32ToEnumField(2, TestMap.EnumValue.FOO); in testMutableMapLifecycle()
267 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
410 assertEquals(TestMap.EnumValue.FOO, map.getInt32ToEnumFieldOrDefault(0, null)); in testParseError()
607 assertEquals(TestMap.EnumValue.FOO, testMapOrBuilder.getInt32ToEnumFieldOrDefault(1, null)); in doTestGetOrDefault()
661 assertEquals(TestMap.EnumValue.FOO, testMapOrBuilder.getInt32ToEnumFieldOrThrow(1)); in doTestGetOrThrow()
718 builder.putInt32ToEnumField(1, TestMap.EnumValue.FOO); in testPut()
719 assertEquals(TestMap.EnumValue.FOO, builde in testPut()
[all...]
H A DMapLiteTest.java61 .putInt32ToEnumField(1, TestMap.EnumValue.FOO) in setMapValues()
112 assertEquals(TestMap.EnumValue.FOO, message.getInt32ToEnumField().get(1)); in assertMapValuesSet()
238 assertImmutable(testMapOrBuilder.getInt32ToEnumField(), 1, TestMap.EnumValue.FOO); in assertMapsAreImmutable()
277 builder.putInt32ToEnumField(2, TestMap.EnumValue.FOO); in testMutableMapLifecycle()
279 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), builder.getInt32ToEnumField()); in testMutableMapLifecycle()
454 assertEquals(TestMap.EnumValue.FOO, map.getInt32ToEnumFieldOrDefault(0, null)); in testParseError()
527 assertEquals(TestMap.EnumValue.FOO, message.getInt32ToEnumField().get(0)); in testUnknownEnumValues()
661 assertEquals(TestMap.EnumValue.FOO, testMapOrBuilder.getInt32ToEnumFieldOrDefault(1, null)); in doTestGetOrDefault()
720 assertEquals(TestMap.EnumValue.FOO, testMapOrBuilder.getInt32ToEnumFieldOrThrow(1)); in doTestGetOrThrow()
786 builder.putInt32ToEnumField(1, TestMap.EnumValue.FOO); in testPut()
[all...]
H A DMapTest.java71 builder.getMutableInt32ToEnumField().put(1, TestMap.EnumValue.FOO); in setMapValuesUsingMutableMap()
98 .putInt32ToEnumField(1, TestMap.EnumValue.FOO) in setMapValuesUsingAccessors()
150 assertEquals(TestMap.EnumValue.FOO, message.getInt32ToEnumField().get(1)); in assertMapValuesSet()
302 assertImmutable(testMapOrBuilder.getInt32ToEnumField(), 1, TestMap.EnumValue.FOO); in assertMapsAreImmutable()
336 enumMap.put(2, TestMap.EnumValue.FOO); in testMutableMapLifecycle()
342 builder.getMutableInt32ToEnumField().put(2, TestMap.EnumValue.FOO); in testMutableMapLifecycle()
344 newMap(1, TestMap.EnumValue.BAR, 2, TestMap.EnumValue.FOO), in testMutableMapLifecycle()
578 assertEquals(TestMap.EnumValue.FOO, map.getInt32ToEnumFieldOrDefault(0, null)); in testParseError()
940 assertEquals(TestMap.EnumValue.FOO, message.getInt32ToEnumField().get(0)); in testUnknownEnumValues()
1104 assertEquals(TestMap.EnumValue.FOO, testMapOrBuilde in doTestGetOrDefault()
[all...]
/third_party/nghttp2/tests/
H A Dnghttp2_map_test.c46 strentry foo, FOO, bar, baz, shrubbery; in test_nghttp2_map() local
51 strentry_init(&FOO, 1, "FOO"); in test_nghttp2_map()
61 nghttp2_map_insert(&map, FOO.key, &FOO)); in test_nghttp2_map()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DTextTrieMapTest.java42 private static final Integer FOO = new Integer(-1); field in TextTrieMapTest
142 map.put("Sunday", FOO); in TestCaseSensitive()
148 checkResult("Get Sunday", itr, new Object[]{FOO, SUN}); in TestCaseSensitive()
201 map.put("Sunday", FOO); in TestCaseInsensitive()
207 checkResult("Get Sunday", itr, new Object[]{SUN, FOO, BAR}); in TestCaseInsensitive()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTextTrieMapTest.java39 private static final Integer FOO = new Integer(-1); field in TextTrieMapTest
139 map.put("Sunday", FOO); in TestCaseSensitive()
145 checkResult("Get Sunday", itr, new Object[]{FOO, SUN}); in TestCaseSensitive()
198 map.put("Sunday", FOO); in TestCaseInsensitive()
204 checkResult("Get Sunday", itr, new Object[]{SUN, FOO, BAR}); in TestCaseInsensitive()

Completed in 11 milliseconds

1234