Home
last modified time | relevance | path

Searched refs:self1 (Results 1 – 7 of 7) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DCyclicTypesDeserTest.java95 Selfie405 self1 = new Selfie405(1); in testIgnoredCycle() local
96 self1.parent = self1; in testIgnoredCycle()
101 MAPPER.writeValueAsString(self1); in testIgnoredCycle()
109 String json = w.writeValueAsString(self1); in testIgnoredCycle()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DCyclicTypeSerTest.java90 Selfie2501 self1 = new Selfie2501(1); in testReplacedCycle() local
91 self1.parent = self1; in testReplacedCycle()
96 assertEquals(aposToQuotes("{'id':1,'parent':null}"), w.writeValueAsString(self1)); in testReplacedCycle()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
Dknown_gcc_test_failures.txt114 self1.C
/external/llvm-project/llvm/lib/Target/WebAssembly/
Dknown_gcc_test_failures.txt113 self1.C
/external/python/pybind11/tests/
Dtest_methods_and_attributes.cpp49 ExampleMandA self1() { return *this; } // return by value in self1() function in ExampleMandA
169 .def("self1", &ExampleMandA::self1) in TEST_SUBMODULE()
Dtest_methods_and_attributes.py27 assert str(instance1.self1()) == "ExampleMandA[value=320]"
/external/rust/crates/syn/src/gen/
Deq.rs1770 (ReturnType::Type(_, self1), ReturnType::Type(_, other1)) => self1 == other1, in eq()