HomeSort by relevance Sort by last modified time
    Searched full:bindings (Results 351 - 375 of 2212) sorted by null

<<11121314151617181920>>

  /external/python/cpython3/Doc/faq/
gui.rst 43 current stable targets. Language bindings are available for a number
49 extensions that are not available in other language bindings. There
60 There are bindings available for the Qt toolkit (using either `PyQt
73 The `GObject introspection bindings <https://wiki.gnome.org/Projects/PyGObject>`_
77 The older PyGtk bindings for the `Gtk+ 2 toolkit <http://www.gtk.org>`_ have
93 Python bindings for `the FLTK toolkit <http://www.fltk.org>`_, a simple yet
109 For OpenGL bindings, see `PyOpenGL <http://pyopengl.sourceforge.net>`_.
159 I can't get key bindings to work in Tkinter: why?
  /external/swiftshader/third_party/LLVM/lib/Object/
Object.cpp 1 //===- Object.cpp - C bindings to the object file library--------*- C++ -*-===//
10 // This file defines the C bindings to the file-format-independent object
  /frameworks/support/persistence/db/src/main/java/androidx/sqlite/db/
SupportSQLiteProgram.java 72 * Clears all existing bindings. Unset bindings are treated as NULL.
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
descriptor_sets.h 65 * A layout consists of some number of bindings, each of which has a binding#, a
71 * layout bindings based on either the original index into the pBindings array, or based
73 * Typically if you want to cover all of the bindings in a layout, you can do that by
74 * iterating over GetBindingCount() bindings and using the Get*FromIndex() functions.
79 * array. So there are as many indices as there are bindings.
82 * For the global index, consider all of the bindings to be a flat array where
100 // Fill passed-in set with bindings
136 uint32_t binding_count_; // # of bindings in this layout
285 * A set has an underlying layout which defines the bindings in the set and the
326 // For given bindings validate state at time of draw is correct, returning false on error and writing error details into (…)
    [all...]
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Multibinder.java 88 * bindings to the set of snacks. When that set is injected, it will contain
93 * that module can order its bindings appropriately. Avoid relying on the
249 * only one is bound. Since the list of bindings is retrieved from the
273 private ImmutableList<Binding<T>> bindings; field in class:Multibinder.RealMultibinder
324 List<Binding<T>> bindings = Lists.newArrayList(); local
333 bindings.add(binding);
339 this.bindings = ImmutableList.copyOf(bindings);
373 Map<T, Binding<T>> result = new LinkedHashMap<T, Binding<T>>(mapCapacity(bindings.size()));
374 for (Binding<T> binding : bindings) {
    [all...]
  /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...]
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
ConfigModule.java 26 * Bindings for Caliper configuration.
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
InstrumentInjectorModule.java 25 * The set of bindings available for injecting into {@link Instrument} instances.
MainModule.java 27 * Provides bindings to integrate other modules into the {@link MainComponent}.
  /external/capstone/bindings/python/capstone/
ppc.py 1 # Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
  /external/capstone/bindings/python/
xprint.py 2 # Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
  /external/clang/test/Index/
comment-cplus11-specific.cpp 3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng std=c++11 %s > %t/out
comment-objc-parameterized-classes.m 3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng -target x86_64-apple-darwin10 %s > %t/out
comment-unqualified-objc-pointer.m 3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng -target x86_64-apple-darwin10 -fobjc-arc %s > %t/out
subclass-comment.mm 3 // RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng %s > %t/out
  /external/curl/docs/
BINDINGS.md 1 libcurl bindings
4 Creative people have written bindings or interfaces for various environments
10 The bindings listed below are not part of the curl/libcurl distribution
15 [Basic](http://scriptbasic.com/) ScriptBasic bindings written by Peter Verhas
  /external/dagger2/examples/android-activity-graphs/src/main/java/com/example/dagger/activitygraphs/
ApplicationComponent.java 26 @Singleton // Constraints this component to one-per-application or unscoped bindings.
  /external/dagger2/producers/src/main/java/dagger/producers/
ProducerModule.java 26 * Annotates a class that contributes {@link Produces} bindings to the production component.
  /external/guice/core/src/com/google/inject/internal/
AbstractBindingProcessor.java 106 * We tolerate duplicate bindings if one exposes the other or if the two bindings
107 * are considered duplicates (see {@link Bindings#areDuplicates(BindingImpl, BindingImpl)}.
135 * Processor for visiting bindings. Each overriden method that wants to
State.java 147 /** Returns the explicit bindings at this level only. */
185 * blacklist their bound keys on their parent injectors to prevent just-in-time bindings on the
201 * to be used when reading mutable data (ie. just-in-time bindings, and binding blacklists).
206 * Returns all the scope bindings at this level and parent levels.
  /external/guice/core/src/com/google/inject/spi/
HasDependencies.java 22 * Implemented by {@link com.google.inject.Binding bindings}, {@link com.google.inject.Provider
ProvidesMethodBinding.java 45 * this is an instance of the {@code @Provides} annotation. For bindings from
RequireExplicitBindingsOption.java 24 * A request to require explicit bindings.
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedInjectTargetVisitor.java 24 * If your {@link BindingTargetVisitor} implements this interface, bindings created by using
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
EdgeCreator.java 31 Iterable<Edge> getEdges(Iterable<Binding<?>> bindings);

Completed in 1206 milliseconds

<<11121314151617181920>>