Home
last modified time | relevance | path

Searched refs:bindings (Results 1 – 25 of 200) sorted by relevance

12345678

/external/dbus-binding-generator/
DAndroid.mk31 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/
Dproxy_resolver_v8_unittest.cc243 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/
Dskmojo.gyp21 '<(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/
DBindingCollector.java35 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/
DglsAttributeLocationTests.cpp66 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/
DREADME.txt1 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/
DCHANGELOG.md17 * 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/
DMissingBindingSuggestions.java40 ResolvedBindings bindings = graph.resolvedBindings().get(key); in forKey() local
41 if ((bindings == null) || bindings.bindings().isEmpty()) { in forKey()
DContributionBinding.java223 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) {
DModuleDescriptor.java45 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/
DDuplicateBindingsTest.java57 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/
DNEWS.pre-1-062 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/
Dchromeos-dbus-bindings.gyp21 '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/
DAbstractInjectorGrapher.java108 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/
Dconfigure.ac109 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/parameter-framework/upstream/bindings/python/
DREADME.md1 # 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/guice/extensions/mini/src/com/google/inject/mini/
DMiniGuice.java48 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/deqp/external/vulkancts/framework/vulkan/
DvkBuilderUtil.cpp72 std::vector<VkDescriptorSetLayoutBinding> bindings = m_bindings; in build() local
78bindings[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/jmonkeyengine/engine/src/core/com/jme3/input/
DInputManager.java101 private final IntMap<ArrayList<Mapping>> bindings = new IntMap<ArrayList<Mapping>>(); field in InputManager
155 ArrayList<Mapping> maps = bindings.get(hash); in invokeActions()
183 if (!bindings.containsKey(hash)) { in invokeTimedActions()
226 ArrayList<Mapping> maps = bindings.get(hash); in invokeAnalogs()
256 ArrayList<Mapping> maps = bindings.get(hash); in invokeAnalogsAndActions()
532 ArrayList<Mapping> names = bindings.get(hash); in addMapping()
535 bindings.put(hash, names); in addMapping()
579 ArrayList<Mapping> maps = bindings.get(hash); in deleteMapping()
601 ArrayList<Mapping> maps = bindings.get(trigger.triggerHashCode()); in deleteTrigger()
613 bindings.clear(); in clearMappings()
[all …]
/external/clang/docs/analyzer/
DRegionStore.txt6 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/libcap-ng/libcap-ng-0.7/bindings/python/test/
DMakefile.am25 TESTS_ENVIRONMENT = PYTHONPATH=${top_builddir}/bindings/python/:${top_builddir}/bindings/python/.li…
/external/skia/site/user/special/
Dlua.md12 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/guice/extensions/multibindings/src/com/google/inject/multibindings/
DMultibinder.java273 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/deqp/framework/opengl/
DgluDrawUtil.cpp113 …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/mesa3d/src/mesa/state_tracker/
Dst_cb_texture.c219 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 …]

12345678