HomeSort by relevance Sort by last modified time
    Searched refs:NELEM (Results 1 - 25 of 334) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/core/include/utils/
misc.h 26 #ifndef NELEM
27 # define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
  /frameworks/base/core/jni/android/graphics/
ColorFilter.cpp 78 NELEM(colorfilter_methods));
80 NELEM(porterduff_methods));
82 NELEM(lighting_methods));
84 colormatrix_methods, NELEM(colormatrix_methods));
Xfermode.cpp 42 NELEM(gXfermodeMethods));
PathEffect.cpp 103 NELEM(gPathEffectMethods));
105 gComposePathEffectMethods, NELEM(gComposePathEffectMethods));
107 NELEM(gSumPathEffectMethods));
109 NELEM(gDashPathEffectMethods));
111 gPathDashPathEffectMethods, NELEM(gPathDashPathEffectMethods));
113 gCornerPathEffectMethods, NELEM(gCornerPathEffectMethods));
115 gDiscretePathEffectMethods, NELEM(gDiscretePathEffectMethods));
CanvasProperty.cpp 49 NELEM(gMethods));
MaskFilter.cpp 85 NELEM(gMaskFilterMethods));
87 NELEM(gBlurMaskFilterMethods));
89 gEmbossMaskFilterMethods, NELEM(gEmbossMaskFilterMethods));
91 NELEM(gTableMaskFilterMethods));
DrawFilter.cpp 110 NELEM(drawfilter_methods));
112 NELEM(paintflags_methods));
Rasterizer.cpp 71 NELEM(gRasterizerMethods));
97 gLayerRasterizerMethods, NELEM(gLayerRasterizerMethods));
  /libcore/luni/src/main/native/
libcore_io_AsynchronousCloseMonitor.cpp 34 jniRegisterNativeMethods(env, "libcore/io/AsynchronousCloseMonitor", gMethods, NELEM(gMethods));
sun_misc_Unsafe.cpp 30 jniRegisterNativeMethods(env, "sun/misc/Unsafe", gMethods, NELEM(gMethods));
libcore_util_NativeAllocationRegistry.cpp 37 gMethods, NELEM(gMethods));
  /libcore/ojluni/src/main/native/
FileSystem_md.c 45 jniRegisterNativeMethods(env, "java/io/FileSystem", gMethods, NELEM(gMethods));
String.c 43 jniRegisterNativeMethods(env, "java/lang/String", gMethods, NELEM(gMethods));
  /frameworks/minikin/tests/
WordBreakerTests.cpp 28 #ifndef NELEM
29 #define NELEM(x) ((sizeof(x) / sizeof((x)[0])))
42 breaker.setText(buf, NELEM(buf));
49 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end
60 breaker.setText(buf, NELEM(buf));
66 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end
76 breaker.setText(buf, NELEM(buf));
83 EXPECT_EQ((ssize_t)NELEM(buf), breaker.next()); // end of string
85 EXPECT_EQ((ssize_t)NELEM(buf), breaker.wordEnd());
93 breaker.setText(buf, NELEM(buf))
    [all...]
  /frameworks/base/core/jni/
com_android_internal_os_PathClassLoaderFactory.cpp 48 return RegisterMethodsOrDie(env, kPathClassLoaderFactoryPathName, g_methods, NELEM(g_methods));
android_app_Activity.cpp 48 return RegisterMethodsOrDie(env, kActivityPathName, g_methods, NELEM(g_methods));
com_android_internal_util_VirtualRefBasePtr.cpp 45 return RegisterMethodsOrDie(env, kClassPathName, gMethods, NELEM(gMethods));
android_app_ApplicationLoaders.cpp 51 return RegisterMethodsOrDie(env, kApplicationLoadersName, g_methods, NELEM(g_methods));
android_database_SQLiteGlobal.cpp 89 sMethods, NELEM(sMethods));
android_hardware_UsbDevice.cpp 58 method_table, NELEM(method_table));
  /frameworks/base/core/tests/coretests/apks/install_jni_lib/
com_android_frameworks_coretests_JNITest.cpp 32 NELEM(sMethods));
  /frameworks/base/services/core/jni/
com_android_server_SystemServer.cpp 48 gMethods, NELEM(gMethods));
  /external/conscrypt/src/openjdk/native/
JNIHelp.h 32 #ifndef NELEM
33 # define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
  /frameworks/native/opengl/libs/
hooks.h 39 #undef NELEM
40 #define NELEM(x) (sizeof(x)/sizeof(*(x)))
  /frameworks/webview/chromium/plat_support/
draw_gl_functor.cpp 33 #define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
69 COMPILE_ASSERT(NELEM(aw_info.transform) == NELEM(gl_info->transform),
71 for (int i = 0; i < NELEM(aw_info.transform); ++i) {
150 int res = env->RegisterNatives(clazz, kJniMethods, NELEM(kJniMethods));

Completed in 1125 milliseconds

1 2 3 4 5 6 7 8 91011>>