Searched defs:base (Results 1 - 25 of 198) sorted by relevance

12345678

/frameworks/base/core/java/android/content/
H A DMutableContextWrapper.java20 * Special version of {@link ContextWrapper} that allows the base context to
24 public MutableContextWrapper(Context base) { argument
25 super(base);
29 * Change the base context for this ContextWrapper. All calls will then be
30 * delegated to the base context. Unlike ContextWrapper, the base context
33 * @param base The new base context for this wrapper.
35 public void setBaseContext(Context base) { argument
36 mBase = base;
[all...]
/frameworks/multidex/library/src/androidx/multidex/
H A DMultiDexApplication.java29 protected void attachBaseContext(Context base) {<br>
30 super.attachBaseContext(base);<br>
37 protected void attachBaseContext(Context base) { argument
38 super.attachBaseContext(base);
/frameworks/av/media/libstagefright/bqhelper/
H A DWProducerListener.cpp23 sp<BProducerListener> const& base):
24 mBase(base) {
38 sp<HProducerListener> const& base):
39 mBase(base) {
22 TWProducerListener( sp<BProducerListener> const& base) argument
37 LWProducerListener( sp<HProducerListener> const& base) argument
/frameworks/base/libs/hwui/debug/
H A DGlesErrorCheckWrapper.h27 GlesErrorCheckWrapper(GlesDriver& base) : mBase(base) {} argument
/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
H A DPerfManualStatusReporter.java61 public Statement apply(Statement base, Description description) { argument
65 base.evaluate();
H A DPerfStatusReporter.java59 public Statement apply(Statement base, Description description) { argument
87 base.evaluate();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DFrameStore.java18 package android.filterpacks.base;
H A DGLTextureTarget.java18 package android.filterpacks.base;
H A DNullFilter.java18 package android.filterpacks.base;
H A DOutputStreamTarget.java18 package android.filterpacks.base;
H A DFrameBranch.java18 package android.filterpacks.base;
H A DFrameFetch.java18 package android.filterpacks.base;
H A DFrameSource.java18 package android.filterpacks.base;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameSlotTarget.java17 package androidx.media.filterpacks.base;
/frameworks/base/tools/aapt2/util/
H A DFiles_test.cpp39 std::string base = "hello"; local
40 AppendPath(&base, "there");
41 EXPECT_EQ(expected_path_, base);
45 std::string base = "hello/"; local
46 AppendPath(&base, "there");
47 EXPECT_EQ(expected_path_, base);
49 base = "hello";
50 AppendPath(&base, "/there");
51 EXPECT_EQ(expected_path_, base);
53 base
[all...]
/frameworks/native/libs/gui/bufferqueue/1.0/
H A DB2HProducerListener.cpp28 sp<BProducerListener> const& base):
29 mBase(base) {
27 B2HProducerListener( sp<BProducerListener> const& base) argument
/frameworks/support/lifecycle/common/src/test/java/androidx/lifecycle/observers/
H A DBase_LifecycleAdapter.java26 public Base_LifecycleAdapter(Base base) { argument
H A DInterface1_LifecycleAdapter.java26 public Interface1_LifecycleAdapter(Interface1 base) { argument
H A DInterface2_LifecycleAdapter.java26 public Interface2_LifecycleAdapter(Interface2 base) { argument
/frameworks/av/media/libmedia/
H A DMediaCodecBuffer.cpp34 uint8_t *MediaCodecBuffer::base() { function in class:android::MediaCodecBuffer
35 return mBuffer->base();
/frameworks/av/media/libmedia/include/media/omx/1.0/
H A DWOmxNode.h44 using ::android::hidl::base::V1_0::IBase;
63 LWOmxNode(sp<IOmxNode> const& base) : CBase(base) {} argument
109 TWOmxNode(sp<IOMXNode> const& base);
/frameworks/av/media/libmedia/omx/1.0/
H A DWOmxObserver.cpp36 LWOmxObserver::LWOmxObserver(sp<IOmxObserver> const& base) : mBase(base) { argument
59 TWOmxObserver::TWOmxObserver(sp<IOMXObserver> const& base) : mBase(base) { argument
/frameworks/av/media/libstagefright/omx/1.0/
H A DWOmxObserver.cpp19 #include <android-base/logging.h>
36 LWOmxObserver::LWOmxObserver(sp<IOmxObserver> const& base) : mBase(base) { argument
59 TWOmxObserver::TWOmxObserver(sp<IOMXObserver> const& base) : mBase(base) { argument
/frameworks/base/apct-tests/perftests/multiuser/src/android/multiuser/
H A DBenchmarkResultsReporter.java38 public Statement apply(final Statement base, final Description description) { argument
42 base.evaluate();
/frameworks/base/core/java/com/android/internal/util/
H A DParseUtils.java24 atest /android/pi-dev/frameworks/base/core/tests/coretests/src/com/android/internal/util/ParseUtilsTest.java
30 /** Parse a value as a base-10 integer. */
35 /** Parse a value as an integer of a given base. */
36 public static int parseIntWithBase(@Nullable String value, int base, int defValue) { argument
41 return Integer.parseInt(value, base);
47 /** Parse a value as a base-10 long. */
52 /** Parse a value as a long of a given base. */
53 public static long parseLongWithBase(@Nullable String value, int base, long defValue) { argument
58 return Long.parseLong(value, base);

Completed in 342 milliseconds

12345678