Home
last modified time | relevance | path

Searched defs:e (Results 1 – 25 of 94) sorted by relevance

1234

/development/ndk/platforms/android-3/include/
Dassert.h51 # define assert(e) ((void)0) argument
52 # define _assert(e) ((void)0) argument
54 # define _assert(e) assert(e) argument
56 # define assert(e) ((e) ? (void)0 : __assert2(__FILE__, __LINE__, __func__, #e)) argument
58 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) argument
/development/ndk/platforms/android-21/include/
Dassert.h51 # define assert(e) ((void)0) argument
52 # define _assert(e) ((void)0) argument
54 # define _assert(e) assert(e) argument
56 # define assert(e) ((e) ? (void)0 : __assert2(__FILE__, __LINE__, __func__, #e)) argument
58 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e)) argument
/development/samples/browseable/BasicGestureDetect/src/com.example.android.basicgesturedetect/
DGestureListener.java32 public boolean onSingleTapUp(MotionEvent e) { in onSingleTapUp()
39 public void onLongPress(MotionEvent e) { in onLongPress()
62 public void onShowPress(MotionEvent e) { in onShowPress()
68 public boolean onDown(MotionEvent e) { in onDown()
75 public boolean onDoubleTap(MotionEvent e) { in onDoubleTap()
82 public boolean onDoubleTapEvent(MotionEvent e) { in onDoubleTapEvent()
91 public boolean onSingleTapConfirmed(MotionEvent e) { in onSingleTapConfirmed()
104 private static String getTouchType(MotionEvent e){ in getTouchType()
144 private static String getButtonsPressed(MotionEvent e){ in getButtonsPressed()
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeySourceScript.java293 MonkeyKeyEvent e = new MonkeyKeyEvent(downTime, eventTime, action, code, repeat, in handleEvent() local
321 MonkeyMotionEvent e; in handleEvent() local
359 MonkeyMotionEvent e; in handleEvent() local
513 MonkeyMotionEvent e = in handleEvent() local
592 MonkeyFlipEvent e = new MonkeyFlipEvent(keyboardOpen); in handleEvent() local
614 MonkeyActivityEvent e = new MonkeyActivityEvent(mApp); in handleEvent() local
617 MonkeyActivityEvent e = new MonkeyActivityEvent(mApp, alarmTime); in handleEvent() local
656 MonkeyInstrumentationEvent e = new MonkeyInstrumentationEvent(test_name, runner_name); in handleEvent() local
665 MonkeyWaitEvent e = new MonkeyWaitEvent(sleeptime); in handleEvent() local
675 MonkeyWaitEvent e = new MonkeyWaitEvent(mProfileWaitTime); in handleEvent() local
[all …]
DMonkeySourceRandom.java433 MonkeyActivityEvent e = new MonkeyActivityEvent(mMainApps.get( in generateEvents() local
438 MonkeyFlipEvent e = new MonkeyFlipEvent(mKeyboardOpen); in generateEvents() local
454 MonkeyKeyEvent e = new MonkeyKeyEvent(KeyEvent.ACTION_DOWN, lastKey); in generateEvents() local
481 MonkeyActivityEvent e = new MonkeyActivityEvent(mMainApps.get( in generateActivity() local
495 MonkeyEvent e = mQ.getFirst(); in getNextEvent() local
DMonkeyEventQueue.java40 public void addLast(MonkeyEvent e) { in addLast()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/logging/
DLogger.java92 public void e(String msg) { in e() method in Logger
96 public void e(String msg, Throwable t) { in e() method in Logger
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DTouchRotateActivity.java80 @Override public boolean onTrackballEvent(MotionEvent e) { in onTrackballEvent()
87 @Override public boolean onTouchEvent(MotionEvent e) { in onTouchEvent()
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
DLogHelper.java70 public static void e(String tag, Object... messages) { in e() method in LogHelper
74 public static void e(String tag, Throwable t, Object... messages) { in e() method in LogHelper
/development/samples/OpenGL/HelloOpenGLES10/src/com/example/android/opengl/
DMyGLSurfaceView.java47 public boolean onTouchEvent(MotionEvent e) { in onTouchEvent()
/development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
DMyGLSurfaceView.java50 public boolean onTouchEvent(MotionEvent e) { in onTouchEvent()
/development/ndk/platforms/android-9/arch-x86/include/asm/
Dpgtable-2level.h21 #define pte_ERROR(e) printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte_low) argument
22 #define pgd_ERROR(e) printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) argument
/development/samples/browseable/Interpolator/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/RecyclerView/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/BasicImmersiveMode/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/TextLinkify/src/com.example.android.common.logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/ndk/platforms/android-9/arch-mips/include/asm/
Dpgtable-32.h47 #define pte_ERROR(e) printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e)) argument
49 #define pgd_ERROR(e) printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e)) argument
/development/samples/browseable/ScreenCapture/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.common.logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/ClippingBasic/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/MediaRouter/src/com.example.android.common.logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/RevealEffectBasic/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/NavigationDrawer/src/com.example.android.common.logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.common/logger/
DLog.java190 public static void e(String tag, String msg, Throwable tr) { in e() method in Log
200 public static void e(String tag, String msg) { in e() method in Log

1234