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

1 2

  /external/webkit/WebKitTools/Scripts/
check-for-global-initializers 39 sub touch($);
132 touch($buildTimestampPath);
135 sub touch($) subroutine
138 open(TOUCH, ">", $path) or die "$!";
139 close(TOUCH);
check-for-weak-vtables-and-externals 39 sub touch($);
111 touch($buildTimestampPath);
115 sub touch($) subroutine
118 open(TOUCH, ">", $path) or die "$!";
119 close(TOUCH);
check-for-exit-time-destructors 39 sub touch($);
104 touch($buildTimestampPath);
107 sub touch($) subroutine
110 open(TOUCH, ">", $path) or die "$!";
111 close(TOUCH);
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch.js 12 var touch = document.createTouch(window, target, 1, 100, 101, 102, 103); variable
13 shouldBeNonNull("touch");
14 shouldBe("touch.target", "box");
15 shouldBe("touch.identifier", "1");
16 shouldBe("touch.pageX", "100");
17 shouldBe("touch.pageY", "101");
18 shouldBe("touch.screenX", "102");
19 shouldBe("touch.screenY", "103");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
Resource.java 35 public final void touch() { method in class:Resource
ResourceFolder.java 86 touch(); method
ResourceManager.java 212 resFolder.touch();
308 // get the resourceFile, and touch it.
311 resFile.touch();
616 resFile.touch();
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListGetSelectedViewTest.java 17 package android.widget.listview.touch;
30 * null in touch mode.
ListTouchTest.java 17 package android.widget.listview.touch;
28 * Touch tests for a list where all of the items fit on the screen.
62 assertEquals("Selection still available after touch", -1,
80 assertEquals("Selection still available after touch", -1,
ListOfTouchablesTest.java 17 package android.widget.listview.touch;
31 * Touch tests for a list where all of the items fit on the screen.
ListSetSelectionTest.java 17 package android.widget.listview.touch;
29 * Tests setting the selection in touch mode
59 assertEquals("Selection still available after touch", -1,
89 assertEquals("Selection still available after touch", -1,
127 assertEquals("Selection still available after touch", -1,
ListTouchBottomGravityTest.java 17 package android.widget.listview.touch;
28 * Touch tests for a list where all of the items fit on the screen, and the list
65 assertEquals("Selection still available after touch", -1,
84 assertEquals("Selection still available after touch", -1,
ListTouchBottomGravityManyTest.java 17 package android.widget.listview.touch;
31 * Touch tests for a list where all of the items do not fit on the screen, and the list
66 assertEquals("Selection still available after touch", -1,
86 assertEquals("Selection still available after touch", -1,
ListTouchManyTest.java 17 package android.widget.listview.touch;
31 * Touch tests for a list where all of the items do not fit on the screen.
63 assertEquals("Selection still available after touch", -1,
81 assertEquals("Selection still available after touch", -1,
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchSetSelectionTest.java 17 package android.widget.gridview.touch;
29 * Tests setting the selection in touch mode
59 assertEquals("Selection still available after touch", -1,
GridTouchStackFromBottomManyTest.java 17 package android.widget.gridview.touch;
59 assertEquals("Selection still available after touch", -1,
75 assertEquals("Selection still available after touch", -1,
GridTouchStackFromBottomTest.java 17 package android.widget.gridview.touch;
57 assertEquals("Selection still available after touch", -1,
74 assertEquals("Selection still available after touch", -1,
91 assertEquals("Selection still available after touch", -1,
108 assertEquals("Selection still available after touch", -1,
GridTouchVerticalSpacingStackFromBottomTest.java 17 package android.widget.gridview.touch;
GridTouchVerticalSpacingTest.java 17 package android.widget.gridview.touch;
  /frameworks/base/libs/rs/java/Film/res/raw/
filmimage.c 11 int count, touch, x, y, rate, maxLife, lifeShift; local
23 touch = loadI32(con, 0, 2);
41 if (touch) {
  /external/quake/quake/src/QW/server/
world.c 269 edict_t *touch; local
272 // touch linked edicts
276 touch = EDICT_FROM_AREA(l);
277 if (touch == ent)
279 if (!touch->v.touch || touch->v.solid != SOLID_TRIGGER)
281 if (ent->v.absmin[0] > touch->v.absmax[0]
282 || ent->v.absmin[1] > touch->v.absmax[1]
283 || ent->v.absmin[2] > touch->v.absmax[2
719 edict_t *touch; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
FileMock.java 426 public void touch(IProgressMonitor monitor) throws CoreException { method in class:FileMock
FolderMock.java 416 public void touch(IProgressMonitor monitor) throws CoreException { method in class:FolderMock
  /external/quake/quake/src/WinQuake/
world.cpp 280 edict_t *touch; local
283 // touch linked edicts
287 touch = EDICT_FROM_AREA(l);
288 if (touch == ent)
290 if (!touch->u.v.touch || touch->u.v.solid != SOLID_TRIGGER)
292 if (ent->u.v.absmin[0] > touch->u.v.absmax[0]
293 || ent->u.v.absmin[1] > touch->u.v.absmax[1]
294 || ent->u.v.absmin[2] > touch->u.v.absmax[2
817 edict_t *touch; local
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
FileUtils.java 207 * Implements the same behaviour as the "touch" utility on Unix. It creates
215 * @param file the File to touch
218 public static void touch(File file) throws IOException { method in class:FileUtils
    [all...]

Completed in 262 milliseconds

1 2