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

1 2

  /packages/apps/Launcher3/src/com/android/launcher3/
OverviewButtonClickListener.java 28 handleViewClick(view, Action.Touch.TAP);
Launcher.java     [all...]
  /frameworks/base/core/java/android/view/
GestureDetector.java 50 * Notified when a tap occurs with the down {@link MotionEvent}
69 * Notified when a tap occurs with the up {@link MotionEvent}
72 * @param e The up motion event that completed the first tap
119 * The listener that is used to notify when a double-tap or a confirmed
120 * single-tap occur.
124 * Notified when a single-tap occurs.
128 * first tap is not followed by a second tap leading to a double-tap
131 * @param e The down motion event of the single-tap
    [all...]
  /frameworks/support/compat/java/android/support/v4/view/
GestureDetectorCompat.java 69 private static final int TAP = 3;
85 * True when the user is still touching for the second tap (down, move, and
86 * up events). Can only be true if there is a double tap listener attached.
122 case TAP:
123 // If the user's finger is still down, do not count it as a tap
185 * Sets the listener which will be called for double-tap and related
189 * null to stop listening for double-tap gestures.
289 boolean hadTapMessage = mHandler.hasMessages(TAP);
290 if (hadTapMessage) mHandler.removeMessages(TAP);
294 // This is a second tap
    [all...]
  /packages/apps/Launcher3/protos/
launcher_log.proto 111 TAP = 0;
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 135 std::unique_ptr<MCTargetAsmParser> TAP(TM.getTarget().createMCAsmParser(
137 if (!TAP)
141 Parser->setTargetParser(*TAP.get());
144 TAP->SetFrameRegister(TRI->getFrameRegister(*MF));
151 emitInlineAsmEnd(STI, &TAP->getSTI());
  /external/llvm/lib/Object/
IRObjectFile.cpp 90 std::unique_ptr<MCTargetAsmParser> TAP(
92 if (!TAP)
95 Parser->setTargetParser(*TAP);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 125 TAP(TM.getTarget().createMCAsmParser(*STI, *Parser));
126 if (!TAP)
129 Parser->setTargetParser(*TAP.get());
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
llvm-mc.cpp 430 OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(*STI, *Parser));
431 if (!TAP) {
438 Parser->setTargetParser(*TAP.get());
  /kernel/tests/net/test/
run_net_test.sh 37 # How many TAP interfaces to create to provide the VM with real network access
44 # does not perform any host-level setup beyond configuring tap interfaces;
140 # If network access was requested, create NUMTAPINTERFACES tap interfaces on
148 tap=${user}TAP$id
149 tapinterfaces="$tapinterfaces $tap"
151 netconfig="$netconfig eth$id=tuntap,$tap,$mac"
154 for tap in $tapinterfaces; do
155 if ! ip link list $tap > /dev/null; then
156 echo "Creating tap interface $tap" >&
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 416 std::unique_ptr<MCTargetAsmParser> TAP(
418 if (!TAP)
422 Parser->setTargetParser(*TAP.get());
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 354 std::unique_ptr<MCTargetAsmParser> TAP(
357 if (!TAP) {
367 Parser->setTargetParser(*TAP);
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOModule.cpp 633 TAP(_target->getTarget().createMCAsmParser(*STI, *Parser.get()));
634 if (!TAP) {
640 Parser->setTargetParser(*TAP);
  /external/llvm/lib/Target/Hexagon/
RDFGraph.cpp     [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
DragAction.java 213 * Starts a drag with a tap.
215 TAP {
237 return "tap and drag";
268 * Starts a drag with a double-tap.
290 return "double-tap and drag";
384 String logMessage = "Injection of up event as part of the double tap " +
414 * @param coordinates a float[] with x and y values of center of the tap.
415 * @param precision a float[] with x and y values of precision of the tap.
TextViewActions.java 25 import android.support.test.espresso.action.Tap;
53 new ViewClickAction(Tap.SINGLE, new TextCoordinates(index), Press.FINGER));
84 new MouseClickAction(Tap.SINGLE, new TextCoordinates(index), button));
99 new ViewClickAction(Tap.DOUBLE, new TextCoordinates(index), Press.FINGER));
114 new MouseClickAction(Tap.DOUBLE, new TextCoordinates(index)));
129 new ViewClickAction(Tap.LONG, new TextCoordinates(index), Press.FINGER));
144 new MouseClickAction(Tap.LONG, new TextCoordinates(index)));
301 * Returns an action that tap then drags on the handle from the current position to endIndex on
318 * Returns an action that tap then drags on the handle from the current position to endIndex on
336 DragAction.Drag.TAP,
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
UserEventDispatcher.java 130 LauncherEvent event = newLauncherEvent(newTouchAction(Action.Touch.TAP),
  /frameworks/native/services/inputflinger/
InputReader.cpp     [all...]
InputReader.h 119 // Tap gesture delay time.
120 // The time between down and up must be less than this to be considered a tap.
123 // Tap drag gesture delay time.
124 // The time between the previous tap's up and the next down must be less than
125 // this to be considered a drag. Otherwise, the previous tap is finished and a
126 // new tap begins.
128 // Note that the previous tap will be held down for this entire duration so this
133 // to up and still be called a tap.
    [all...]
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 
  /development/samples/training/InteractiveChart/libs/
android-support-v4.jar 
  /external/robolectric/v1/lib/main/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.jar 

Completed in 1327 milliseconds

1 2