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

1 2 3 4

  /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.
  /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 83 * Example of binding and unbinding to the local service.
90 public static class Binding extends Activity {
106 Toast.makeText(Binding.this, R.string.local_service_connected,
116 Toast.makeText(Binding.this, R.string.local_service_disconnected,
126 bindService(new Intent(Binding.this,
MessengerServiceActivities.java 4 import com.example.android.apis.app.LocalServiceActivities.Binding;
25 * Example of binding and unbinding to the remote service.
32 public static class Binding extends Activity {
96 Toast.makeText(Binding.this, R.string.remote_service_connected,
107 Toast.makeText(Binding.this, R.string.remote_service_disconnected,
116 bindService(new Intent(Binding.this,
119 mCallbackText.setText("Binding.");
RemoteService.java 50 * {@link Controller} and {@link Binding} classes
261 * Example of binding and unbinding to the remote service.
269 public static class Binding extends Activity {
330 Toast.makeText(Binding.this, R.string.remote_service_connected,
342 Toast.makeText(Binding.this, R.string.remote_service_disconnected,
367 // Establish a couple connections with the service, binding
371 Intent intent = new Intent(Binding.this, RemoteService.class);
377 mCallbackText.setText("Binding.");
427 Toast.makeText(Binding.this,
  /external/mesa3d/src/egl/main/
eglcontext.h 48 _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...]
  /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...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
Binding.java 34 public class Binding implements LocationScopeProvider {
41 public Binding(BindingTarget target, String name, Expr expr) {
45 public Binding(BindingTarget target, String name, Expr expr, BindingSetterCall setterCall) {
172 * The min api level in which this binding should be executed.
174 * This should be the minimum value among the dependencies of this binding. For now, we only
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 25 * - Binding - Global, Local, Weak
70 enum Binding { Global = 0, Weak = 1, Local = 2, Absolute = 3, NoneBinding };
162 uint32_t binding() const;
  /external/llvm/include/llvm/Object/
ELFObjectFile.h 281 unsigned char Binding = ESym->getBinding();
284 // A symbol is exported if its binding is either GLOBAL or WEAK, and its
287 if ((Binding == ELF::STB_GLOBAL || Binding == ELF::STB_WEAK) &&
  /frameworks/base/rs/java/android/renderscript/
ScriptGroup.java 855 * Represents a binding of a value to a global variable in a
859 public static final class Binding {
864 * Returns a Binding object that binds value to field
870 public Binding(Script.FieldID field, Object value) {
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger/1.2.2/
dagger-1.2.2.jar 
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 1073 "layout(binding = 0) buffer Input { highp uint dataIn[]; };\n"
1074 "layout(binding = 1) buffer Output { highp uint dataOut[]; };\n"
1234 struct Binding
1236 deUint32 binding;
1242 Binding (deUint32 binding_,
1247 : binding (binding_)
1254 Binding (void) {}
1257 vector<Binding> bindings;
1259 Parameters (const vector<Binding>& bindings_)
1265 return Parameters(vector<Binding>());
1302 const VkDescriptorSetLayoutBinding binding = member in struct:vkt::api::__anon9733::DeviceMemory::__anon9735
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 202 typedef std::pair<std::string, std::unique_ptr<ExprAST>> Binding;
203 typedef std::vector<Binding> BindingList;
447 VarBindings.push_back(VarExprAST::Binding(Name, std::move(Init)));
1019 // Remember the old variable binding so that we can restore the binding when
1023 // Remember this binding.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 201 typedef std::pair<std::string, std::unique_ptr<ExprAST>> Binding;
202 typedef std::vector<Binding> BindingList;
446 VarBindings.push_back(VarExprAST::Binding(Name, std::move(Init)));
1018 // Remember the old variable binding so that we can restore the binding when
1022 // Remember this binding.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 201 typedef std::pair<std::string, std::unique_ptr<ExprAST>> Binding;
202 typedef std::vector<Binding> BindingList;
446 VarBindings.push_back(VarExprAST::Binding(Name, std::move(Init)));
1018 // Remember the old variable binding so that we can restore the binding when
1022 // Remember this binding.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 201 typedef std::pair<std::string, std::unique_ptr<ExprAST>> Binding;
202 typedef std::vector<Binding> BindingList;
446 VarBindings.push_back(VarExprAST::Binding(Name, std::move(Init)));
1018 // Remember the old variable binding so that we can restore the binding when
1022 // Remember this binding.
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 186 NDR64_BIND_CONTEXT Binding;
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]
  /external/v8/src/
gdb-jit.cc 749 enum Binding {
760 Binding binding,
766 info((binding << 4) | type),
771 Binding binding() const { function in class:v8::internal::BASE_EMBEDDED
772 return static_cast<Binding>(info >> 4);
780 Binding binding,
786 info((binding << 4) | type)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 

Completed in 405 milliseconds

1 2 3 4