HomeSort by relevance Sort by last modified time
    Searched defs:native (Results 1 - 16 of 16) sorted by null

  /libcore/
NativeCode.mk 17 # Definitions for building the native code needed for the core library.
24 # Get the list of all native directories that contain sub.mk files.
27 define all-core-native-dirs
28 $(patsubst %/sub.mk,%,$(shell cd $(LOCAL_PATH) && ls -d */src/$(1)/native/sub.mk 2> /dev/null))
43 define include-core-native-dir
57 # Find any native directories containing sub.mk files.
58 core_native_dirs := $(strip $(call all-core-native-dirs,main))
60 $(error No native code defined for libcore)
74 $(eval $(call include-core-native-dir,$(dir))))
  /external/webkit/Source/JavaScriptCore/runtime/
CallData.h 53 } native; member in union:JSC::CallData
ConstructData.h 53 } native; member in union:JSC::ConstructData
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp 21 #include "native/InternalNativePriv.h"
70 * public static boolean heapSegmentNotify(int when, int what, bool native)
80 bool native = (args[2] != 0); // false=virtual heap, true=native heap local
83 ret = dvmDdmHandleHpsgNhsgChunk(when, what, native);
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
EglSurface.h 38 EGLNativeSurfaceType native(){return m_native;} function in class:EglSurface
  /sdk/emulator/qtools/
read_method.cpp 62 const char *native = pframe->isNative ? "n" : " "; local
64 native, ii, pframe->time, pframe->addr,
check_stack.cpp 185 // Count the number of non-native methods (ie, Java methods) on the
194 // Count the number of Java methods on the native stack
203 // Allow the native stack to have one less Java method because the
204 // native stack might be pushing a native function first.
206 printf("\nDiff at time %llu pid %d: non-native %d numMethods %d\n",
215 // as the Java methods on the native stack.
218 // Ignore native functions on the native stack.
246 const char *native = mframe->isNative ? "n" : " " local
    [all...]
trace_reader.h 36 // the name of the native function if the native function is a
1386 const char *native; local
    [all...]
  /dalvik/vm/alloc/
DdmHeap.cpp 273 /* If we're looking at the native heap, we'll just return
276 bool native = ctx->type == CHUNK_TYPE("NHSG"); local
282 if (!native && dvmIsValidObject(obj)) {
358 static void walkHeap(bool merge, bool native)
370 if (native) {
382 if (native) {
394 void dvmDdmSendHeapSegments(bool shouldLock, bool native)
403 if (!native) {
435 dvmDbgDdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"),
440 walkHeap(merge, native);
    [all...]
  /external/bluetooth/glib/gio/tests/
data-input-stream.c 195 GDataStreamByteOrder native; local
222 native = (G_BYTE_ORDER == G_BIG_ENDIAN) ? G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN : G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN;
223 swap = (byte_order != G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN) && (byte_order != native);
data-output-stream.c 144 GDataStreamByteOrder native; local
177 native = (G_BYTE_ORDER == G_BIG_ENDIAN) ? G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN : G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN;
178 swap = (byte_order != G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN) && (byte_order != native);
  /external/webkit/Source/WebKit/chromium/src/
WebBindings.cpp 215 Range* native = V8Range::toNative(v8Object);
216 if (!native)
219 *webRange = WebRange(native);
230 Element* native = V8Element::toNative(v8Object); local
231 if (!native)
234 *webElement = WebElement(native);
  /frameworks/base/opengl/libs/EGL/
egl_object.h 71 egl_object_t* native = reinterpret_cast<N*>(o); local
72 if (o && egl_object_t::get(display, native)) {
73 ref = native;
214 template<typename NATIVE, typename EGL>
215 static inline NATIVE* egl_to_native_cast(EGL arg) {
216 return reinterpret_cast<NATIVE*>(arg);
  /external/chromium/chrome/browser/chromeos/notifications/
notification_panel.cc 21 #include "views/controls/native/native_view_host.h"
70 // all renderer's native gtk widgets are moved one by one via
423 // control and native controls (scroll bar).
434 views::NativeViewHost* native = new views::NativeViewHost(); local
435 scroll_view_->SetContents(native);
447 native->Attach(widget->window_contents());
466 views::NativeViewHost* native = local
468 native->Detach();
733 views::NativeViewHost* native = local
737 if (native) {
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 1672 Builtins::JavaScript native; local
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 24 var Native = function(options){
36 object.constructor = Native;
37 object.$family = {name: 'native'};
44 Native.typize(object, family);
49 if (generics) Native.genericize(obj, name, protect);
73 Native.genericize = function(object, property, check){
80 Native.implement = function(objects, properties){
84 Native.typize = function(object, family){
92 for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});
94 var types = {'boolean': Boolean, 'native': Native, 'object': Object}
    [all...]

Completed in 272 milliseconds