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

1 2 3 4 5

  /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 277 developers/build/prebuilts/gradle/BasicAndroidKeyStore/ samples/${PLATFORM_NAME}/security/BasicAndroidKeyStore
278 developers/build/prebuilts/gradle/BasicSyncAdapter/ samples/${PLATFORM_NAME}/connectivity/BasicSyncAdapter
279 developers/build/prebuilts/gradle/NetworkConnect/ samples/${PLATFORM_NAME}/connectivity/NetworkConnect
280 developers/build/prebuilts/gradle/BasicNetworking/ samples/${PLATFORM_NAME}/connectivity/BasicNetworking
281 developers/build/prebuilts/gradle/BluetoothLeGatt/ samples/${PLATFORM_NAME}/connectivity/BluetoothLeGatt
282 developers/build/prebuilts/gradle/AppRestrictions/ samples/${PLATFORM_NAME}/content/AppRestrictions
283 developers/build/prebuilts/gradle/BasicContactables/ samples/${PLATFORM_NAME}/content/BasicContactables
284 developers/build/prebuilts/gradle/StorageClient/ samples/${PLATFORM_NAME}/content/StorageClient
285 developers/build/prebuilts/gradle/StorageProvider/ samples/${PLATFORM_NAME}/content/StorageProvider
286 developers/build/prebuilts/gradle/BasicGestureDetect/ samples/${PLATFORM_NAME}/input/B (…)
    [all...]
  /frameworks/multidex/instrumentation/
build.gradle 69 developers {
  /frameworks/multidex/library/
build.gradle 65 developers {
  /external/strace/tests/
strace-V.test 26 Copyright (c) 1991-${config_year} The strace developers <$(getval PACKAGE_URL)>.
  /external/strace/tests-m32/
strace-V.test 26 Copyright (c) 1991-${config_year} The strace developers <$(getval PACKAGE_URL)>.
  /external/strace/tests-mx32/
strace-V.test 26 Copyright (c) 1991-${config_year} The strace developers <$(getval PACKAGE_URL)>.
  /frameworks/support/buildSrc/src/main/groovy/android/support/
SupportLibraryMavenUploader.groovy 63 developers {
  /compatibility/cdd/6_dev-tools-and-options/
6_2_developer_options.md 3 Android includes support for developers to configure application
  /compatibility/cdd/9_security-model/
9_11_keys-and-credentials.md 4 allows app developers to store cryptographic keys in a container and use them in
  /system/bt/osi/src/socket_utils/
README 27 .The developers who want to pull sockets sources other than the
  /compatibility/cdd/7_hardware-compatibility/
7_7_usb.md 33 and traffic as specified in the [USB Battery Charging specification, revision 1.2](http://www.usb.org/developers/docs/devclass_docs/BCv1.2_070312.zip).
86 http://www.usb.org/developers/docs/usb_31_021517.zip) for USB Type-C
89 http://www.usb.org/developers/docs/devclass_docs/BCv1.2_070312.zip)
98 fields specified in the [USB HID Usage Tables](http://www.usb.org/developers/hidpage/Hut1_12v2.pdf)
99 and the [Voice Command Usage Request](http://www.usb.org/developers/hidpage/Voice_Command_Usage.pdf)
126 http://www.usb.org/developers/docs/).
  /external/libyuv/files/tools_libyuv/valgrind/
libyuv_tests.bat 50 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/dr-memory"
66 echo "See http://www.chromium.org/developers/how-tos/using-valgrind/threadsanitizer/threadsanitizer-on-windows"
  /compatibility/cdd/3_software/
3_6_api-namespaces.md 30 * [C-0-4] MUST NOT be advertised or otherwise exposed to developers.
  /compatibility/cdd/8_performance-and-power/
8_2_file-io-access-performance.md 4 application private data storage (`/data` partition) allows app developers
  /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/protobuf/js/
test_bootstrap.js 3 // https://developers.google.com/protocol-buffers/
  /external/smali/
build.gradle 182 developers {

Completed in 825 milliseconds

1 2 3 4 5