HomeSort by relevance Sort by last modified time
    Searched refs:school (Results 1 - 12 of 12) sorted by null

  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/vo/
School.java 24 public class School {
73 School school = (School) o; local
75 if (mId != school.mId) {
78 if (mName != null ? !mName.equals(school.mName) : school.mName != null) {
81 if (address != null ? !address.equals(school.address) : school.address != null) {
84 return mManager != null ? mManager.equals(school.mManager) : school.mManager == null
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
TestUtil.java 22 import androidx.room.integration.testapp.vo.School;
85 public static School createSchool(int id, int managerId) {
86 School school = new School(); local
87 school.setId(id);
88 school.setName(UUID.randomUUID().toString());
89 school.setManager(createUser(managerId));
90 school.setAddress(createAddress());
91 return school;
    [all...]
EmbeddedTest.java 39 import androidx.room.integration.testapp.vo.School;
158 School school = TestUtil.createSchool(3, 5); local
159 school.getAddress().setStreet("foo");
160 mSchoolDao.insert(school);
161 List<School> result = mSchoolDao.findByStreet("foo");
163 assertThat(result.get(0), is(school));
168 loadSubFieldsTest(new Callable<List<School>>() {
170 public List<School> call() throws Exception {
171 List<School> result = new ArrayList<>()
191 School school = TestUtil.createSchool(3, 5); local
214 School school = TestUtil.createSchool(3, 5); local
    [all...]
  /packages/apps/TV/tests/input/tools/
get_test_logos.sh 32 repair restaurant sail school scissors
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 40 Education(const std::string& school, double GPA) : school_(school), GPA_(GPA) {}
46 writer.String("school");
  /frameworks/support/samples/SupportSliceDemos/src/main/java/com/example/androidx/slice/demos/
SampleSliceProvider.java 746 CharSequence school = mListSummaries.get(2, ""); field in class:SampleSliceProvider
789 CharSequence school = mGridSummaries.get(4, ""); external variable declarations
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
nat.go 250 // "grade school" multiplication; for longer operands the Karatsuba algorithm
496 // "grade school" multiplication; for operands longer than karatsubaSqrThreshold
int_test.go 128 // mulBytes returns x*y via grade school multiplication. Both inputs
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
nat.go 250 // "grade school" multiplication; for longer operands the Karatsuba algorithm
496 // "grade school" multiplication; for operands longer than karatsubaSqrThreshold
int_test.go 128 // mulBytes returns x*y via grade school multiplication. Both inputs
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
panic.go 542 // ran out of deferred calls - old-school panic now
  /prebuilts/go/linux-x86/src/runtime/
panic.go 542 // ran out of deferred calls - old-school panic now

Completed in 452 milliseconds