Searched refs:base (Results 176 - 200 of 281) sorted by relevance

1234567891011>>

/frameworks/native/cmds/installd/
H A Dcommands.cpp32 #include <android-base/logging.h>
33 #include <android-base/stringprintf.h>
34 #include <android-base/strings.h>
35 #include <android-base/unique_fd.h>
37 #include <cutils/log.h> // TODO: Move everything to base/logging.
54 using android::base::EndsWith;
55 using android::base::StringPrintf;
271 base::unique_fd ufd(open(profile.c_str(), O_WRONLY | O_NOFOLLOW | O_CLOEXEC));
1391 std::vector<std::string> code_full_paths = base::Split(code_path_string, ";");
1440 // case (where the base nam
[all...]
H A Dinstalld.cpp26 #include <android-base/logging.h>
28 #include <cutils/log.h> // TODO: Move everything to base::logging.
712 android::base::InitLogging(argv);
/frameworks/base/data/fonts/
H A DAndroid.mk103 FONTCHAIN_LINTER := frameworks/base/tools/fonts/fontchain_lint.py
/frameworks/base/services/core/java/com/android/server/notification/
H A DEventConditionProvider.java170 public void attachBase(Context base) { argument
171 attachBaseContext(base);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmGenerator.java67 * left here are not in the code base anymore and thus were not renamed. */
424 String base = className.substring(0, pos);
425 newName = mRenameClasses.get(base);
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp172 void* const start_ptr = (void*)(intptr_t(heap->base()) + offset);
204 void* const start_ptr = (void*)(intptr_t(getHeap()->base()) + start);
/frameworks/support/core-utils/java/android/support/v4/content/
H A DFileProvider.java785 private static File buildPath(File base, String... segments) { argument
786 File cur = base;
/frameworks/support/core-utils/tests/java/android/support/v4/content/
H A DFileProviderTest.java354 private static File buildPath(File base, String... segments) { argument
355 File cur = base;
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DJsonWebKey.cpp128 decodedText->appendArray(buffer->base(), buffer->size());
/frameworks/base/core/java/android/content/
H A DContextWrapper.java54 public ContextWrapper(Context base) { argument
55 mBase = base;
59 * Set the base context for this ContextWrapper. All calls will then be
60 * delegated to the base context. Throws
61 * IllegalStateException if a base context has already been set.
63 * @param base The new base context for this wrapper.
65 protected void attachBaseContext(Context base) { argument
69 mBase = base;
73 * @return the base contex
[all...]
/frameworks/base/core/jni/
H A DAndroid.mk191 $(TOP)/frameworks/base/media/jni \
192 $(TOP)/system/core/base/include \
/frameworks/base/data/sounds/
H A DAudioPackage6.mk8 LOCAL_PATH:= frameworks/base/data/sounds
H A DAudioPackage9.mk8 LOCAL_PATH:= frameworks/base/data/sounds
/frameworks/base/tools/aapt2/
H A DResourceTable.h28 #include <android-base/macros.h>
/frameworks/native/include/input/
H A DKeyCharacterMap.h64 // Either base or overlay layout ok.
81 /* Combines a base key character map and an overlay. */
82 static sp<KeyCharacterMap> combine(const sp<KeyCharacterMap>& base,
/frameworks/rs/scriptc/
H A Drs_math.rsh89 * The number e, the base of the natural logarithm, as a 32 bit float.
110 * The logarithm base 10 of e, as a 32 bit float.
117 * The logarithm base 2 of e, as a 32 bit float.
2199 * Returns the base two exponent of a value, where the mantissa is between
2425 * Returns the base 10 logarithm.
2503 * Returns the base 2 logarithm.
2542 * Returns the base two exponent of a value, where the mantissa is between
4748 * native_log10: Approximate base 10 logarithm
4844 * native_log2: Approximate base 2 logarithm
4893 * native_powr: Approximate positive base raise
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp1024 static bool isIsaMatched(uint32_t base, uint32_t ext) { argument
1025 if (base == ext)
1027 if (base == llvm::ELF::EF_MIPS_ARCH_32 &&
1030 if (base == llvm::ELF::EF_MIPS_ARCH_32R2 &&
1036 if (ext == base)
/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. ...
/frameworks/native/opengl/libagl/
H A Darray.cpp356 base = malloc(size);
357 if (base) {
358 memset(base, 0, size);
359 vBuffer = (vertex_t*)((size_t(base) + align - 1) & ~(align-1));
367 free(base);
368 base = vBuffer = vCache = 0;
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h53 * It is a referenced counted interface with RefBase as its base class.
367 void *data = ((uint8_t *)heap->base()) + offset;
556 handle.data = mHeap->base();
/frameworks/base/core/java/android/text/format/
H A DTime.java930 String base = format(Y_M_D_T_H_M_S_000);
936 return String.format(Locale.US, "%s%s%02d:%02d", base, sign, hours, minutes);
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java173 String base = "/tmp/trace/" + mClassName + ".dmtrace";
174 Debug.startMethodTracing(base, 8 * 1024 * 1024);
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp40 | base col1 | base col2 | base col1 | base col2 |
46 | base col1 | base col2 | table | table |diff|flip|
55 | base col1 | dcol 2 | base col1 | dcol 2 |
61 | base col 1 | dcol 2 | table | table |diff|flip|
162 inline int convertDiff(int base, in argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseLinearLayoutManagerTest.java72 protected static List<Config> addConfigVariation(List<Config> base, String fieldName, argument
77 for (Config config : base) {
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDecoderPassThrough.cpp204 memcpy(mAggregateBuffer->base() + bigSize, accessUnit->data(), smallSize);

Completed in 7645 milliseconds

1234567891011>>