/aosp_15_r20/external/cronet/base/strings/ |
H A D | cstring_view_unittest.cc | 50 constexpr auto stuff = cstring_view("stuff"); in TEST() local 79 constexpr auto stuff = UNSAFE_BUFFERS(cstring_view(c_stuff, 5u)); in TEST() local 91 std::string stuff = "stuff"; in TEST() local 127 constexpr auto stuff = cstring_view("stuff"); in TEST() local 138 constexpr auto stuff = cstring_view("stuff"); in TEST() local 155 constexpr auto stuff = cstring_view("stuff"); in TEST() local 176 constexpr auto stuff = cstring_view("stuff"); in TEST() local 195 constexpr auto stuff = cstring_view("stuff"); in TEST() local 217 constexpr auto stuff = cstring_view("stuff"); in TEST() local 239 constexpr auto stuff = cstring_view("stuff"); in TEST() local [all …]
|
/aosp_15_r20/external/zstd/contrib/diagnose_corruption/ |
H A D | check_flipped_bits.c | 44 static void free_stuff(stuff_t* stuff) { in free_stuff() 62 static void print_summary(stuff_t* stuff) { in print_summary() 144 static ZSTD_DDict* readDictByID(stuff_t *stuff, int32_t dict_id, char **buf, size_t* size) { in readDictByID() 191 static int init_stuff(stuff_t* stuff, int argc, char *argv[]) { in init_stuff() 276 static int test_decompress(stuff_t* stuff) { in test_decompress() 331 static int perturb_bits(stuff_t* stuff) { in perturb_bits() 355 static int perturb_bytes(stuff_t* stuff) { in perturb_bytes() 379 stuff_t stuff; in main() local
|
/aosp_15_r20/external/elfutils/tests/ |
H A D | addrcfi.c | 76 struct stuff struct 91 struct stuff *stuff = arg; in print_register() local 106 GElf_Addr pc, struct stuff *stuff) in handle_cfi() 162 struct stuff stuff; in handle_address() local
|
/aosp_15_r20/frameworks/native/libs/binderthreadstate/ |
H A D | test.cpp | 73 auto stuff = IHidlStuff::getService(id2name(id)); in callHidl() local 78 sp<IAidlStuff> stuff; in callAidl() local 181 auto stuff = IHidlStuff::getService(id2name(kP1Id)); in TEST() local 186 sp<IAidlStuff> stuff; in TEST() local 194 auto stuff = IHidlStuff::getService(id2name(kP1Id)); in TEST() local 201 sp<IAidlStuff> stuff; in TEST() local
|
/aosp_15_r20/external/compiler-rt/test/BlocksRuntime/ |
H A D | structmember.c | 21 struct stuff { in main() struct 22 long int a; in main() 23 long int b; in main() 24 long int c; in main()
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/filter/ |
H A D | MapInclusionTest.java | 14 public Map<String,String> stuff = new LinkedHashMap<String,String>(); field in MapInclusionTest.NoEmptiesMapContainer 25 public Map<String,String> stuff = new LinkedHashMap<String,String>(); field in MapInclusionTest.NoNullsMapContainer 36 public Map<String,String> stuff = new LinkedHashMap<String,String>(); field in MapInclusionTest.NoNullsNotEmptyMapContainer
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/jdk/ |
H A D | MapKeySerializationTest.java | 91 public Map<ABC,String> stuff = new HashMap<ABC,String>(); field in MapKeySerializationTest.ABCMapWrapper 286 Map<ABC,BAR<?>> stuff = new HashMap<ABC,BAR<?>>(); in testUnWrappedMapWithKeySerializer() local 308 Map<ABC,String> stuff = new HashMap<ABC,String>(); in testUnWrappedMapWithDefaultType() local 318 Map<Object,Integer> stuff = new LinkedHashMap<Object,Integer>(); in testDynamicMapKeys() local
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/mixins/ |
H A D | MixinsWithBundlesTest.java | 27 private String stuff; field in MixinsWithBundlesTest.Foo 29 Foo(String stuff) { in Foo()
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/ |
H A D | MapRelatedTypesDeserTest.java | 21 List<Map.Entry<String,Long>> stuff = MAPPER.readValue(aposToQuotes("[{'a':15},{'b':42}]"), in testMapEntrySimpleTypes() local 32 …List<Map.Entry<Integer,StringWrapper>> stuff = MAPPER.readValue(aposToQuotes("[{'28':'Foo'},{'13':… in testMapEntryWithStringBean() local
|
/aosp_15_r20/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/ |
H A D | GlobalActionsDialogLiteTest.java | 457 private static <T> void assertItemsOfType(List<T> stuff, Class<? extends T>... classes) { in assertItemsOfType() 464 private static <T> void assertNoItemsOfType(List<T> stuff, Class<? extends T> klass) { in assertNoItemsOfType() 470 private static <T> void assertOneItemOfType(List<T> stuff, Class<? extends T> klass) { in assertOneItemOfType()
|
/aosp_15_r20/external/pdfium/core/fxcrt/ |
H A D | pdfium_span_unittest.cpp | 14 int stuff[] = {1, 2, 3}; in TEST() local 31 int stuff[] = {1, 2, 3}; in TEST() local
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/ |
H A D | BuilderSimpleTest.java | 217 private Map<String,Object> stuff = new HashMap<String,Object>(); field in BuilderSimpleTest.ValueBuilder822 238 public Map<String,Object> stuff; field in BuilderSimpleTest.ValueClass822 240 public ValueClass822(int x, Map<String,Object> stuff) { in ValueClass822()
|
H A D | BuilderAdvancedTest.java | 17 protected InjectableXY(int x, int y, String stuff) { in InjectableXY() 29 protected String stuff; field in BuilderAdvancedTest.InjectableBuilderXY
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/ |
H A D | BigCreatorTest.java | 12 final int[] stuff; field in BigCreatorTest.Biggie 53 int[] stuff = value.stuff; in testBigPartial() local
|
H A D | TestCreators3.java | 39 private final List<String> stuff; field in TestCreators3.Bar 42 public Bar(@JsonProperty("p") long p, @JsonProperty("stuff") List<String> stuff) { in Bar()
|
/aosp_15_r20/external/pigweed/pw_bluetooth_sapphire/lib/cpp-string/ |
H A D | string_printf_test.cc | 127 std::string stuff(kStackBufferSize - 1, 'x'); in TEST() local 133 std::string stuff(kStackBufferSize, 'x'); in TEST() local
|
/aosp_15_r20/external/cronet/third_party/icu/source/test/perf/leperf/ |
H A D | letrperf.cpp | 76 LEReferenceTo<OneObject> stuff(data, success); in time_letr1() local 99 LEReferenceTo<OneObject> stuff(data, success); in time_letr2() local
|
/aosp_15_r20/bionic/tests/ |
H A D | stdio_test.cpp | 1083 struct stuff { in TEST() struct 1084 char s1[123]; in TEST() 1085 int i1, i2; in TEST() 1086 char cs1[3]; in TEST() 1087 char s2[3]; in TEST() 1088 char c1; in TEST() 1089 double d1; in TEST() 1090 float f1; in TEST() 1091 char s3[123]; in TEST() 1093 void Check() { in TEST()
|
/aosp_15_r20/external/python/cpython2/Lib/ |
D | ihooks.py | 142 def load_module(self, name, stuff): argument 261 def load_module(self, name, stuff): argument 290 def load_module(self, name, stuff): argument
|
/aosp_15_r20/external/clang/test/Analysis/ |
H A D | malloc-annotations.c | 22 struct stuff { struct 25 struct stuff myglobalstuff; argument
|
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/ |
H A D | AnyGetterTest.java | 53 protected Map<String,Object> stuff = new LinkedHashMap<String,Object>(); field in AnyGetterTest.MapAsAny 67 protected Map<String,String> stuff; field in AnyGetterTest.Issue705Bean
|
/aosp_15_r20/art/tools/ahat/src/test-dump/ |
H A D | Main.java | 27 public static DumpedStuff stuff; field in Main
|
/aosp_15_r20/prebuilts/go/linux-x86/test/typeparam/ |
D | issue47925.go | 11 type stuff[T any] struct{} type
|
/aosp_15_r20/external/clang/test/SemaObjC/ |
H A D | conversion.m | 5 @property (readonly) BOOL stuff; property
|
/aosp_15_r20/art/tools/ahat/src/ri-test-dump/ |
H A D | Main.java | 26 public static DumpedStuff stuff; field in Main
|