HomeSort by relevance Sort by last modified time
    Searched refs:bindings (Results 51 - 75 of 218) sorted by null

1 23 4 5 6 7 8 9

  /external/skia/src/gpu/gl/
GrGLProgram.cpp 72 const GrTextureAccess** bindings = textureBindings->push_back_n(numTextures); local
75 bindings[i] = &processor.textureAccess(i);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java 226 * Traverse the resolved dependency requests, validating resolved bindings, and reporting any
264 for (Binding binding : resolvedRequest.binding().bindings()) {
275 * Validates that the set of bindings resolved is consistent with the type of the binding, and
276 * returns true if the bindings are valid.
280 if (resolvedBinding.bindings().isEmpty()) {
291 "contribution binding keys should never have members injection bindings");
326 if (!all(resolvedBinding.bindings(), Binding.Type.MEMBERS_INJECTION)) {
328 "members injection binding keys should never have contribution bindings");
330 if (resolvedBinding.bindings().size() > 1) {
334 return validateMembersInjectionBinding(getOnlyElement(resolvedBinding.bindings()), path)
885 Collection<ContributionBinding> bindings = entry.getValue(); local
    [all...]
Binding.java 75 * Returns the framework class associated with bindings of this type.
108 static Optional<String> bindingPackageFor(Iterable<? extends Binding> bindings) {
110 for (Binding binding : bindings) {
ResolvedBindings.java 32 * The collection of bindings that have been resolved for a binding key.
39 * The binding key for which the {@link #bindings()} have been resolved.
44 * The component in which the bindings in {@link #ownedBindings()},
51 * The contribution bindings for {@link #bindingKey()} that were resolved in
59 * The members-injection bindings for {@link #bindingKey()} that were resolved in
67 * All bindings for {@link #bindingKey()}, regardless of in which component they were resolved.
69 ImmutableSet<? extends Binding> bindings() { method in class:ResolvedBindings
83 * All bindings for {@link #bindingKey()} that were resolved in {@link #owningComponent()}.
99 * All contribution bindings, regardless of owning component.
110 * The contribution bindings that were resolved in {@link #owningComponent()}
    [all...]
  /external/llvm/
Makefile 35 OPTIONAL_DIRS := projects bindings
61 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
94 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
199 bindings/ocaml/llvm/META.llvm \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/cp/
name-lookup.h 67 /* Link to chain together various bindings for this name. */
79 /* Datatype used to temporarily save C++ bindings (for implicit
236 Only used at present for SK_CLEANUP temporary bindings. */
265 (*(cfun && cp_function_chain && cp_function_chain->bindings \
266 ? &cp_function_chain->bindings \
267 : &scope_chain->bindings))
  /prebuilts/tools/common/m2/repository/com/jakewharton/butterknife/7.0.1/
butterknife-7.0.1.jar 
  /external/libcap-ng/libcap-ng-0.7/
libcap-ng.spec 31 Summary: Python bindings for libcap-ng library
38 The libcap-ng-python package contains the bindings so that libcap-ng
  /external/mesa3d/src/mesa/state_tracker/
st_format.c 1596 uint bindings; local
    [all...]
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp 265 std::vector<VkImageView> bindings; local
268 bindings.reserve(targets + 1); // +1 for dsBinding
323 bindings.push_back(bind);
352 bindings.push_back(*dsBinding);
379 fb_info.attachmentCount = bindings.size();
380 fb_info.pAttachments = bindings.data();
495 vector<VkDescriptorSetLayoutBinding> bindings; local
496 bindings.resize(m_type_counts.size());
498 bindings[i].binding = i;
499 bindings[i].descriptorType = m_type_counts[i].type
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /external/llvm/docs/
Makefile 129 $(Verb) $(MAKE) -C $(LEVEL)/bindings/ocaml ocamldoc
133 `$(FIND) $(LEVEL)/bindings/ocaml -name "*.odoc" \
  /external/mesa3d/src/gallium/state_trackers/clover/core/
format.cpp 151 unsigned bindings = (PIPE_BIND_SAMPLER_VIEW | local
160 dev->pipe, f.second, target, 1, bindings);
  /external/v8/test/mjsunit/es6/
block-scope-class.js 5 // Test for conflicting variable bindings.
  /external/guice/core/test/com/google/inject/spi/
SpiBindingsTest.java 425 List<Binding<?>> bindings = Lists.newArrayList(injector.getBindings().values()); local
426 for (Iterator<Binding<?>> i = bindings.iterator(); i.hasNext(); ) {
432 Collections.sort(bindings, orderByKey);
434 assertEquals(bindings.size(), visitors.length);
438 Binding<?> binding = bindings.get(i);
  /external/libpcap/msdos/
ndis2.c 97 static struct _BindingsList bindings; variable in typeref:struct:_BindingsList
151 "Protocol driver could not complete its bindings.\n" },
296 if (!strcmp(bindings.moduleName[bindEntry], handle->moduleName))
643 bindings.numBindings = 1;
644 strcpy (bindings.moduleName[0], handle->moduleName);
650 reqBlock.pointer2 = (BYTE FAR*) &bindings;
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_screen.c 242 unsigned bindings)
262 bindings &= ~(PIPE_BIND_TRANSFER_READ |
266 return (nv30_format_info(pscreen, format)->bindings & bindings) == bindings;
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger-compiler/1.2.2/
dagger-compiler-1.2.2.jar 
  /external/guice/core/test/com/google/inject/
BindingTest.java 399 Map<Key<?>,Binding<?>> bindings = injector.getAllBindings(); local
402 bindings.keySet());
415 bindings.keySet());
417 // check the bindings' values
418 assertEquals(injector, bindings.get(Key.get(Injector.class)).getProvider().get());
  /external/deqp/modules/glshared/
glsRandomShaderCase.cpp 104 vector<pair<int, const glu::Texture2D*> > bindings; local
106 bindings.push_back(*i);
107 return bindings;
112 vector<pair<int, const glu::TextureCube*> > bindings; local
114 bindings.push_back(*i);
115 return bindings;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_screen.c 51 unsigned bindings)
60 if (!util_format_is_supported(format, bindings))
71 if (bindings & PIPE_BIND_RENDER_TARGET)
78 bindings &= ~(PIPE_BIND_TRANSFER_READ |
82 return (nv50_format_table[format].usage & bindings) == bindings;
471 /* max TIC (bits 4:8) & TSC bindings, per program type */
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_screen.c 40 unsigned bindings)
47 if (!util_format_is_supported(format, bindings))
54 if (bindings & PIPE_BIND_RENDER_TARGET)
61 bindings &= ~(PIPE_BIND_TRANSFER_READ |
65 return (nvc0_format_table[format].usage & bindings) == bindings;
  /frameworks/base/services/core/java/com/android/server/am/
ServiceRecord.java 82 final ArrayMap<Intent.FilterComparison, IntentBindRecord> bindings field in class:ServiceRecord
84 // All active bindings to the service.
93 boolean whitelistManager; // any bindings to this service have BIND_ALLOW_WHITELIST_MANAGEMENT?
287 if (bindings.size() > 0) {
288 pw.print(prefix); pw.println("Bindings:");
289 for (int i=0; i<bindings.size(); i++) {
290 IntentBindRecord b = bindings.valueAt(i);
370 IntentBindRecord i = bindings.get(filter);
373 bindings.put(filter, i);
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 1257 vector<Binding> bindings;
1260 : bindings(bindings_)
1722 vector<Binding> bindings; local
    [all...]
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 212 flatMap { it.bindings }.
434 nl("private $className(android.databinding.DataBindingComponent bindingComponent, $parameterType root, Object[] bindings) {") {
445 tab("final Object[] bindings = mapBindings(bindingComponent, root, $bindingCount, sIncludes, sViewsWithIds);")
493 val variableName = "bindings[$index]"
686 .flatMap { it.bindings }
790 .flatMap { it.bindings }
    [all...]

Completed in 2149 milliseconds

1 23 4 5 6 7 8 9