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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/mac/postbuild-multiple-configurations/
postbuild-touch-file.sh 7 touch "${BUILT_PRODUCTS_DIR}/postbuild-file"
  /external/chromium_org/tools/gyp/test/mac/postbuild-static-library/
postbuild-touch-file.sh 7 touch "${BUILT_PRODUCTS_DIR}/$1"
  /external/chromium_org/tools/gyp/test/mac/postbuild-fail/
touch-dynamic.sh 7 touch "${BUILT_PRODUCTS_DIR}/dynamic_touch"
touch-static.sh 7 touch "${BUILT_PRODUCTS_DIR}/static_touch"
  /external/chromium_org/tools/gyp/test/mac/rebuild/
delay-touch.sh 6 touch "$1"
  /external/chromium_org/tools/gyp/test/many-actions/
gyptest-many-actions-unsorted.py 23 test.touch('file1')
26 test.touch('file0')
29 test.touch('file2')
30 test.touch('file3')
31 test.touch('file4')
  /external/chromium_org/tools/gyp/test/mac/postbuilds/script/
shared_library_postbuild.sh 23 touch "${lib}"_touch
static_library_postbuild.sh 23 touch "${lib}"_touch.a
  /external/jmonkeyengine/engine/src/android/com/jme3/input/android/
AndroidInput.java 169 * Fetches a touch event from the reuse pool
225 TouchEvent touch; local
238 touch = getNextFreeTouchEvent();
239 touch.set(Type.DOWN, event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex), 0, 0);
240 touch.setPointerId(pointerId);
241 touch.setTime(event.getEventTime());
242 touch.setPressure(event.getPressure(pointerIndex));
243 processEvent(touch);
252 touch = getNextFreeTouchEvent();
253 touch.set(Type.UP, event.getX(pointerIndex), this.getHeight() - event.getY(pointerIndex), 0, 0);
479 TouchEvent touch = getNextFreeTouchEvent(); local
487 TouchEvent touch = getNextFreeTouchEvent(); local
502 TouchEvent touch = getNextFreeTouchEvent(); local
515 TouchEvent touch = getNextFreeTouchEvent(); local
528 TouchEvent touch = getNextFreeTouchEvent(); local
541 TouchEvent touch = getNextFreeTouchEvent(); local
551 TouchEvent touch = getNextFreeTouchEvent(); local
561 TouchEvent touch = getNextFreeTouchEvent(); local
569 TouchEvent touch = getNextFreeTouchEvent(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
touch-action-tests.css 2 Use a class to apply touch-action so that we can easily manually check
6 -ms-touch-action: none;
7 touch-action: none;
10 -ms-touch-action: auto;
11 touch-action: auto;
  /external/libpng/
autogen.sh 7 touch Makefile.am configure.ac
  /external/chromium_org/content/browser/renderer_host/input/
touch_input_browsertest.cc 184 // Touch input event tests don't work on Mac with the legacy software renderer.
194 SyntheticWebTouchEvent touch; local
197 // no touch-handler on it.
198 touch.PressPoint(25, 25);
199 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo());
211 // If a touch-press is acked with NO_CONSUMER_EXISTS, then subsequent
212 // touch-points don't need to be dispatched until the touch point is released.
213 touch.ReleasePoint(0);
214 GetWidgetHost()->ForwardTouchEventWithLatencyInfo(touch, ui::LatencyInfo())
228 SyntheticWebTouchEvent touch; local
253 SyntheticWebTouchEvent touch; local
277 SyntheticWebTouchEvent touch; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
FileUtilsTest.java 121 touch("file1", HOUR_IN_MILLIS);
122 touch("file2", 1 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
123 touch("file3", 2 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
124 touch("file4", 3 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
125 touch("file5", 4 * DAY_IN_MILLIS + HOUR_IN_MILLIS);
131 touch("file1", -HOUR_IN_MILLIS);
132 touch("file2", HOUR_IN_MILLIS);
133 touch("file3", WEEK_IN_MILLIS);
137 touch("file1", -HOUR_IN_MILLIS);
138 touch("file2", HOUR_IN_MILLIS)
164 private void touch(String name, long age) throws Exception { method in class:FileUtilsTest
    [all...]
  /external/chromium_org/tools/gyp/test/defines/
gyptest-defines-env.py 40 test.touch('defines.c')
58 test.touch('defines.c')
76 test.touch('defines.c')
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.h 30 #include "core/dom/Touch.h"
43 static PassRefPtr<TouchList> create(Vector<RefPtr<Touch> >& touches)
50 Touch* item(unsigned);
51 const Touch* item(unsigned) const;
53 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); }
61 TouchList(Vector<RefPtr<Touch> >& touches)
67 Vector<RefPtr<Touch> > m_values;
  /ndk/sources/host-tools/make-3.81/tests/scripts/targets/
SECONDARY 53 &touch('foo.f');
76 &touch('foo.f');
103 touch('final');
114 touch('version2');
  /external/chromium_org/tools/gyp/test/intermediate_dir/
gyptest-intermediate-dir.py 27 test.touch('src/shared_infile.txt')
  /external/chromium_org/tools/gyp/test/mac/
gyptest-rebuild.py 23 # Touch a source file, rebuild, and check that the app target is up-to-date.
24 test.touch('rebuild/main.c')
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-restat-importlib.py 24 # Delay briefly so that there's time for this touch not to have the
28 # Touch the .cc file; the .dll will rebuild, but the import libs timestamp
30 test.touch('importlib/has-exports.cc')
  /external/clang/test/CodeGenCXX/
captured-statements.cpp 100 void touch(const T &) {} function
107 touch<T, id>(x);
118 touch<T, id>(v);
126 touch<U, id + id2>(u);
  /external/chromium_org/content/renderer/
render_widget_unittest.cc 82 SyntheticWebTouchEvent touch; local
83 touch.PressPoint(10, 10);
85 widget->SendInputEvent(touch);
88 // Since there's currently no touch-event handling region, the response should
101 widget->SendInputEvent(touch);
121 SyntheticWebTouchEvent touch; local
122 touch.PressPoint(25, 25);
124 widget->SendInputEvent(touch);
127 // Since there's currently no touch-event handling region, the response should
135 // Press a second touch point. This time, on a touch-handling region
    [all...]
  /frameworks/base/services/java/com/android/server/display/
DisplayDeviceInfo.java 81 * Touch attachment: Display does not receive touch.
86 * Touch attachment: Touch input is via the internal interface.
91 * Touch attachment: Touch input is via an external interface, such as USB.
144 * The touch attachment, per {@link DisplayViewport#touch}.
146 public int touch; field in class:DisplayDeviceInfo
210 && touch == other.touc
    [all...]
  /external/bison/build-aux/
missing 76 aclocal touch file 'aclocal.m4'
77 autoconf touch file 'configure'
78 autoheader touch file 'config.h.in'
79 autom4te touch the output file, or create a stub one
80 automake touch all 'Makefile.in' files
83 help2man touch the output file
85 makeinfo touch the output file
145 touch aclocal.m4
154 touch configure
173 touch $touch_file
    [all...]
  /external/chromium_org/third_party/opus/src/
missing 77 aclocal touch file \`aclocal.m4'
78 autoconf touch file \`configure'
79 autoheader touch file \`config.h.in'
80 autom4te touch the output file, or create a stub one
81 automake touch all \`Makefile.in' files
84 help2man touch the output file
86 makeinfo touch the output file
146 touch aclocal.m4
155 touch configure
174 touch $touch_file
    [all...]
  /external/grub/
missing 77 aclocal touch file \`aclocal.m4'
78 autoconf touch file \`configure'
79 autoheader touch file \`config.h.in'
80 automake touch all \`Makefile.in' files
83 help2man touch the output file
85 makeinfo touch the output file
145 touch aclocal.m4
154 touch configure
173 touch $touch_files
184 while read f; do touch "$f"; don
    [all...]

Completed in 5972 milliseconds

1 2 3 4 5 6 7 8 91011>>