/external/dbus-binding-generator/ |
D | Android.mk | 31 chromeos-dbus-bindings/adaptor_generator.cc \ 32 chromeos-dbus-bindings/dbus_signature.cc \ 33 chromeos-dbus-bindings/header_generator.cc \ 34 chromeos-dbus-bindings/indented_text.cc \ 35 chromeos-dbus-bindings/method_name_generator.cc \ 36 chromeos-dbus-bindings/name_parser.cc \ 37 chromeos-dbus-bindings/proxy_generator.cc \ 38 chromeos-dbus-bindings/xml_interface_parser.cc 48 LOCAL_SRC_FILES := chromeos-dbus-bindings/generate_chromeos_dbus_bindings.cc 63 chromeos-dbus-bindings/adaptor_generator_unittest.cc \ [all …]
|
/external/chromium-libpac/test/ |
D | proxy_resolver_v8_unittest.cc | 243 MockJSBindings* bindings = resolver.mock_js_bindings(); in TEST() local 244 EXPECT_EQ(0U, bindings->alerts.size()); in TEST() 245 ASSERT_EQ(1U, bindings->errors.size()); in TEST() 247 bindings->errors[0]); in TEST() 272 MockJSBindings* bindings = resolver.mock_js_bindings(); in TEST() local 273 EXPECT_EQ(0U, bindings->alerts.size()); in TEST() 276 ASSERT_EQ(1U, bindings->errors.size()); in TEST() 279 bindings->errors[0]); in TEST() 322 MockJSBindings* bindings = resolver.mock_js_bindings(); in TEST() local 323 EXPECT_EQ(0U, bindings->alerts.size()); in TEST() [all …]
|
/external/skia/gyp/ |
D | skmojo.gyp | 21 '<(mojo_parent_dir)/mojo/public/interfaces/bindings/interface_control_messages.mojom.cc', 22 '<(mojo_parent_dir)/mojo/public/interfaces/bindings/interface_control_messages.mojom.h', 23 '<(mojo_parent_dir)/mojo/public/interfaces/bindings/tests/ping_service.mojom.cc', 24 '<(mojo_parent_dir)/mojo/public/interfaces/bindings/tests/ping_service.mojom.h', 38 … '<(mojo_parent_dir)/mojo/public/tools/bindings/mojom_parser/bin/linux64/mojom_parser.sha1', 39 … '<(mojo_parent_dir)/mojo/public/tools/bindings/mojom_parser/bin/mac64/mojom_parser.sha1', 40 '<(mojo_parent_dir)/mojo/public/tools/bindings/mojom_bindings_generator.py', 41 '<(mojo_parent_dir)/mojo/public/interfaces/bindings/interface_control_messages.mojom', 43 '<(mojo_parent_dir)/mojo/public/interfaces/bindings/tests/ping_service.mojom', 51 … '<(mojo_parent_dir)/mojo/public/interfaces/bindings/interface_control_messages.mojom.cc', [all …]
|
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/ |
D | BindingCollector.java | 35 private final Map<Key<?>, TypeLiteral<?>> bindings = Maps.newHashMap(); field in BindingCollector 38 if (bindings.containsKey(key)) { in addBinding() 43 bindings.put(key, target); in addBinding() 49 return Collections.unmodifiableMap(bindings); in getBindings() 54 return bindings.hashCode(); in hashCode() 59 return (obj instanceof BindingCollector) && bindings.equals(((BindingCollector) obj).bindings); in equals()
|
/external/deqp/modules/glshared/ |
D | glsAttributeLocationTests.cpp | 66 deInt32 getBoundLocation (const map<string, deUint32>& bindings, const string& attrib) in getBoundLocation() argument 68 std::map<string, deUint32>::const_iterator iter = bindings.find(attrib); in getBoundLocation() 70 return (iter == bindings.end() ? (deInt32)Attribute::LOC_UNDEF : iter->second); in getBoundLocation() 73 …l hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in hasAttributeAliasing() argument 79 const deInt32 location = getBoundLocation(bindings, attributes[attribNdx].getName()); in hasAttributeAliasing() 602 …& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in checkAttribLocationQuery() argument 609 …!= Attribute::LOC_UNDEF ? attrib.getLayoutLocation() : getBoundLocation(bindings, attrib.getName()… in checkAttribLocationQuery() 631 …& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in checkQuery() argument 635 if (!checkAttribLocationQuery(log, gl, program, attributes, bindings)) in checkQuery() 820 vector<Bind> bindings; in iterate() local [all …]
|
/external/llvm/bindings/go/ |
D | README.txt | 1 This directory contains LLVM bindings for the Go programming language 10 Using the bindings 13 The package path "llvm.org/llvm/bindings/go/llvm" can be used to 15 "llvm.org/llvm.v36/bindings/go/llvm" refer to released versions of LLVM. 25 it to be used by the bindings. If you receive an error message from "go build" 29 #include <llvm-c/Analysis.h> // If you are getting an error here read bindings/go/README.txt 37 $ $GOPATH/src/llvm.org/llvm/bindings/go/build.sh 42 …$ $GOPATH/src/llvm.org/llvm/bindings/go/build.sh -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=…
|
/external/dagger2/ |
D | CHANGELOG.md | 17 * Support a more robust set of types for map keys in map bindings (primitive types, etc.) 29 * Subcomponents now properly build the object graph in some cases involving explicit bindings 40 * Simple bindings of implementations to interfaces, custom provision of objects, and set-bindings 41 * Compile-time validation of graph structure (cycles, missing bindings, duplicate bindings) 47 - Map bindings 62 * Avoid re-linking all bindings when calling `.plus()`. 63 * Set bindings are now unioned when calling `.plus()`.
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
D | MissingBindingSuggestions.java | 40 ResolvedBindings bindings = graph.resolvedBindings().get(key); in forKey() local 41 if ((bindings == null) || bindings.bindings().isEmpty()) { in forKey()
|
D | ContributionBinding.java | 223 Iterable<? extends B> bindings) { 226 for (B binding : bindings) { 238 static ContributionType contributionTypeFor(Iterable<ContributionBinding> bindings) { 239 checkNotNull(bindings); 240 checkArgument(!Iterables.isEmpty(bindings), "no bindings"); 242 for (ContributionBinding binding : bindings) {
|
D | ModuleDescriptor.java | 45 abstract ImmutableSet<ContributionBinding> bindings(); 71 ImmutableSet.Builder<ContributionBinding> bindings = ImmutableSet.builder(); 74 bindings.add( 78 bindings.add( 94 bindings.build(),
|
/external/guice/core/test/com/google/inject/ |
D | DuplicateBindingsTest.java | 57 List<Key<?>> bindings = Lists.newArrayList(injector.getAllBindings().keySet()); in testDuplicateBindingsAreIgnored() local 58 removeBasicBindings(bindings); in testDuplicateBindingsAreIgnored() 61 assertTrue(bindings.remove(Key.get(Foo.class, named("instance")))); in testDuplicateBindingsAreIgnored() 62 assertTrue(bindings.remove(Key.get(Foo.class, named("pInstance")))); in testDuplicateBindingsAreIgnored() 63 assertTrue(bindings.remove(Key.get(Foo.class, named("pKey")))); in testDuplicateBindingsAreIgnored() 64 assertTrue(bindings.remove(Key.get(Foo.class, named("linkedKey")))); in testDuplicateBindingsAreIgnored() 65 assertTrue(bindings.remove(Key.get(FooImpl.class))); in testDuplicateBindingsAreIgnored() 66 assertTrue(bindings.remove(Key.get(Foo.class, named("constructor")))); in testDuplicateBindingsAreIgnored() 67 assertTrue(bindings.remove(Key.get(FooProvider.class))); // JIT binding in testDuplicateBindingsAreIgnored() 68 assertTrue(bindings.remove(Key.get(Foo.class, named("providerMethod")))); in testDuplicateBindingsAreIgnored() [all …]
|
/external/dbus/ |
D | NEWS.pre-1-0 | 62 bindings 92 - Remove some lingering bits left over from the bindings split 120 - GLib bindings: 127 - Python bindings: 129 - Qt4 bindings: 138 - Mono bindings: 146 - GLib bindings: 151 - Python bindings: 155 - Qt bindings: 156 - both Qt3 and Qt4 bindings can be built at the same time [all …]
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
D | chromeos-dbus-bindings.gyp | 21 'target_name': 'libchromeos-dbus-bindings', 58 'target_name': 'generate-chromeos-dbus-bindings', 60 'dependencies': ['libchromeos-dbus-bindings'], 72 'dependencies': ['libchromeos-dbus-bindings'],
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
D | AbstractInjectorGrapher.java | 108 Iterable<Binding<?>> bindings = getBindings(injector, root); in graph() local 109 Map<NodeId, NodeId> aliases = resolveAliases(aliasCreator.createAliases(bindings)); in graph() 110 createNodes(nodeCreator.getNodes(bindings), aliases); in graph() 111 createEdges(edgeCreator.getEdges(bindings), aliases); in graph() 211 List<Binding<?>> bindings = Lists.newArrayList(); in getBindings() local 221 bindings.add(binding); in getBindings() 226 return bindings; in getBindings()
|
/external/libcap-ng/libcap-ng-0.7/ |
D | configure.ac | 109 AC_MSG_WARN("Swig not found - python bindings will not be made") 113 AC_MSG_CHECKING(whether to create python bindings) 115 AS_HELP_STRING([--with-python],[enable building python bindings]), 126 AC_MSG_NOTICE(Python bindings will be built) 132 AC_MSG_WARN("Python headers not found - python bindings will not be made") 139 bindings/Makefile bindings/python/Makefile 140 bindings/python/test/Makefile utils/Makefile
|
/external/guice/extensions/mini/src/com/google/inject/mini/ |
D | MiniGuice.java | 48 private final Map<Key, Provider<?>> bindings = new HashMap<Key, Provider<?>>(); field in MiniGuice 88 Provider<?> provider = miniGuice.bindings.get(key); in inject() 94 for (final Map.Entry<Key, Provider<?>> binding : bindings.entrySet()) { in addProviderBindings() 105 bindings.putAll(providerBindings); in addProviderBindings() 121 Provider<?> provider = bindings.get(key); in eagerlyLoadSingletons() 123 bindings.put(key, new Provider<Object>() { in eagerlyLoadSingletons() 172 if (bindings.containsKey(key)) { in addJitBindings() 277 if (bindings.put(key, provider) != null) { in putBinding() 285 parameters[i] = bindings.get(parameterKeys[i]).get(); in keysToValues()
|
/external/parameter-framework/upstream/bindings/python/ |
D | README.md | 1 # Python bindings 3 These are bindings on the `CParameterMgrFullConnector` class, its inner 11 The bindings are defined unsing SWIG in the `pfw.i` file and the actual source 22 Python bindings, the `CParameterMgrFullConnector` class is renamed
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkBuilderUtil.cpp | 72 std::vector<VkDescriptorSetLayoutBinding> bindings = m_bindings; in build() local 78 …bindings[samplerInfo.bindingIndex].pImmutableSamplers = &m_immutableSamplers[samplerInfo.samplerBa… in build() 86 (deUint32)bindings.size(), // bindingCount in build() 87 (bindings.empty()) ? (DE_NULL) : (bindings.data()), // pBinding in build()
|
/external/clang/docs/analyzer/ |
D | RegionStore.txt | 6 RegionStoreManager. This store records bindings to memory regions using a "base 35 else, but we do have to be conservative about all other bindings within `foo`. 44 concrete offset invalidates any symbolic offset bindings whose concrete offset 74 variable. Thus it is not valid to assume that all bindings with non-symbolic 85 need to throw away not just all bindings within the region itself, but within 95 all live bindings in the store (in order to throw away the dead ones). The name 96 "ClusterAnalysis" predates the cluster-based organization of bindings, but 98 bindings within a cluster must be treated in the same way for a conservative 105 Most bindings in RegionStore are simple scalar values -- integers and pointers. 106 These are known as "Direct" bindings. However, RegionStore supports a second [all …]
|
/external/deqp/framework/opengl/ |
D | gluDrawUtil.cpp | 113 …onst RenderContext& context, int numBindings, const VertexArrayBinding* bindings, Type type = TYPE… 339 …ffer (const RenderContext& context, int numBindings, const VertexArrayBinding* bindings, Type type) in VertexBuffer() argument 346 if (!areVertexArrayLocationsValid(bindings, bindings+numBindings)) in VertexBuffer() 350 computeNonStridedBufferLayout(layout, bindings, bindings+numBindings); in VertexBuffer() 356 srcPtrs[ndx] = bindings[ndx].pointer; in VertexBuffer() 432 …oid disableVertexArrays (const glw::Functions& gl, const std::vector<VertexArrayBinding>& bindings) in disableVertexArrays() argument 434 …for (std::vector<VertexArrayBinding>::const_iterator vaIter = bindings.begin(); vaIter != bindings… in disableVertexArrays()
|
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/ |
D | Multibinder.java | 273 private ImmutableList<Binding<T>> bindings; field in Multibinder.RealMultibinder 324 List<Binding<T>> bindings = Lists.newArrayList(); in initialize() local 333 bindings.add(binding); in initialize() 339 this.bindings = ImmutableList.copyOf(bindings); in initialize() 373 Map<T, Binding<T>> result = new LinkedHashMap<T, Binding<T>>(mapCapacity(bindings.size())); in get() 374 for (Binding<T> binding : bindings) { in get() 413 return (List<Binding<?>>) (List<?>) bindings; // safe because bindings is immutable. in getElements() 466 int size = bindings.size(); in get() 470 providers[i] = bindings.get(i).getProvider(); in get()
|
/external/skia/site/user/special/ |
D | lua.md | 12 your system in order to use the bindings. 28 …which enables a build of another shared library called 'skia.so' that exposes Skia bindings to Lua. 47 The key part to loading the bindings is `require 'skia'` which tells lua to look 49 bindings. 'skia.so' in turn will load 'libskia.so' from the current directory or
|
/external/libcap-ng/libcap-ng-0.7/bindings/python/test/ |
D | Makefile.am | 25 TESTS_ENVIRONMENT = PYTHONPATH=${top_builddir}/bindings/python/:${top_builddir}/bindings/python/.li…
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_texture.c | 219 unsigned bindings; in default_bindings() local 222 bindings = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_DEPTH_STENCIL; in default_bindings() 224 bindings = PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_RENDER_TARGET; in default_bindings() 226 if (screen->is_format_supported(screen, format, target, 0, bindings)) in default_bindings() 227 return bindings; in default_bindings() 232 if (screen->is_format_supported(screen, format, target, 0, bindings)) in default_bindings() 233 return bindings; in default_bindings() 328 GLuint bindings; in guess_and_alloc_texture() local 380 bindings = default_bindings(st, fmt); in guess_and_alloc_texture() 394 bindings); in guess_and_alloc_texture() [all …]
|
/external/opencv3/doc/py_tutorials/py_bindings/ |
D | py_table_of_contents_bindings.markdown | 4 Here, you will learn how OpenCV-Python bindings are generated. 8 Learn how OpenCV-Python bindings are generated.
|