HomeSort by relevance Sort by last modified time
    Searched refs:TAP (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/view/
GestureDetector.java 48 * Notified when a tap occurs with the down {@link MotionEvent}
67 * Notified when a tap occurs with the up {@link MotionEvent}
70 * @param e The up motion event that completed the first tap
117 * The listener that is used to notify when a double-tap or a confirmed
118 * single-tap occur.
122 * Notified when a single-tap occurs.
126 * first tap is not followed by a second tap leading to a double-tap
129 * @param e The down motion event of the single-tap
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 125 OwningPtr<TargetAsmParser> TAP(TM.getTarget().createAsmParser(*STI, *Parser));
126 if (!TAP)
129 Parser->setTargetParser(*TAP.get());
  /external/clang/tools/driver/
cc1as_main.cpp 329 TAP(TheTarget->createAsmParser(const_cast<MCSubtargetInfo&>(STI), *Parser));
330 if (!TAP) {
335 Parser->setTargetParser(*TAP.get());
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 406 OwningPtr<TargetAsmParser> TAP(TheTarget->createAsmParser(*STI, *Parser));
407 if (!TAP) {
414 Parser->setTargetParser(*TAP.get());
  /external/llvm/tools/lto/
LTOModule.cpp 632 TAP(_target->getTarget().createAsmParser(*STI, *Parser.get()));
633 Parser->setTargetParser(*TAP);
  /frameworks/base/services/input/
InputReader.h 94 // Tap gesture delay time.
95 // The time between down and up must be less than this to be considered a tap.
98 // Tap drag gesture delay time.
99 // The time between the previous tap's up and the next down must be less than
100 // this to be considered a drag. Otherwise, the previous tap is finished and a
101 // new tap begins.
103 // Note that the previous tap will be held down for this entire duration so this
108 // to up and still be called a tap.
    [all...]
InputReader.cpp     [all...]

Completed in 746 milliseconds