Searched defs:native (Results 1 - 25 of 29) sorted by relevance

12

/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/chromium_org/content/shell/renderer/
H A Dipc_echo.cc37 IPCEchoBindings::IPCEchoBindings(base::WeakPtr<IPCEcho> native) argument
38 : native_(native) {
/external/chromium_org/net/dns/
H A Daddress_sorter_posix.h58 bool native; member in struct:net::AddressSorterPosix::SourceAddressInfo
/external/chromium_org/base/files/
H A Dfile_path_unittest.cc45 const FilePath::CharType* native; member in struct:base::UTF8TestData
1137 EXPECT_EQ(cases[i].native, from_utf8.value())
1138 << "i: " << i << ", input: " << cases[i].native;
1140 FilePath from_native = FilePath(cases[i].native);
1142 << "i: " << i << ", input: " << cases[i].native;
/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
/external/chromium_org/third_party/skia/dm/
H A DDM.cpp61 static const GrContextFactory::GLContextType native = GrContextFactory::kNative_GLContextType; variable
86 START("gpu", GpuGMTask, native, gpuAPI, 0);
87 START("msaa4", GpuGMTask, native, gpuAPI, 4);
88 START("msaa16", GpuGMTask, native, gpuAPI, 16);
/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
/external/skia/dm/
H A DDM.cpp79 static const GrContextFactory::GLContextType native = GrContextFactory::kNative_GLContextType; variable
87 native;
93 native;
109 START("gpu", GpuGMTask, expectations, native, 0);
110 START("msaa4", GpuGMTask, expectations, native, 4);
111 START("msaa16", GpuGMTask, expectations, native, 16);
137 START("gpu", GpuBenchTask, native, 0);
138 START("msaa4", GpuBenchTask, native, 4);
139 START("msaa16", GpuBenchTask, native, 16);
/external/chromium_org/ash/display/
H A Ddisplay_info.h25 bool native);
36 bool native; // True if mode is native mode of the display. member in struct:ash::DisplayMode
121 // The native bounds for the display. The size of this can be
156 // |configured_ui_scale_| are copied when the |another_info| isn't native one.
171 void set_native(bool native) { native_ = native; } argument
172 bool native() const { return native_; } function in class:ash::DisplayInfo
181 // Returns the native mode size. If a native mod
[all...]
H A Dmouse_cursor_event_filter.cc59 // vertical in native
67 // horizontal in native
78 // of the native window for |root_window|.
208 // now fit the point inside the native bounds.
236 // Native events in Ozone are in the native window coordinate system. We need
384 gfx::Point native = point_in_screen; local
385 ::wm::ConvertPointFromScreen(target_root, &native);
386 target_root->GetHost()->ConvertPointToNativeScreen(&native);
387 return WarpMouseCursorInNativeCoords(native, point_in_screen);
H A Ddisplay_info.cc51 native(false),
58 bool native)
62 native(native),
178 // Use mode with largest area and highest refresh rate as native.
186 display_modes[native_mode].native = true;
260 // to native, and that overscan has to be propagated. This does not
268 if (!native_info.native()) {
277 // is treated as a native so that it can be specified in
331 if (display_modes_[i].native)
55 DisplayMode(const gfx::Size& size, float refresh_rate, bool interlaced, bool native) argument
[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...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-js-context-specialization.cc56 Handle<Context> native = t.factory()->NewNativeContext(); local
60 subcontext1->set_previous(*native);
63 native->set(slot, *expected);
65 Node* const_context = t.jsgraph()->Constant(native);
96 CHECK_EQ(*native, *match.Value().handle());
128 Handle<Context> native = t.factory()->NewNativeContext(); local
132 subcontext1->set_previous(*native);
135 native->set(slot, *expected);
137 Node* const_context = t.jsgraph()->Constant(native);
176 CHECK_EQ(*native, *matc
198 Handle<Context> native = t.factory()->NewNativeContext(); local
[all...]
/external/llvm/include/llvm/Support/
H A DEndian.h23 enum endianness {big, little, native}; enumerator in enum:llvm::support::endianness
40 if (endian != native && sys::IsBigEndianHost != (endian == big))
175 <uint16_t, native, unaligned> unaligned_uint16_t;
177 <uint32_t, native, unaligned> unaligned_uint32_t;
179 <uint64_t, native, unaligned> unaligned_uint64_t;
182 <int16_t, native, unaligned> unaligned_int16_t;
184 <int32_t, native, unaligned> unaligned_int32_t;
186 <int64_t, native, unaligned> unaligned_int64_t;
/external/chromium_org/chrome/browser/speech/
H A Dtts_controller.h79 bool native; member in struct:VoiceData
227 // empty if native TTS is being used.
312 // Return a list of all available voices, including the native voice,
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Dplatform_android.c42 get_format_bpp(int native) argument
46 switch (native) {
321 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", buf->format);
524 _eglLog(_EGL_DEBUG, "No DRI config supports native format 0x%x",
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/android/
H A Dnative_android.cpp51 #include "common/native.h"
115 get_pipe_format(int native) argument
119 switch (native) {
140 LOGE("unsupported native format 0x%x", native);
262 LOGE("invalid buffer native buffer %p", abuf);
514 LOGE("invalid native window with magic 0x%x", win->common.magic);
518 LOGE("failed to query native window format");
523 LOGW("native window format 0x%x != config format 0x%x",
527 LOGE("and the native windo
[all...]
/external/mesa3d/src/egl/drivers/dri2/
H A Dplatform_android.c42 get_format_bpp(int native) argument
46 switch (native) {
321 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%x", buf->format);
524 _eglLog(_EGL_DEBUG, "No DRI config supports native format 0x%x",
/external/mesa3d/src/gallium/state_trackers/egl/android/
H A Dnative_android.cpp51 #include "common/native.h"
115 get_pipe_format(int native) argument
119 switch (native) {
140 LOGE("unsupported native format 0x%x", native);
262 LOGE("invalid buffer native buffer %p", abuf);
514 LOGE("invalid native window with magic 0x%x", win->common.magic);
518 LOGE("failed to query native window format");
523 LOGW("native window format 0x%x != config format 0x%x",
527 LOGE("and the native windo
[all...]
/external/chromium_org/v8/src/compiler/
H A Dtyper.cc824 Handle<Context> native = local
826 if (*value == native->math_abs_fun()) {
828 } else if (*value == native->math_acos_fun()) {
830 } else if (*value == native->math_asin_fun()) {
832 } else if (*value == native->math_atan_fun()) {
834 } else if (*value == native->math_atan2_fun()) {
836 } else if (*value == native->math_ceil_fun()) {
838 } else if (*value == native->math_cos_fun()) {
840 } else if (*value == native->math_exp_fun()) {
842 } else if (*value == native
[all...]
/external/chromium_org/v8/src/arm/
H A Dcode-stubs-arm.cc711 // Figure out which native to call and setup the arguments.
712 Builtins::JavaScript native; local
714 native = strict() ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
716 native = Builtins::COMPARE;
728 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
730 __ InvokeBuiltin(native, JUMP_FUNCTION);
1644 // Get the arguments boilerplate from the current native context into r4.
1851 // Get the arguments boilerplate from the current native context.
1912 // Just jump directly to runtime if native RegExp is not selected at compile
1932 // registers and will be preserved by the call to the native RegEx
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js37 object.$family = {name: 'native'};
94 var types = {'boolean': Boolean, 'native': Native, 'object': Object};
787 Contains Hash Prototypes. Provides a means for overcoming the JavaScript practical impossibility of extending native Objects.
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_context.h71 int native; member in struct:r200_vertex_program
/external/chromium_org/v8/src/arm64/
H A Dcode-stubs-arm64.cc625 // Figure out which native to call and setup the arguments.
626 Builtins::JavaScript native; local
628 native = strict() ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
630 native = Builtins::COMPARE;
642 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
644 __ InvokeBuiltin(native, JUMP_FUNCTION);
2037 // Get the arguments boilerplate from the current (native) context.
2147 // to the native RegExp code, as this code is called using the normal
2149 // native RegExp code will not do a GC and therefore the content of
2349 // All checks done. Now push arguments for native regex
[all...]
/external/chromium_org/v8/src/mips/
H A Dcode-stubs-mips.cc769 // Figure out which native to call and setup the arguments.
770 Builtins::JavaScript native; local
772 native = strict() ? Builtins::STRICT_EQUALS : Builtins::EQUALS;
774 native = Builtins::COMPARE;
786 // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
788 __ InvokeBuiltin(native, JUMP_FUNCTION);
1750 // Get the arguments boilerplate from the current native context into t0.
1967 // Get the arguments boilerplate from the current native context.
2027 // Just jump directly to runtime if native RegExp is not selected at compile
2047 // registers and will be preserved by the call to the native RegEx
[all...]

Completed in 539 milliseconds

12