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

/frameworks/base/core/java/android/view/inputmethod/
H A DInputBinding.java42 * The UID where this binding came from.
47 * The PID where this binding came from.
56 * @param uid The user id of the client of this binding.
57 * @param pid The process id of where the binding came from.
72 * @param binding Existing binding to copy.
74 public InputBinding(InputConnection conn, InputBinding binding) { argument
76 mConnectionToken = binding.getConnectionToken();
77 mUid = binding.getUid();
78 mPid = binding
[all...]
H A DInputMethod.java99 * @param binding Information about the application window that is binding
105 public void bindInput(InputBinding binding); argument
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp74 ResolveInfo::Binding binding = ResolveInfo::Local; local
83 binding,
94 EXPECT_EQ(binding, result1.info->binding());
103 binding,
114 EXPECT_EQ(binding, result1.info->binding());
126 ResolveInfo::Binding binding = ResolveInfo::Global; local
134 binding,
145 EXPECT_EQ(binding, result
182 LDSymbol::Binding binding = LDSymbol::Global; local
215 LDSymbol::Binding binding = LDSymbol::Weak; local
[all...]
H A DStaticResolverTest.cpp99 ASSERT_EQ( mcld::ResolveInfo::Global, new_sym->binding());
100 ASSERT_EQ( mcld::ResolveInfo::Global, old_sym->binding());
126 ASSERT_EQ( mcld::ResolveInfo::Global, new_sym->binding());
127 ASSERT_EQ( mcld::ResolveInfo::Global, old_sym->binding());
153 ASSERT_EQ( mcld::ResolveInfo::Global, new_sym->binding());
154 ASSERT_EQ( mcld::ResolveInfo::Global, old_sym->binding());
175 ASSERT_EQ( mcld::ResolveInfo::Global, new_sym->binding());
176 ASSERT_EQ( mcld::ResolveInfo::Weak, old_sym->binding());
204 ASSERT_EQ( mcld::ResolveInfo::Weak, old_sym->binding());
205 ASSERT_EQ( mcld::ResolveInfo::Global, new_sym->binding());
[all...]
/frameworks/base/core/java/android/webkit/
H A DAccessibilityInjectorFallback.java45 * In general a key binding is a mapping from modifiers + key code to
62 * should NOT be specified in the binding as it is provided by
63 * this class. For details about the key binding implementation
145 AccessibilityWebContentKeyBinding binding = null;
149 binding = candidate;
154 if (binding == null) {
158 for (int i = 0, count = binding.getActionCount(); i < count; i++) {
159 int actionCode = binding.getActionCode(i);
160 String contentDescription = Integer.toHexString(binding.getAction(i));
163 int axis = binding
[all...]
/frameworks/base/services/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);
101 sb.append(binding.service.shortName);
H A DActiveServices.java437 + ") when binding service " + service);
545 + " (in " + c.binding.client.processName + ")", e);
548 // If this is the first app connected back to this binding,
584 if (!filter.equals(c.binding.intent.intent)) {
588 TAG, "Bound intent: " + c.binding.intent.intent);
599 " (in " + c.binding.client.processName + ")", e);
629 if (r.binding.service.app != null) {
631 mAm.updateOomAdjLocked(r.binding.service.app);
833 if (DEBUG_SERVICE) Slog.v(TAG, "Crashed while binding " + r);
1215 " (in " + c.get(i).binding
[all...]
H A DActivityManagerService.java644 * List of initialization arguments to pass to all processes when binding applications to them.
1881 if (cr.binding != null && cr.binding.service != null
1882 && cr.binding.service.app != null
1883 && cr.binding.service.app.lruSeq != mLruSeq) {
1884 updateLruProcessInternalLocked(cr.binding.service.app, i+1);
11215 Slog.w(TAG, "Exception trying to deliver BackupAgent binding: ");
12842 if (cr.binding.client == app) {
12847 ProcessRecord client = cr.binding.client;
12919 // the process that is binding t
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
H A DFakeExpandableAdapter.java17 package com.android.layoutlib.bridge.impl.binding;
39 public FakeExpandableAdapter(ResourceReference adapterRef, AdapterBinding binding, argument
41 super(adapterRef, binding, callback);
43 createItems(binding, binding.getItemCount(), binding.getRepeatCount(), mGroupTypes, 1);
H A DFakeAdapter.java17 package com.android.layoutlib.bridge.impl.binding;
34 * Fake adapter to do fake data binding in {@link AdapterView} objects for {@link ListAdapter}
43 public FakeAdapter(ResourceReference adapterRef, AdapterBinding binding, argument
45 super(adapterRef, binding, callback);
H A DBaseAdapter.java17 package com.android.layoutlib.bridge.impl.binding;
43 * Base adapter to do fake data binding in {@link AdapterView} objects.
105 protected BaseAdapter(ResourceReference adapterRef, AdapterBinding binding, argument
108 mBinding = binding;
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h71 unsigned int binding() const { function in class:mcld::LDSymbol
73 return m_pResolveInfo->binding();
H A DResolveInfo.h167 uint32_t binding() const;
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethod.aidl39 void bindInput(in InputBinding binding);
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp97 uint32_t binding = old->binding(); local
99 old->setBinding(binding);
H A DResolveInfo.cpp200 uint32_t ResolveInfo::binding() const function in class:ResolveInfo
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java50 import com.android.layoutlib.bridge.impl.binding.FakeAdapter;
51 import com.android.layoutlib.bridge.impl.binding.FakeExpandableAdapter;
1215 AdapterBinding binding = params.getAdapterBindings().get(listRef);
1217 // if there was no adapter binding, trying to get it from the call back.
1218 if (binding == null) {
1219 binding = params.getProjectCallback().getAdapterBinding(listRef,
1223 if (binding != null) {
1226 if ((binding.getFooterCount() > 0 || binding.getHeaderCount() > 0) &&
1232 int count = binding
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java230 public void bindInput(InputBinding binding) { argument
232 IInputContext.Stub.asInterface(binding.getConnectionToken()));
233 InputBinding nu = new InputBinding(ic, binding);
H A DInputMethodService.java361 * Handle a new input binding, calling
365 public void bindInput(InputBinding binding) { argument
366 mInputBinding = binding;
367 mInputConnection = binding.getConnection();
368 if (DEBUG) Log.v(TAG, "bindInput(): binding=" + binding
377 * Clear the current input binding.
380 if (DEBUG) Log.v(TAG, "unbindInput(): binding=" + mInputBinding
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.cpp237 // change symbol binding to Global if it's a weak symbol
238 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
239 if (binding == ResolveInfo::Weak)
240 binding = ResolveInfo::Global;
248 binding,
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp23 if (ResolveInfo::Local == pInfo.binding())
27 if (ResolveInfo::Weak == pInfo.binding())
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp299 // change symbol binding to Global if it's a weak symbol
300 ResolveInfo::Binding binding = (ResolveInfo::Binding)pSym.binding(); local
301 if (binding == ResolveInfo::Weak)
302 binding = ResolveInfo::Global;
310 binding,
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java236 final InputBinding binding; field in class:InputMethodManagerService.ClientState
254 binding = new InputBinding(null, inputContext.asBinder(), uid, pid);
272 * The current binding sequence number, incremented every time there is
1072 MSG_BIND_INPUT, mCurMethod, mCurClient.binding));
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1205 // set binding
1674 if (pSymbol.binding() == ResolveInfo::Local)

Completed in 1114 milliseconds