HomeSort by relevance Sort by last modified time
    Searched refs:developers (Results 1 - 25 of 50) sorted by null

1 2

  /external/snakeyaml/src/test/java/examples/collections/
TypeSafePriorityTest.java 28 * Test ListBean->List<Human> developers <br/>
41 descr.putListPropertyType("developers", Developer.class);
45 List<Human> developers = parsed.getDevelopers(); local
46 assertEquals(2, developers.size());
47 assertEquals("Committer must be recognised.", Developer.class, developers.get(0).getClass());
48 Developer fred = (Developer) developers.get(0);
51 Developer john = (Developer) developers.get(1);
58 private List<Human> developers; field in class:TypeSafePriorityTest.ListBean
73 return developers;
76 public void setDevelopers(List<Human> developers) {
    [all...]
TypeSafeListTest.java 27 * Test ListBean->List<Developer> developers <br/>
37 List<Developer> developers = new ArrayList<Developer>(); local
38 developers.add(new Developer("Fred", "creator"));
39 developers.add(new Developer("John", "committer"));
40 bean.setDevelopers(developers);
58 List<Developer> developers = parsed.getDevelopers(); local
59 assertEquals(2, developers.size());
60 assertEquals("Developer must be recognised.", Developer.class, developers.get(0).getClass());
61 Developer fred = developers.get(0);
69 private List<Developer> developers; field in class:TypeSafeListTest.ListBean1
    [all...]
TypeSafeListNoGerericsTest.java 28 * Test ListBean->List developers <br/>
38 List<Developer> developers = new ArrayList<Developer>(); local
39 developers.add(new Developer("Fred", "creator"));
40 developers.add(new Developer("John", "committer"));
41 bean.setDevelopers(developers);
60 List<Map<String, String>> developers = parsed.getDevelopers(); local
61 assertEquals(2, developers.size());
62 Map<String, String> fred = developers.get(0);
71 private List developers; field in class:TypeSafeListNoGerericsTest.ListBean
94 return developers;
    [all...]
TypeSafeMapTest.java 27 * Test MapBean->Map<String, Developer> developers <br/>
38 Map<String, Developer2> developers = new LinkedHashMap<String, Developer2>(); local
39 developers.put("team1", new Developer2("Fred", "creator"));
40 developers.put("team2", new Developer2("John", "committer"));
41 bean.setDevelopers(developers);
55 Map<String, Developer2> developers = new LinkedHashMap<String, Developer2>(); local
56 developers.put("team1", new Developer2("Fred", "creator"));
57 developers.put("team2", new Developer2("John", "committer"));
58 developers.put("team3", new Developer222("Bill", "head"));
59 bean.setDevelopers(developers);
78 Map<String, Developer2> developers = parsed.getDevelopers(); local
90 private Map<String, Developer2> developers; field in class:TypeSafeMapTest.MapBean
175 Map developers = parsed.getDevelopers(); local
189 private Map developers; field in class:TypeSafeMapTest.MapBeanNoGenerics
    [all...]
ListFileldBeanTest.java 27 * Test public field ListBean->List<Developer> developers <br/>
37 List<Developer> developers = new ArrayList<Developer>(); local
38 developers.add(new Developer("Fred", "creator"));
39 developers.add(new Developer("John", "committer"));
40 bean.developers = developers;
59 List<Developer> developers = parsed.developers; local
60 assertEquals(2, developers.size());
61 assertEquals("Developer must be recognised.", Developer.class, developers.get(0).getClass())
70 public List<Developer> developers; field in class:ListFileldBeanTest.ListFieldBean
    [all...]
TypeSafeSetImplementationsTest.java 40 SortedSet<Developer> developers = new TreeSet<Developer>(); local
41 developers.add(new Developer("John", "founder"));
42 developers.add(new Developer("Karl", "user"));
43 bean.setDevelopers(developers);
58 SortedSet<Developer> developers = new TreeSet<Developer>(); local
59 developers.add(new Developer("John", "founder"));
60 developers.add(new Developer("Karl", "user"));
61 developers.add(new SuperDeveloper("Bill", "super"));
62 bean.setDevelopers(developers);
84 SortedSet<Developer> developers = parsed.getDevelopers() local
105 SortedSet<Developer> developers = parsed.getDevelopers(); local
113 private SortedSet<Developer> developers; field in class:TypeSafeSetImplementationsTest.SetBean
    [all...]
TypeSafeListWithInterfaceTest.java 27 * Test ListBean->List<Human> developers <br/>
37 List<Human> developers = new ArrayList<Human>(); local
38 developers.add(new Developer("Fred", "creator"));
39 developers.add(new Committer("John", "committer", 34));
40 bean.setDevelopers(developers);
56 assertTrue(e.getMessage(), e.getMessage().contains("Cannot create property=developers"));
70 List<Human> developers = parsed.getDevelopers(); local
71 assertEquals(2, developers.size());
72 assertEquals("Developer must be recognised.", Developer.class, developers.get(0).getClass());
73 Developer fred = (Developer) developers.get(0)
85 private List<Human> developers; field in class:TypeSafeListWithInterfaceTest.ListBean
    [all...]
TypeSafeMap2Test.java 28 * Test MapBean->Map<Enum, Developer> developers <br/>
38 Map<Color, Developer2> developers = new LinkedHashMap<Color, Developer2>(); local
39 developers.put(Color.WHITE, new Developer2("Fred", "creator"));
40 developers.put(Color.BLACK, new Developer2("John", "committer"));
41 bean.setDevelopers(developers);
56 Map<Color, Developer2> developers = new LinkedHashMap<Color, Developer2>(); local
57 developers.put(Color.WHITE, new Developer2("Fred", "creator"));
58 developers.put(Color.RED, new SuperMan("Jason", "contributor", true));
59 developers.put(Color.BLACK, new Developer2("John", "committer"));
60 bean.setDevelopers(developers);
98 Map<Color, Developer2> developers = parsed.getDevelopers(); local
120 private Map<Color, Developer2> developers; field in class:TypeSafeMap2Test.MapBean2
    [all...]
  /development/build/
sdk.atree 267 developers/build/prebuilts/gradle/BasicAndroidKeyStore/ samples/${PLATFORM_NAME}/security/BasicAndroidKeyStore
268 developers/build/prebuilts/gradle/BasicSyncAdapter/ samples/${PLATFORM_NAME}/connectivity/BasicSyncAdapter
269 developers/build/prebuilts/gradle/NetworkConnect/ samples/${PLATFORM_NAME}/connectivity/NetworkConnect
270 developers/build/prebuilts/gradle/BasicNetworking/ samples/${PLATFORM_NAME}/connectivity/BasicNetworking
271 developers/build/prebuilts/gradle/BluetoothLeGatt/ samples/${PLATFORM_NAME}/connectivity/BluetoothLeGatt
272 developers/build/prebuilts/gradle/AppRestrictions/ samples/${PLATFORM_NAME}/content/AppRestrictions
273 developers/build/prebuilts/gradle/BasicContactables/ samples/${PLATFORM_NAME}/content/BasicContactables
274 developers/build/prebuilts/gradle/StorageClient/ samples/${PLATFORM_NAME}/content/StorageClient
275 developers/build/prebuilts/gradle/StorageProvider/ samples/${PLATFORM_NAME}/content/StorageProvider
276 developers/build/prebuilts/gradle/BasicGestureDetect/ samples/${PLATFORM_NAME}/input/B (…)
    [all...]
  /ndk/tests/build/test-c-only-flags/jni/
Android.mk 9 # to save developers from the trouble of specifying flags twice for both
  /external/pdfium/tools/drmemory/scripts/
pdfium_tests.bat 14 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
  /external/sqlite/android/
Android.mk 33 # Note: This "test" is not recognized as a formal test. This is just for enabling developers
  /frameworks/support/v14/preference/
build.gradle 115 developers {
  /system/bt/osi/src/socket_utils/
README 23 "osi_" prefix is added to all functions. The developers who want to pull sockets
  /external/libxml2/example/
gjobread.c 102 personPtr developers[100]; /* using dynamic alloc is left as an exercise */ member in struct:job
164 printf("%d developers\n", cur->nbDevelopers);
166 for (i = 0;i < cur->nbDevelopers;i++) printPerson(cur->developers[i]);
  /external/smali/
build.gradle 175 developers {
  /frameworks/support/v17/preference-leanback/
build.gradle 117 developers {
  /frameworks/support/v7/preference/
build.gradle 117 developers {
  /ndk/build/core/
check-cygwin-make.mk 18 # For some reason, a lot of application developers on Windows
  /external/curl/tests/
http_pipe.py 37 https://dev.chromium.org/developers/design-documents/network-stack/http-pipelining
  /external/webrtc/tools/valgrind-webrtc/
webrtc_tests.bat 50 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
  /bionic/libc/tools/
genlibgcc_compat.py 53 * developers to fix their build.
  /external/protobuf/editors/
proto.vim 3 " https://developers.google.com/protocol-buffers/
  /build/tools/droiddoc/templates-pdk/
sdkpage.cs 148 <p>Welcome Developers! If you are new to the Android SDK, please read the steps below, for an
216 <p>Welcome developers! We are pleased to provide you with a preview SDK for the upcoming
  /build/tools/droiddoc/templates-sdk/
footer.cs 11 <a class="dac-footer-contact-link" href="http://android-developers.blogspot.com/">Blog</a>

Completed in 893 milliseconds

1 2