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

  /libcore/
NativeCode.mk 16 # Definitions for building the native code needed for the core library.
23 # Get the list of all native directories that contain sub.mk files.
26 define all-core-native-dirs
27 $(patsubst %/sub.mk,%,$(shell cd $(LOCAL_PATH) && ls -d */src/$(1)/native/sub.mk 2> /dev/null))
42 define include-core-native-dir
56 # Find any native directories containing sub.mk files.
57 core_native_dirs := $(strip $(call all-core-native-dirs,main))
59 $(error No native code defined for libcore)
73 $(eval $(call include-core-native-dir,$(dir))))
  /external/webkit/JavaScriptCore/runtime/
CallData.h 54 } native; member in union:JSC::CallData
ConstructData.h 52 } native; member in union:JSC::ConstructData
  /dalvik/vm/native/
org_apache_harmony_dalvik_ddmc_DdmVmInternal.c 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);
  /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.c 277 /* If we're looking at the native heap, we'll just return
280 bool native = ctx->type == CHUNK_TYPE("NHSG"); local
286 if (!native && dvmIsValidObject(obj)) {
363 walkHeap(bool merge, bool native)
375 if (native) {
387 if (native) {
400 dvmDdmSendHeapSegments(bool shouldLock, bool native)
409 if (!native) {
441 dvmDbgDdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"),
446 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);
  /frameworks/base/opengl/libs/EGL/
egl.cpp 107 N* native = reinterpret_cast<N*>(o); local
108 if (o && native->get()) {
109 ref = native;
470 template<typename NATIVE, typename EGL>
471 static inline NATIVE* egl_to_native_cast(EGL arg) {
472 return reinterpret_cast<NATIVE*>(arg);
    [all...]
  /external/v8/src/arm/
codegen-arm.cc 5344 Builtins::JavaScript native; local
    [all...]
  /external/webkit/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 910 milliseconds