/external/snakeyaml/src/test/java/examples/collections/ |
D | TypeSafeMapTest.java | 27 * Test MapBean->Map<String, Developer> developers <br/> 38 Map<String, Developer2> developers = new LinkedHashMap<String, Developer2>(); in testDumpMap() local 39 developers.put("team1", new Developer2("Fred", "creator")); in testDumpMap() 40 developers.put("team2", new Developer2("John", "committer")); in testDumpMap() 41 bean.setDevelopers(developers); in testDumpMap() 55 Map<String, Developer2> developers = new LinkedHashMap<String, Developer2>(); in testDumpMap2() local 56 developers.put("team1", new Developer2("Fred", "creator")); in testDumpMap2() 57 developers.put("team2", new Developer2("John", "committer")); in testDumpMap2() 58 developers.put("team3", new Developer222("Bill", "head")); in testDumpMap2() 59 bean.setDevelopers(developers); in testDumpMap2() [all …]
|
D | TypeSafeMap2Test.java | 28 * Test MapBean->Map<Enum, Developer> developers <br/> 38 Map<Color, Developer2> developers = new LinkedHashMap<Color, Developer2>(); in testDumpMap() local 39 developers.put(Color.WHITE, new Developer2("Fred", "creator")); in testDumpMap() 40 developers.put(Color.BLACK, new Developer2("John", "committer")); in testDumpMap() 41 bean.setDevelopers(developers); in testDumpMap() 56 Map<Color, Developer2> developers = new LinkedHashMap<Color, Developer2>(); in testMap2() local 57 developers.put(Color.WHITE, new Developer2("Fred", "creator")); in testMap2() 58 developers.put(Color.RED, new SuperMan("Jason", "contributor", true)); in testMap2() 59 developers.put(Color.BLACK, new Developer2("John", "committer")); in testMap2() 60 bean.setDevelopers(developers); in testMap2() [all …]
|
D | TypeSafeListWithInterfaceTest.java | 27 * Test ListBean->List<Human> developers <br/> 37 List<Human> developers = new ArrayList<Human>(); in testDumpList() local 38 developers.add(new Developer("Fred", "creator")); in testDumpList() 39 developers.add(new Committer("John", "committer", 34)); in testDumpList() 40 bean.setDevelopers(developers); in testDumpList() 56 … assertTrue(e.getMessage(), e.getMessage().contains("Cannot create property=developers")); in testLoadWrongList() 70 List<Human> developers = parsed.getDevelopers(); in testLoadList() local 71 assertEquals(2, developers.size()); in testLoadList() 72 … assertEquals("Developer must be recognised.", Developer.class, developers.get(0).getClass()); in testLoadList() 73 Developer fred = (Developer) developers.get(0); in testLoadList() [all …]
|
D | TypeSafeListTest.java | 27 * Test ListBean->List<Developer> developers <br/> 37 List<Developer> developers = new ArrayList<Developer>(); in testDumpList() local 38 developers.add(new Developer("Fred", "creator")); in testDumpList() 39 developers.add(new Developer("John", "committer")); in testDumpList() 40 bean.setDevelopers(developers); in testDumpList() 58 List<Developer> developers = parsed.getDevelopers(); in testLoadList() local 59 assertEquals(2, developers.size()); in testLoadList() 60 … assertEquals("Developer must be recognised.", Developer.class, developers.get(0).getClass()); in testLoadList() 61 Developer fred = developers.get(0); in testLoadList() 69 private List<Developer> developers; field in TypeSafeListTest.ListBean1 [all …]
|
D | TypeSafeSetImplementationsTest.java | 40 SortedSet<Developer> developers = new TreeSet<Developer>(); in testDumpSet() local 41 developers.add(new Developer("John", "founder")); in testDumpSet() 42 developers.add(new Developer("Karl", "user")); in testDumpSet() 43 bean.setDevelopers(developers); in testDumpSet() 58 SortedSet<Developer> developers = new TreeSet<Developer>(); in testDumpSet2() local 59 developers.add(new Developer("John", "founder")); in testDumpSet2() 60 developers.add(new Developer("Karl", "user")); in testDumpSet2() 61 developers.add(new SuperDeveloper("Bill", "super")); in testDumpSet2() 62 bean.setDevelopers(developers); in testDumpSet2() 84 SortedSet<Developer> developers = parsed.getDevelopers(); in testLoadSet() local [all …]
|
D | TypeSafeListNoGerericsTest.java | 28 * Test ListBean->List developers <br/> 38 List<Developer> developers = new ArrayList<Developer>(); in testDumpList() local 39 developers.add(new Developer("Fred", "creator")); in testDumpList() 40 developers.add(new Developer("John", "committer")); in testDumpList() 41 bean.setDevelopers(developers); in testDumpList() 60 List<Map<String, String>> developers = parsed.getDevelopers(); in testLoadList() local 61 assertEquals(2, developers.size()); in testLoadList() 62 Map<String, String> fred = developers.get(0); in testLoadList() 71 private List developers; field in TypeSafeListNoGerericsTest.ListBean 94 return developers; in getDevelopers() [all …]
|
D | TypeSafePriorityTest.java | 28 * Test ListBean->List<Human> developers <br/> 41 descr.putListPropertyType("developers", Developer.class); in testLoadList2() 45 List<Human> developers = parsed.getDevelopers(); in testLoadList2() local 46 assertEquals(2, developers.size()); in testLoadList2() 47 … assertEquals("Committer must be recognised.", Developer.class, developers.get(0).getClass()); in testLoadList2() 48 Developer fred = (Developer) developers.get(0); in testLoadList2() 51 Developer john = (Developer) developers.get(1); in testLoadList2() 58 private List<Human> developers; field in TypeSafePriorityTest.ListBean 73 return developers; in getDevelopers() 76 public void setDevelopers(List<Human> developers) { in setDevelopers() argument [all …]
|
D | ListFileldBeanTest.java | 27 * Test public field ListBean->List<Developer> developers <br/> 37 List<Developer> developers = new ArrayList<Developer>(); in testDumpList() local 38 developers.add(new Developer("Fred", "creator")); in testDumpList() 39 developers.add(new Developer("John", "committer")); in testDumpList() 40 bean.developers = developers; in testDumpList() 59 List<Developer> developers = parsed.developers; in testLoadList() local 60 assertEquals(2, developers.size()); in testLoadList() 61 … assertEquals("Developer must be recognised.", Developer.class, developers.get(0).getClass()); in testLoadList() 62 Developer fred = developers.get(0); in testLoadList() 70 public List<Developer> developers; field in ListFileldBeanTest.ListFieldBean
|
/external/tensorflow/tensorflow/lite/g3doc/tutorials/ |
D | _index.yaml | 41 # Mobile developers 45 <h3 class="tfo-landing-page-heading no-link">For mobile developers</h3> 54 …<a href="https://codelabs.developers.google.com/codelabs/recognize-flowers-with-tensorflow-on-andr… 59 …path: https://codelabs.developers.google.com/codelabs/recognize-flowers-with-tensorflow-on-android… 62 …<a href="https://codelabs.developers.google.com/codelabs/recognize-flowers-with-tensorflow-on-ios/… 67 … path: https://codelabs.developers.google.com/codelabs/recognize-flowers-with-tensorflow-on-ios/#0 82 <a href="https://codelabs.developers.google.com/codelabs/digit-classifier-tflite/#0"> 87 path: https://codelabs.developers.google.com/codelabs/digit-classifier-tflite/#0 96 # IoT developers 101 <h3 class="tfo-landing-page-heading no-link">For IoT developers</h3> [all …]
|
/external/expat/win32/ |
D | MANIFEST.txt | 5 users, and some contain material of interest to developers who wish to 13 <top>\Doc\ API documentation for developers. 15 <top>\Bin\ Pre-compiled dynamic libraries for developers. 16 Pre-compiled static libraries for developers (*MT.lib). 19 <top>\Source\ Source code, which may interest some developers,
|
/external/clang/docs/ |
D | ClangTools.rst | 6 designed for use by C++ developers who are already using and enjoying 13 side-project so that developers who don't want or need to build them 32 document is currently focused on Clang and Clang Tool developers, not on 39 used by C++ developers. That is they are *not* primarily for use by 40 Clang developers, although they are hopefully useful to C++ developers 102 and features of the tools for other tool developers; each tool should 150 comments with deduced types. The motivation is that there are developers
|
/external/python/oauth2client/samples/ |
D | oauth2_for_devices.py | 3 # See: https://developers.google.com/accounts/docs/OAuth2ForDevices 18 # https://developers.google.com/accounts/docs/OAuth2ForDevices#obtainingacode 26 # https://developers.google.com/accounts/docs/OAuth2ForDevices#obtainingatoken 32 # https://developers.google.com/accounts/docs/OAuth2ForDevices#callinganapi
|
/external/llvm-project/clang/docs/ |
D | ClangTools.rst | 6 designed for use by C++ developers who are already using and enjoying 19 document is currently focused on Clang and Clang Tool developers, not on 26 used by C++ developers. That is they are *not* primarily for use by 27 Clang developers, although they are hopefully useful to C++ developers 89 and features of the tools for other tool developers; each tool should 137 comments with deduced types. The motivation is that there are developers
|
/external/tensorflow/tensorflow/lite/g3doc/inference_with_metadata/ |
D | codegen.md | 3 Using [TensorFlow Lite Metadata](../convert/metadata), developers can generate 4 wrapper code to enable integration on Android. For most developers, the 12 developers can use Android Studio ML Model Binding to automatically configure 15 `ByteBuffer`. Instead, developers can interact with the TensorFlow Lite model 46 ML Model Binding provides a way for developers to accelerate their code through 123 developers can use the TensorFlow Lite Android wrapper code generator to create 125 directly with `ByteBuffer`. Instead, developers can interact with the TensorFlow 225 The generated code provides a way for developers to accelerate their code
|
/external/python/google-api-python-client/docs/ |
D | start.md | 10 …age](http://developers.google.com/console/help/managing-projects) and create a project in the [Goo… 11 3. [Install](http://developers.google.com/api-client-library/python/start/installation) the librar… 27 …rant that access. All of this is accomplished with [OAuth 2.0](https://developers.google.com/ident… 34 …for your Google Cloud project on the [API Access pane](https://console.developers.google.com/apis/… 38 …* [Service Account](https://developers.google.com/identity/protocols/OAuth2ServiceAccount) clien… 131 Use the [APIs Explorer](https://developers.google.com/apis-explorer/) to browse APIs, list availabl…
|
D | oauth-installed.md | 10 …developers.google.com/identity) to authenticate your users. The Google Sign-In button manages the … 12 … cameras, or printers), then see [Using OAuth 2.0 for Devices](https://developers.google.com/accou… 24 …one shown in the [Using OAuth 2.0 for Web Server Applications](https://developers.google.com/api-c… 36 1. Open the [Credentials page](https://console.developers.google.com/apis/credentials) in the API C… 49 When you create a client ID in the [Google API Console](https://console.developers.google.com/), tw… 53 … port number without changing the [Google API Console](https://console.developers.google.com/) con…
|
/external/chromium-trace/catapult/third_party/polymer/components/google-signin/ |
D | google-signin.html | 156 The attribute `clientId` is provided in your Google Developers Console 157 (https://console.developers.google.com). 161 need to be enabled in the Google Developers Console before you can use them. 164 activities (https://developers.google.com/+/web/app-activities/) on behalf of 170 (https://developers.google.com/identity/sign-in/web/server-side-flow). 179 (https://developers.google.com/+/branding-guidelines). 198 any apps you're building. See the Google Developers Console 199 (https://console.developers.google.com) for more info. 251 * See the relevant [docs](https://developers.google.com/+/web/signin/android-app-installs) 275 * a Google Developers clientId reference [all …]
|
/external/libcxx/utils/docker/debian9/ |
D | Dockerfile | 12 LABEL maintainer "libc++ Developers" 43 LABEL maintainer "libc++ Developers" 53 LABEL maintainer "libc++ Developers" 63 LABEL maintainer "libc++ Developers" 81 LABEL maintainer "libc++ Developers"
|
/external/chromium-trace/catapult/third_party/polymer/components/google-apis/ |
D | google-maps-api.html | 48 …* A Maps API key. To obtain an API key, see developers.google.com/maps/documentation/javascript/tu… 56 …r Business Client ID. To obtain a Maps API for Business Client ID, see developers.google.com/maps/… 74 * see https://developers.google.com/maps/documentation/javascript/basics#Language 85 * See https://developers.google.com/maps/documentation/javascript/signedin#enable_sign_in 128 'See https://developers.google.com/maps/documentation/javascript/get-api-key ' +
|
/external/mesa3d/docs/ |
D | developers.rst | 1 Developers title 4 Both professional and volunteer developers contribute to Mesa. 7 developers including Brian Paul and Keith Whitwell.
|
/external/python/cpython2/Doc/distributing/ |
D | index.rst | 12 available for other Python developers to use under open source license terms. 39 developers and documentation authors responsible for the maintenance and 71 This means that other developers require explicit permission to copy, use, 75 relatively consistent way, allowing developers to share and collaborate 77 This leaves many developers free to spend more time focusing on the problems 81 reasonably straightforward for developers to make their own contributions
|
/external/python/cpython3/Doc/distributing/ |
D | index.rst | 12 available for other Python developers to use under open source license terms. 39 developers and documentation authors responsible for the maintenance and 71 This means that other developers require explicit permission to copy, use, 75 relatively consistent way, allowing developers to share and collaborate 77 This leaves many developers free to spend more time focusing on the problems 81 reasonably straightforward for developers to make their own contributions
|
/external/python/google-api-python-client/docs/dyn/ |
D | driveactivity_v2.activity.html | 189 # https://developers.google.com/people/. 221 # https://developers.google.com/people/. 358 # https://developers.google.com/people/. 415 # https://developers.google.com/people/. 447 # https://developers.google.com/people/. 584 # https://developers.google.com/people/. 609 # https://developers.google.com/people/. 624 # https://developers.google.com/people/. 640 # https://developers.google.com/drive/v3/web/mime-types. 673 # https://developers.google.com/people/. [all …]
|
/external/llvm-project/llvm/docs/ |
D | GettingInvolved.rst | 27 The LLVM project's policy towards developers and their contributions. 81 This is a guide to preparing LLVM releases. Most developers can ignore it. 84 …This is a guide to validate a new release, during the release process. Most developers can ignore … 111 This list contains all commit messages that are made when LLVM developers 141 Users and developers of the LLVM project (including subprojects such as Clang)
|
/external/llvm/docs/ |
D | index.rst | 167 For developers of applications which use LLVM as a library. 232 For API clients and LLVM developers. 398 The LLVM project's policy towards developers and their contributions. 411 This is a guide to preparing LLVM releases. Most developers can ignore it. 414 …This is a guide to validate a new release, during the release process. Most developers can ignore … 426 LLVM has a thriving community of friendly and helpful developers. 444 This list contains all commit messages that are made when LLVM developers 474 Users and developers of the LLVM project (including subprojects such as Clang)
|