Searched refs:delegate (Results 26 - 50 of 69) sorted by relevance

123

/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeAllocator.h26 * NodeFactories, and NodeFactory::delegate() can move the memory from one
49 /// delegate - get the control of chunks owned by the client
50 // after calling delegate(), client will renouce its control
52 void delegate(NodeFactory& pClient) { function in class:mcld::NodeFactory
/frameworks/compile/mclinker/unittests/
H A DFactoriesTest.cpp78 m_pNodeAlloc->delegate(*delegatee);
100 m_pNodeAlloc->delegate(*delegatee);
136 m_pNodeAlloc->delegate(*delegatee);
160 m_pNodeAlloc->delegate(*m_pNodeAlloc);
H A DFileHandleTest.cpp64 ASSERT_TRUE(m_pTestee->delegate(fd, FileHandle::ReadOnly));
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreECDSASignatureSpi.java55 * KeyStore via the provided delegate streamer.
66 KeyStoreCryptoOperationStreamer delegate,
68 mDelegate = delegate;
65 TruncateToFieldSizeMessageStreamer( KeyStoreCryptoOperationStreamer delegate, int groupSizeBits) argument
H A DDelegatingX509Certificate.java42 DelegatingX509Certificate(X509Certificate delegate) { argument
43 mDelegate = delegate;
H A DAndroidKeyStoreAuthenticatedAESCipherSpi.java352 private BufferAllOutputUntilDoFinalStreamer(KeyStoreCryptoOperationStreamer delegate) { argument
353 mDelegate = delegate;
/frameworks/base/telecomm/java/android/telecom/
H A DVideoCallbackServant.java28 * posting incoming messages on the main thread on a client-supplied delegate object.
164 public VideoCallbackServant(IVideoCallback delegate) { argument
165 mDelegate = delegate;
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
H A DNightModeTestCase.java98 final AppCompatDelegateImplV14 delegate = (AppCompatDelegateImplV14) activity.getDelegate();
114 delegate.getAutoNightModeManager().dispatchTimeChanged();
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileHandle.h74 bool delegate(int pFD, OpenModeEnum pMode = Unknown);
/frameworks/compile/mclinker/lib/Core/
H A DInputTree.cpp28 BinaryTreeBase<Input>::m_Root.delegate(pTree.m_Root);
H A DLinker.cpp291 file.delegate(pFileDescriptor);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java71 final AppCompatDelegate delegate = getDelegate();
72 delegate.installViewFactory();
73 delegate.onCreate(savedInstanceState);
74 if (delegate.applyDayNight() && mThemeId != 0) {
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java368 final ObbListenerDelegate delegate;
370 delegate = mListeners.get(nonce);
371 if (delegate != null) {
376 if (delegate != null) {
377 delegate.sendObbStateChanged(filename, status);
382 final ObbListenerDelegate delegate = new ObbListenerDelegate(listener);
385 mListeners.put(delegate.nonce, delegate);
388 return delegate.nonce;
467 final StorageEventListenerDelegate delegate
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java643 final SessionCallbackDelegate delegate = new SessionCallbackDelegate(callback,
646 mInstaller.registerCallback(delegate, mUserId);
650 mDelegates.add(delegate);
666 final SessionCallbackDelegate delegate = i.next();
667 if (delegate.mCallback == callback) {
669 mInstaller.unregisterCallback(delegate);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java39 * by calls to methods of the same name in this delegate class.
50 // ---- delegate manager ----
58 * Returns the native delegate associated to a given {@link Canvas} object.
65 * Returns the native delegate associated to a given an int referencing a {@link Canvas} object.
79 * Returns the {@link DrawFilter} delegate or null if none have been set.
81 * @return the delegate or null.
134 // get the delegate from the native int.
148 // get the delegate from the native int.
159 // get the delegate from the native int.
170 // get the delegate fro
[all...]
H A DMatrix_Delegate.java36 * by calls to methods of the same name in this delegate class.
49 // ---- delegate manager ----
54 // ---- delegate data ----
67 Matrix_Delegate delegate = sManager.getDelegate(m.native_instance);
68 if (delegate == null) {
72 return delegate.getAffineTransform();
76 Matrix_Delegate delegate = sManager.getDelegate(m.native_instance);
77 if (delegate == null) {
81 return delegate.hasPerspective();
181 // create the delegate
[all...]
H A DPath_Delegate.java45 * by calls to methods of the same name in this delegate class.
56 // ---- delegate manager ----
62 // ---- delegate data ----
102 // create the delegate
110 // create the delegate
113 // get the delegate to copy, which could be null if nPath is 0
527 private void set(Path_Delegate delegate) { argument
529 setFillType(delegate.mFillType);
530 mPath.append(delegate.mPath, false /*connect*/);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java57 public LayoutParserWrapper(XmlPullParser delegate) { argument
58 mDelegate = delegate;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DTestedFrameLayout.java218 public void setNestedScrollingDelegate(NestedScrollingParent2 delegate) { argument
219 mNestedScrollingDelegate = delegate;
H A DRecyclerViewAccessibilityTest.java285 boolean performAccessibilityAction(final AccessibilityDelegateCompat delegate, argument
291 result[0] = delegate.performAccessibilityAction(recyclerView, action, null);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatDrawableManager.java312 // If we don't have a delegate for the drawable tag, or we've been set to
362 // Now try and find a delegate for the tag name and inflate if found
363 final InflateDelegate delegate = mDelegates.get(tagName);
364 if (delegate != null) {
365 dr = delegate.createFromXmlInner(context, parser, attrs,
381 // If we reach here then the delegate inflation of the resource failed. Mark it as
491 private void addDelegate(@NonNull String tagName, @NonNull InflateDelegate delegate) { argument
495 mDelegates.put(tagName, delegate);
498 private void removeDelegate(@NonNull String tagName, @NonNull InflateDelegate delegate) { argument
499 if (mDelegates != null && mDelegates.get(tagName) == delegate) {
[all...]
/frameworks/base/tools/aapt2/process/
H A DSymbolTable.cpp44 void SymbolTable::SetDelegate(std::unique_ptr<ISymbolTableDelegate> delegate) { argument
45 CHECK(delegate != nullptr) << "can't set a nullptr delegate";
46 delegate_ = std::move(delegate);
48 // Clear the cache in case this delegate changes the order of lookup.
H A DSymbolTable.h77 void SetDelegate(std::unique_ptr<ISymbolTableDelegate> delegate);
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp106 bool FileHandle::delegate(int pFD, FileHandle::OpenModeEnum pMode) { function in class:mcld::FileHandle
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1425 OnPermissionsChangeListenerDelegate delegate =
1428 mPM.addOnPermissionsChangeListener(delegate);
1429 mPermissionListeners.put(listener, delegate);
1439 IOnPermissionsChangeListener delegate = mPermissionListeners.get(listener);
1440 if (delegate != null) {
1442 mPM.removeOnPermissionsChangeListener(delegate);
1864 final MoveCallbackDelegate delegate = new MoveCallbackDelegate(callback,
1867 mPM.registerMoveCallback(delegate);
1871 mDelegates.add(delegate);
1879 final MoveCallbackDelegate delegate
[all...]

Completed in 503 milliseconds

123