Home
last modified time | relevance | path

Searched refs:native (Results 1 – 25 of 152) sorted by relevance

1234567

/frameworks/compile/mclinker/lib/MC/
DMCLDDirectory.cpp24 m_bInSysroot = (Directory::m_Path.native()[0] == '='); in MCLDDirectory()
28 Directory::m_Path.native().erase(Directory::m_Path.native().begin()); in MCLDDirectory()
38 m_bInSysroot = (Directory::m_Path.native()[0] == '='); in MCLDDirectory()
42 Directory::m_Path.native().erase(Directory::m_Path.native().begin()); in MCLDDirectory()
52 m_bInSysroot = (Directory::m_Path.native()[0] == '='); in MCLDDirectory()
56 Directory::m_Path.native().erase(Directory::m_Path.native().begin()); in MCLDDirectory()
66 m_bInSysroot = (Directory::m_Path.native()[0] == '='); in assign()
70 Directory::m_Path.native().erase(Directory::m_Path.native().begin()); in assign()
89 std::string old_path = Directory::m_Path.native(); in setSysroot()
90 Directory::m_Path.native() = pSysroot.native(); in setSysroot()
[all …]
DSearchDirs.cpp67 return insert(pPath.native()); in insert()
98 if (file == entry.path()->filename().native()) in find()
106 if (file == entry.path()->stem().native()) { in find()
108 entry.path()->extension().native()) { in find()
120 if (file == entry.path()->stem().native() && in find()
122 entry.path()->extension().native()) { in find()
163 if (file == entry.path()->filename().native()) in find()
171 if (file == entry.path()->stem().native()) { in find()
173 entry.path()->extension().native()) { in find()
185 if (file == entry.path()->stem().native() && in find()
[all …]
/frameworks/base/media/mca/filterpacks/
DAndroid.bp19 "native/base/geometry.cpp",
20 "native/base/time_util.cpp",
36 "native/imageproc/brightness.c",
37 "native/imageproc/contrast.c",
38 "native/imageproc/invert.c",
39 "native/imageproc/to_rgba.c",
55 // native/imageproc/to_rgba.c
/frameworks/compile/mclinker/lib/Support/
DRealPath.cpp37 Path::m_PathName.assign(pPath.native()); in assign()
47 path_name.native() += preferred_separator; in initialize()
48 path_name.native() += m_PathName; in initialize()
49 detail::canonicalize(path_name.native()); in initialize()
50 m_PathName = path_name.native(); in initialize()
DPath.cpp92 pPath.native()[0] == separator) { in append()
93 llvm::StringRef path(pPath.native()); in append()
95 } else if (this->native()[this->native().size() - 1] != separator && in append()
96 pPath.native()[0] != separator) { in append()
99 m_PathName.append(pPath.native()); in append()
102 m_PathName.append(pPath.native()); in append()
DMemoryAreaFactory.cpp27 llvm::StringRef name(pPath.native()); in produce()
41 llvm::StringRef name(pPath.native()); in produce()
/frameworks/native/opengl/specs/
DEGL_ANDROID_native_fence_sync.txt40 associated with a native synchronization fence object that is referenced
44 referring to the native fence object.
46 This extension assumes the existence of a native fence synchronization
47 object that behaves similarly to an EGL fence sync object. These native
50 native object's signal status may not change again.
89 "If <type> is EGL_SYNC_NATIVE_FENCE_ANDROID, an EGL native fence sync
92 must be set to either a file descriptor that refers to a native fence
95 The default values for the EGL native fence sync object attributes are as
108 attribute is set to reflect the signal status of the native fence object.
115 "When a fence sync object is created or when an EGL native fence sync
[all …]
DEGL_ANDROID_presentation_time.txt42 an EGLSurface, allowing the native window system to use it.
78 nanoseconds, but the exact meaning of the time depends on the native
90 visible, but if the color buffer is subsequently posted to a native window
91 or copied to a native pixmap then the presentation time of the surface at
92 that time may be passed along for the native window system to use.
113 System.nanoTime() method, or from the native clock_gettime function by
/frameworks/base/libs/hostgraphics/
DAndroid.bp16 // Here we override all the headers automatically included with frameworks/native/include.
17 // When frameworks/native/include will be removed from the list of automatic includes.
20 "frameworks/native/libs/nativebase/include",
21 "frameworks/native/libs/nativewindow/include",
22 "frameworks/native/libs/arect/include",
/frameworks/av/cmds/stagefright/
DAndroid.mk23 frameworks/native/include/media/openmax \
53 frameworks/native/include/media/openmax \
54 frameworks/native/include/media/hardware
81 frameworks/native/include/media/openmax \
82 frameworks/native/include/media/hardware
111 frameworks/native/include/media/openmax
137 frameworks/native/include/media/openmax
165 frameworks/native/include/media/openmax
202 frameworks/native/include/media/openmax \
238 frameworks/native/include/media/openmax
/frameworks/compile/mclinker/include/mcld/Support/
DRealPath.h58 if (pX.native().size() < pY.native().size())
60 return (pX.native() < pY.native());
DPath.h74 const StringType& native() const { return m_PathName; } in native() function
75 StringType& native() { return m_PathName; } in native() function
112 return pOS << pPath.native();
119 return pOS >> pPath.native();
124 return pOS << pPath.native();
/frameworks/base/core/jni/
Dandroid_os_HidlMemory.cpp49 JHidlMemory* native = reinterpret_cast<JHidlMemory*>(jNativeContext); in nativeFinalize() local
50 delete native; in nativeFinalize()
127 JHidlMemory* native = reinterpret_cast<JHidlMemory*>(jNativeContext); in getNativeContext() local
128 if (!native) { in getNativeContext()
129 native = new JHidlMemory(); in getNativeContext()
132 reinterpret_cast<jlong>(native)); in getNativeContext()
135 return native; in getNativeContext()
/frameworks/base/media/jni/
Dandroid_media_MediaDescrambler.h28 namespace native {
32 using hardware::cas::native::V1_0::IDescrambler;
/frameworks/compile/mclinker/unittests/
DPathTest.cpp115 EXPECT_TRUE(m_pTestee->native() == "aa/aaa"); in TEST_F()
119 EXPECT_TRUE(m_pTestee->native() == "aa/aaa"); in TEST_F()
123 EXPECT_TRUE(m_pTestee->native() == "aa/aaa"); in TEST_F()
127 EXPECT_TRUE(m_pTestee->native() == "aa/aaa"); in TEST_F()
/frameworks/av/media/libstagefright/foundation/
DAndroid.bp18 "frameworks/native/include",
19 "frameworks/native/libs/arect/include",
20 "frameworks/native/libs/nativebase/include",
/frameworks/native/cmds/dumpstate/
DREADME.md14 mmm -j frameworks/native/cmds/dumpstate
21 mmm -j frameworks/native/cmds/dumpstate device/acme/secret_device/dumpstate/ hardware/interfaces/du…
27 mmm -j frameworks/native/cmds/dumpstate && adb push ${OUT}/system/bin/dumpstate system/bin && adb p…
56 mmm -j frameworks/native/cmds/dumpstate/ && adb push ${OUT}/data/nativetest64/dumpstate_* /data/nat…
62 mmm -j frameworks/native/cmds/dumpstate/ && adb push ${OUT}/data/nativetest64/dumpstate_test* /data…
/frameworks/native/opengl/tests/EGLTest/
DAndroid.bp32 "frameworks/native/opengl/libs",
33 "frameworks/native/opengl/libs/EGL",
/frameworks/base/native/android/
DAndroid.bp15 // The headers module is in frameworks/native/Android.bp.
125 name: "lib-platform-compat-native-api",
142 ":platform-compat-native-aidl",
148 name: "platform-compat-native-aidl",
/frameworks/av/media/libstagefright/mpeg2ts/
DAndroid.bp14 "frameworks/native/include/media/openmax",
33 "android.hardware.cas.native@1.0",
DCasManager.h26 namespace native {
30 using hardware::cas::native::V1_0::IDescrambler;
/frameworks/native/
DAndroid.bp29 visibility: ["//frameworks/native"],
36 visibility: ["//frameworks/native"],
/frameworks/av/media/libstagefright/httplive/
DAndroid.bp14 "frameworks/native/include/media/openmax",
43 "android.hardware.cas.native@1.0",
/frameworks/native/libs/vr/libdvr/tests/
DAndroid.bp60 include_dirs: ["frameworks/native/libs/vr/libdvr/include"],
84 "frameworks/native/libs/vr/libdvr/include",
85 "frameworks/native/libs/nativewindow/include",
/frameworks/av/camera/
DAndroid.bp22 "frameworks/native/aidl/gui",
64 "frameworks/native/include/media/openmax",
95 // because they have hand-written native implementations.

1234567