Searched defs:binding (Results 1 - 24 of 24) sorted by relevance

/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DOnRebindCallback.java37 * @param binding The ViewDataBinding that is reevaluating its bound values.
41 public boolean onPreBind(T binding) { argument
51 * @param binding The ViewDataBinding that is reevaluating its bound values.
53 public void onCanceled(T binding) { argument
63 * @param binding The ViewDataBinding that is reevaluating its bound values.
65 public void onBound(T binding) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeAdapter.java17 package com.android.layoutlib.bridge.impl.binding;
36 * Fake adapter to do fake data binding in {@link AdapterView} objects for {@link ListAdapter}
49 public FakeAdapter(ResourceReference adapterRef, AdapterBinding binding, argument
54 final int repeatCount = binding.getRepeatCount();
55 final int itemCount = binding.getItemCount();
64 for (DataBindingItem dataBindingItem : binding) {
H A DAdapterHelper.java17 package com.android.layoutlib.bridge.impl.binding;
37 * A Helper class to do fake data binding in {@link AdapterView} objects.
H A DAdapterItem.java17 package com.android.layoutlib.bridge.impl.binding;
H A DFakeExpandableAdapter.java17 package com.android.layoutlib.bridge.impl.binding;
47 public FakeExpandableAdapter(ResourceReference adapterRef, AdapterBinding binding, argument
52 createItems(binding, binding.getItemCount(), binding.getRepeatCount(), mGroupTypes, 1);
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp95 uint32_t binding = old->binding(); local
97 old->setBinding(binding);
H A DResolveInfo.cpp194 uint32_t ResolveInfo::binding() const { function in class:mcld::ResolveInfo
/frameworks/base/core/java/android/view/inputmethod/
H A DInputBinding.java41 * The UID where this binding came from.
46 * The PID where this binding came from.
55 * @param uid The user id of the client of this binding.
56 * @param pid The process id of where the binding came from.
71 * @param binding Existing binding to copy.
73 public InputBinding(InputConnection conn, InputBinding binding) { argument
75 mConnectionToken = binding.getConnectionToken();
76 mUid = binding.getUid();
77 mPid = binding
[all...]
H A DInputMethod.java101 * @param binding Information about the application window that is binding
107 public void bindInput(InputBinding binding); argument
/frameworks/base/services/core/java/com/android/server/am/
H A DConnectionRecord.java26 * Description of a single binding to a service.
29 final AppBindRecord binding; // The application/service binding. field in class:ConnectionRecord
39 pw.println(prefix + "binding=" + binding);
50 binding = _binding;
66 sb.append(binding.client.userId);
116 sb.append(binding.service.shortName);
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h86 unsigned int binding() const { function in class:mcld::LDSymbol
88 return m_pResolveInfo->binding();
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp68 ResolveInfo::Binding binding = ResolveInfo::Local; local
74 name, isDyn, type, desc, binding, size, other, NULL, result1);
81 EXPECT_EQ(binding, result1.info->binding());
87 name, isDyn, type, desc, binding, size, other, NULL, result2);
94 EXPECT_EQ(binding, result1.info->binding());
106 ResolveInfo::Binding binding = ResolveInfo::Global; local
111 name, isDyn, type, desc, binding, size, other, NULL, result1);
118 EXPECT_EQ(binding, result
146 LDSymbol::Binding binding = LDSymbol::Global; local
172 LDSymbol::Binding binding = LDSymbol::Weak; local
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DBasicBindingTest.java123 NoExpressionsBinding binding = NoExpressionsBinding.inflate(getActivity().getLayoutInflater());
124 assertNotNull(binding);
129 NoDataElementBinding binding = NoDataElementBinding.inflate(getActivity().getLayoutInflater());
130 assertNotNull(binding);
135 JustIdBinding binding = JustIdBinding.inflate(getActivity().getLayoutInflater());
136 assertNotNull(binding);
137 assertNotNull(binding.textView);
149 BasicBindingBinding binding =
151 assertNotNull(binding);
152 assertNotNull(binding
181 onPreBind(BasicBindingBinding binding) argument
187 onCanceled(BasicBindingBinding binding) argument
192 onBound(BasicBindingBinding binding) argument
199 onPreBind(BasicBindingBinding binding) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java241 public void bindInput(InputBinding binding) { argument
245 IInputContext.Stub.asInterface(binding.getConnectionToken()), missingMethodFlags);
246 InputBinding nu = new InputBinding(ic, binding);
H A DInputMethodService.java395 * Handle a new input binding, calling
399 public void bindInput(InputBinding binding) { argument
400 mInputBinding = binding;
401 mInputConnection = binding.getConnection();
402 if (DEBUG) Log.v(TAG, "bindInput(): binding=" + binding
412 * Clear the current input binding.
415 if (DEBUG) Log.v(TAG, "unbindInput(): binding=" + mInputBinding
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp132 // change symbol binding to Global if it's a weak symbol
133 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
134 if (binding == ResolveInfo::Weak)
135 binding = ResolveInfo::Global;
142 binding,
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp435 // change symbol binding to Global if it's a weak symbol
436 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
437 if (binding == ResolveInfo::Weak)
438 binding = ResolveInfo::Global;
445 binding,
463 binding,
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp230 // change symbol binding to Global if it's a weak symbol
231 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
232 if (binding == ResolveInfo::Weak)
233 binding = ResolveInfo::Global;
240 binding,
258 binding,
/frameworks/rs/rsov/compiler/
H A DWrapper.cpp39 VariableInst *AddBuffer(Instruction *elementType, uint32_t binding, Builder &b, argument
52 bufferVar->decorate(Decoration::Binding)->addExtraOperand(binding);
300 // TODO: clean up the binding number assignment
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp363 // change symbol binding to Global if it's a weak symbol
364 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
365 if (binding == ResolveInfo::Weak)
366 binding = ResolveInfo::Global;
373 binding,
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.cpp506 // Change symbol binding to Global if it's a weak symbol
507 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
508 if (binding == ResolveInfo::Weak)
509 binding = ResolveInfo::Global;
516 binding,
538 binding,
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java315 final InputBinding binding; field in class:InputMethodManagerService.ClientState
333 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
361 * The current binding sequence number, incremented every time there is
1674 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
/frameworks/native/vulkan/include/vulkan/
H A Dvulkan.h1828 uint32_t binding; member in struct:VkVertexInputBindingDescription
1835 uint32_t binding; member in struct:VkVertexInputAttributeDescription
2052 uint32_t binding; member in struct:VkDescriptorSetLayoutBinding
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 402 milliseconds