HomeSort by relevance Sort by last modified time
    Searched defs:Binding (Results 1 - 25 of 186) sorted by null

1 2 3 4 5 6 7 8

  /external/guice/core/src/com/google/inject/
Binding.java 39 * <li>For {@link Provider providers}, by delegating to the binding for the provided type.</li>
52 * necessary to satisfy a binding.</li>
60 public interface Binding<T> extends Element {
63 * Returns the key for this binding.
69 * binding.
71 * @throws UnsupportedOperationException when invoked on a {@link Binding}
73 * method is only supported on {@link Binding}s returned from an injector.
78 * Accepts a target visitor. Invokes the visitor method specific to this binding's target.
86 * Accepts a scoping visitor. Invokes the visitor method specific to this binding's scoping.
  /external/libmojo/mojo/public/cpp/bindings/
binding.h 28 // Represents the binding of an interface implementation to a message pipe.
29 // When the |Binding| object is destroyed, the binding between the message pipe
45 // Binding<Foo> binding_;
59 // methods will be called from the thread that bound this. If a Binding is not
71 class Binding {
75 // Constructs an incomplete binding that will use the implementation |impl|.
76 // The binding may be completed with a subsequent call to the |Bind| method.
77 // Does not take ownership of |impl|, which must outlive the binding.
78 explicit Binding(ImplPointerType impl) : internal_state_(std::move(impl)) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCELF.cpp 22 void MCELF::SetBinding(MCSymbolData &SD, unsigned Binding) {
23 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
24 Binding == ELF::STB_WEAK);
26 SD.setFlags(OtherFlags | (Binding << ELF_STB_Shift));
30 uint32_t Binding = (SD.getFlags() & (0xf << ELF_STB_Shift)) >> ELF_STB_Shift;
31 assert(Binding == ELF::STB_LOCAL || Binding == ELF::STB_GLOBAL ||
32 Binding == ELF::STB_WEAK);
33 return Binding;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/binding/
Binding.java 17 package com.android.messaging.datamodel.binding;
21 public class Binding<T extends BindableData> extends BindingBase<T> {
30 * Initialize a binding instance - the owner is typically the containing class
32 Binding(final Object owner) {
74 // Check both this binding and the data not already bound
76 throw new IllegalStateException("already bound when binding to " + data);
86 // Check this binding is bound and that data is bound to this binding
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LocalServiceActivities.java 86 * Example of binding and unbinding to the local service.
92 public static class Binding extends Activity {
112 Toast.makeText(Binding.this, R.string.local_service_connected,
122 Toast.makeText(Binding.this, R.string.local_service_disconnected,
133 if (bindService(new Intent(Binding.this, LocalService.class),
MessengerServiceActivities.java 4 import com.example.android.apis.app.LocalServiceActivities.Binding;
27 * Example of binding and unbinding to the remote service.
34 public static class Binding extends Activity {
97 Toast.makeText(Binding.this, R.string.remote_service_connected,
108 Toast.makeText(Binding.this, R.string.remote_service_disconnected,
117 bindService(new Intent(Binding.this,
120 mCallbackText.setText("Binding.");
  /external/mesa3d/src/egl/main/
eglcontext.h 53 _EGLThreadInfo *Binding;
  /external/google-breakpad/src/common/
test_assembler.cc 47 Label::Label() : value_(new Binding()) { }
48 Label::Label(uint64_t value) : value_(new Binding(value)) { }
105 Binding *base;
115 Binding *label_base, *this_base;
127 Label::Binding::Binding() : base_(this), addend_(), reference_count_(1) { }
129 Label::Binding::Binding(uint64_t addend)
132 Label::Binding::~Binding() {
    [all...]
test_assembler.h 162 // related to other labels' values. A binding may be:
164 // - constrained to be equal to some other binding plus a constant, or
167 // Many labels may point to a single binding, and each binding may
173 class Binding {
175 Binding();
176 Binding(uint64_t addend);
177 ~Binding();
184 // Set this binding to be equal to BINDING + ADDEND. If BINDING i
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsInternal.h 79 EFI_DRIVER_BINDING_PROTOCOL *Binding;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 74 /// \brief Create a new store with the specified binding removed.
76 /// \param L the location whose binding should be removed.
219 const MemRegion* Binding;
224 : Sym(sym), Binding(nullptr), First(true) {}
228 explicit operator bool() { return First && Binding; }
229 const MemRegion *getRegion() { return Binding; }
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Binding.java 46 * An abstract type for classes representing a Dagger binding. Particularly, contains the
47 * {@link Element} that generated the binding and the {@link DependencyRequest} instances that are
48 * required to satisfy the binding, but leaves the specifics of the <i>mechanism</i> of the binding
54 abstract class Binding {
57 * The subtype of this binding.
59 enum Type implements Predicate<Binding> {
60 /** A binding with this type is a {@link ProvisionBinding}. */
62 /** A binding with this type is a {@link MembersInjectionBinding}. */
64 /** A binding with this type is a {@link ProductionBinding}. *
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed.
245 const MemRegion* Binding;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed.
245 const MemRegion* Binding;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed.
245 const MemRegion* Binding;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed.
245 const MemRegion* Binding;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed.
245 const MemRegion* Binding;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed.
245 const MemRegion* Binding;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 63 /// binding is the value of sub-regions that were not initialized separately
66 /// some or all fields were later overwritten manually. Default binding may be
69 /// \param[in] R The region to find the default binding for.
71 /// binding exists.
74 /// Return the default value bound to a LazyCompoundVal. The default binding
77 /// explicitly separately from the whole structure. Default binding may be an
81 /// default binding exists.
87 /// \param[in] store The store in which to make the binding.
97 /// \brief Create a new store with the specified binding removed.
99 /// \param L the location whose binding should be removed
    [all...]

Completed in 767 milliseconds

1 2 3 4 5 6 7 8