Searched refs:native (Results 26 - 50 of 235) sorted by relevance

12345678910

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Degl_g3d.h44 #include "native.h"
55 struct native_display *native; member in struct:egl_g3d_display
75 /* the native surface; NULL for pbuffers */
76 struct native_surface *native; member in struct:egl_g3d_surface
87 const struct native_config *native; member in struct:egl_g3d_config
118 const struct native_connector *native; member in struct:egl_g3d_screen
H A Degl_g3d.c40 #include "native.h"
93 * Get the native platform.
170 gdpy->native->modeset->get_connectors(gdpy->native, &num_connectors, NULL);
185 gdpy->native->modeset->get_modes(gdpy->native, nconn, &num_modes);
212 gscr->native = nconn;
331 * Initialize an EGL config from the native config.
372 gconf->native = nconf;
385 struct pipe_screen *screen = gdpy->native
[all...]
H A Degl_g3d_api.c40 #include "native.h"
114 data->format != gconf->native->color_format)
134 if (!gdpy->native->get_pixmap_format(gdpy->native,
260 /* create the native surface */
263 nsurf = gdpy->native->create_window_surface(gdpy->native,
264 arg->u.win, gconf->native);
267 nsurf = gdpy->native->create_pixmap_surface(gdpy->native,
[all...]
H A Degl_g3d_image.c36 #include "native.h"
41 * Reference and return the front left buffer of the native pixmap.
51 nsurf = gdpy->native->create_pixmap_surface(gdpy->native, pix, NULL);
71 struct pipe_screen *screen = gdpy->native->screen;
179 return gdpy->native->buffer->import_buffer(gdpy->native, &nbuf);
193 if (!gdpy->native->wayland_bufmgr)
196 tmp = gdpy->native->wayland_bufmgr->buffer_get_resource(gdpy->native, buffe
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A DMakefile4 clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core mcjit native` -o toy-mcjit
7 clang++ toy-jit.cpp -g -O3 -rdynamic `llvm-config --cppflags --ldflags --libs core jit native` -o toy-jit
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMakefile12 LINK_COMPONENTS := core ipo jit mcjit native support
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d.h44 #include "native.h"
55 struct native_display *native; member in struct:egl_g3d_display
75 /* the native surface; NULL for pbuffers */
76 struct native_surface *native; member in struct:egl_g3d_surface
87 const struct native_config *native; member in struct:egl_g3d_config
118 const struct native_connector *native; member in struct:egl_g3d_screen
H A Degl_g3d.c40 #include "native.h"
93 * Get the native platform.
170 gdpy->native->modeset->get_connectors(gdpy->native, &num_connectors, NULL);
185 gdpy->native->modeset->get_modes(gdpy->native, nconn, &num_modes);
212 gscr->native = nconn;
331 * Initialize an EGL config from the native config.
372 gconf->native = nconf;
385 struct pipe_screen *screen = gdpy->native
[all...]
H A Degl_g3d_api.c40 #include "native.h"
114 data->format != gconf->native->color_format)
134 if (!gdpy->native->get_pixmap_format(gdpy->native,
260 /* create the native surface */
263 nsurf = gdpy->native->create_window_surface(gdpy->native,
264 arg->u.win, gconf->native);
267 nsurf = gdpy->native->create_pixmap_surface(gdpy->native,
[all...]
H A Degl_g3d_image.c36 #include "native.h"
41 * Reference and return the front left buffer of the native pixmap.
51 nsurf = gdpy->native->create_pixmap_surface(gdpy->native, pix, NULL);
71 struct pipe_screen *screen = gdpy->native->screen;
179 return gdpy->native->buffer->import_buffer(gdpy->native, &nbuf);
193 if (!gdpy->native->wayland_bufmgr)
196 tmp = gdpy->native->wayland_bufmgr->buffer_get_resource(gdpy->native, buffe
[all...]
/external/chromium_org/base/android/jni_generator/
H A Dgolden_sample_for_tests_jni.h57 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); local
58 CHECK_NATIVE_PTR(env, jcaller, native, "Destroy");
59 return native->Destroy(env, jcaller);
64 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); local
65 CHECK_NATIVE_PTR(env, jcaller, native, "Method", 0);
66 return native->Method(env, jcaller);
71 CPPClass::InnerClass* native = local
73 CHECK_NATIVE_PTR(env, jcaller, native, "MethodOtherP0", 0);
74 return native->MethodOtherP0(env, jcaller);
80 CPPClass* native local
87 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); local
94 CPPClass* native = reinterpret_cast<CPPClass*>(nativeCPPClass); local
[all...]
H A Djni_generator.py6 """Extracts native methods from a Java file and generates the JNI bindings.
45 """Describes a param for a method, either java or native."""
66 self.params[0].name.startswith('native')):
68 self.p0_type = self.params[0].name[len('native'):]
137 """Returns a C datatype to be when calling from native."""
401 """Returns a list of dict containing information about a native method."""
407 '(?P<qualifiers>\w+\s\w+|\w+|\s+)\s*native '
409 '(?P<name>native\w+)\((?P<params>.*?)\);')
411 native = NativeMethod(
416 name=match.group('name').replace('native', ''),
[all...]
/external/chromium_org/ui/gfx/
H A Dfont_unittest.cc62 NativeFont native = cf.GetNativeFont(); local
63 EXPECT_TRUE(native);
69 FreeIfNecessary(native);
75 NativeFont native = bold.GetNativeFont(); local
76 EXPECT_TRUE(native);
80 FreeIfNecessary(native);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A DMakefile4 clang++ toy.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core mcjit native irreader` -o toy-mcjit
7 clang++ toy-jit.cpp -g -O3 -rdynamic -fno-rtti `llvm-config --cppflags --ldflags --libs core jit native irreader` -o toy-jit
11 clang++ toy-jit.cpp -g -O3 -rdynamic -fno-rtti -DDUMP_FINAL_MODULE `llvm-config --cppflags --ldflags --libs core jit native irreader` -o toy-ir-gen
/external/proguard/examples/dictionaries/
H A Dkeywords.txt37 native
/external/proguard/examples/
H A Dmidlets.pro56 # Preserve all native method names and the names of their classes.
59 native <methods>;
/external/llvm/tools/lli/
H A DMakefile17 LINK_COMPONENTS := mcjit jit instrumentation interpreter nativecodegen bitreader asmparser irreader selectiondag native
/external/stlport/stlport/stl/
H A D_epilog.h31 * Looks like the compiler native library on which STLport rely defined the std macro.
35 # error Incompatible native Std library.
/external/strace/qemu_multiarch_testing/
H A Dparallel-build-hdc-img.sh9 nice -n10 ./native-build.sh ../hdc.img
16 test -e "$dir/native-build.sh" || continue
/external/chromium_org/ash/display/
H A Ddisplay_change_observer_chromeos_unittest.cc107 EXPECT_FALSE(display_modes[0].native);
112 EXPECT_FALSE(display_modes[1].native);
117 EXPECT_FALSE(display_modes[2].native);
122 EXPECT_TRUE(display_modes[3].native);
127 EXPECT_FALSE(display_modes[4].native);
153 EXPECT_FALSE(display_modes[0].native);
158 EXPECT_FALSE(display_modes[1].native);
163 EXPECT_FALSE(display_modes[2].native);
168 EXPECT_FALSE(display_modes[3].native);
173 EXPECT_FALSE(display_modes[4].native);
[all...]
/external/llvm/utils/
H A Dcheck-each-file5 # This script depends on the llvm-native-gcc script.
11 echo "Building $program with llvm-native-gcc"
13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
113 echo "Recompiling everything with llvm-native-gcc"
117 gmake $f CC=llvm-native-gcc CXX=llvm-native-gxx
123 echo "Sorry, I can't help you, $program is OK when compiled with llvm-native-gcc"
128 echo Trying to compile $f with native gcc and rebuild $program
144 echo "Program is OK when these files are recompiled with native gc
[all...]
H A Dllvm-native-gxx2 # Wrapper around LLVM tools to generate a native .o from llvm-gxx using an
23 if ($ProgramName =~ /llvm-native-gxx/) {
56 if ($ProgramName =~ /llvm-native-gxx/) {
58 } elsif ($ProgramName =~ /native-build/) {
66 && (($ProgramName !~ /native-build/)
72 if ($ProgramName =~ /llvm-native-gxx/) {
74 } elsif ($ProgramName =~ /native-build/) {
166 if ($ProgramName eq /native-build/) {
169 } elsif ($ProgramName =~ /llvm-native-gxx/) {
184 llvm-native
[all...]
/external/conscrypt/
H A DAndroid.mk17 # Definitions for building the Conscrypt Java library, native code,
32 # native/ # C++ source for library code.
36 # native/ # C++ source for tests (rare).
102 src/main/native/org_conscrypt_NativeCrypto.cpp
107 libcore/luni/src/main/native
130 src/main/native/org_conscrypt_NativeCrypto.cpp \
131 src/compat/native/JNIHelp.cpp
135 external/conscrypt/src/compat/native
149 src/main/native/org_conscrypt_NativeCrypto.cpp \
150 src/compat/native/JNIHel
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebBindings.cpp226 Range* native = V8Range::hasInstance(v8Object, isolate) ? V8Range::toImpl(v8Object) : 0;
227 if (!native)
230 *webRange = WebRange(native);
247 Node* native = V8Node::hasInstance(v8Object, isolate) ? V8Node::toImpl(v8Object) : 0;
248 if (!native)
251 *webNode = WebNode(native);
268 Element* native = V8Element::hasInstance(v8Object, isolate) ? V8Element::toImpl(v8Object) : 0;
269 if (!native)
272 *webElement = WebElement(native);
289 ArrayBuffer* native
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
H A Dinstall_host.sh18 TARGET_DIR="/etc/opt/chrome/native-messaging-hosts"
26 # Create directory to store native messaging host.
29 # Copy native messaging host manifest.
33 HOST_PATH=$DIR/native-messaging-example-host

Completed in 433 milliseconds

12345678910