HomeSort by relevance Sort by last modified time
    Searched full:input (Results 1 - 25 of 14104) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Ease.java 28 public float getInterpolation(float input) {
29 return input;
36 public float getInterpolation(float input) {
37 return DOMAIN*(input/=DURATION)*input*input + START;
41 public float getInterpolation(float input) {
42 return DOMAIN*((input=input/DURATION-1)*input*input + 1) + START
    [all...]
  /docs/source.android.com/src/tech/input/
sidebar2.md 0 # Input Concepts #
3 - [Overview](/tech/input/overview.html)
4 - [Key Layout Files](/tech/input/key-layout-files.html)
5 - [Key Character Map Files](/tech/input/key-character-map-files.html)
6 - [Input Device Configuration Files](/tech/input/input-device-configuration-files.html)
7 - [Migration Guide](/tech/input/migration-guide.html)
9 # Input Device Classes #
11 - [Keyboard Devices](/tech/input/keyboard-devices.html
    [all...]
  /external/webkit/Source/WebCore/manual-tests/
form-control-madness.html 0 <input name="b" type="button" onclick="location='back.html'" value="Click Here">
6 <input type="radio" name="old_version" value="12">
7 <input type="radio" name="version" value="12">
9 X<input type="radio" name="old_version" value="11" checked="checked"> X
10 <input type="radio" name="version" value="11">
12 <input type="radio" name="old_version" value="10">
13 X<input type="radio" name="version" value="10" checked="checked">X
15 <input type="radio" name="old_version" value="9">
16 <input type="radio" name="version" value="9">
18 <input type="radio" name="old_version" value="8">
    [all...]
back.html 0 <input type="button" onclick="history.back()" value="Go Back"
drag-caret.html 1 <p>This tests dragging over an input element, to make sure no drag-cursor is left behind.</p>
2 <p><input></p>
3 <p>Drag some text over the input element and make sure the Drag Caret disappears when the drag exits the input element. Per https://bugs.webkit.org/show_bug.cgi?id=26787</p>
input-type-text-unconfirmed-inline-input.html 3 <head><title>Unconfirmed inline input in <input type=text></title></head>
16 <p>Enter some text using inline input (e.g. Kotoeri Hiragana) and click the button without closing the input area.</p>
17 <p><input type=text id=input value="" size=57><input type=button value="test" onClick="dump(document.getElementById('input').value)"></div>
18 <p>The alert should show the inline input text, but without the bug fix it shows empty text.</p>
  /external/webkit/Source/WebCore/manual-tests/chromium/
no-autofill-on-readonly.html 8 <li>Enter a name in the input text in Form 1 and press submit. This is so the autofill has a value for that field.</li>
9 <li>Reload the page so the input text is empty. Click twice on the Form 1 text input. An autofill popup with the name you entered previously should be shown.</li>
10 <li>Click twice on the Form 2 text input. No autofill popup should be shown.</li>
11 <li>Click twice on the Form 3 text input. No autofill popup should be shown.</li>
14 <h1>Form 1 (text input non read-only)</h1>
16 Name:<input type="text" name="name"></input><br>
17 <input type="submit"></input>
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
input-box-text-fragment-combine-text-crash.html 3 <input type="submit" value="Search"></input>
5 input { -webkit-text-combine:horizontal; }
input-number-spinbutton-crash.html 5 input::-webkit-inner-spin-button { display: none; }
9 <input type="number" id="in">
13 var input = document.getElementById('in');
16 input.dispatchEvent(evt);
17 input.style.display='none';
input-number-crash.html 8 var input = document.getElementById("test");
9 var x = input.offsetLeft + input.offsetWidth - 8;
10 var y = input.offsetTop + input.offsetHeight - 7;
24 <input type="number" id="test" onclick="event.target.style.display='none'">
  /external/webkit/Tools/QueueStatusServer/templates/
releasepatch.html 2 Patch to release: <input name="attachment_id"> from <input name="queue_name"><input type="submit" value="Release locks and remove from queue"></div>
updatesvnrevision.html 2 Update an SVN revision: <input name="number">
5 <input name="broken_bot">
7 <div><input type="submit" value="Update"></div>
  /external/webkit/LayoutTests/fast/leaks/
002.html 5 <div><input type='file' id='input'></input></div>
6 <iframe id='iframe' src="data:text/html,<input type='file' id='input'></input>"></iframe>
16 document.getElementById('input').focus();
17 document.getElementById('iframe').contentDocument.getElementById('input').focus();
  /packages/apps/Contacts/src/com/android/contacts/util/
MoreMath.java 24 * If the input value lies outside of the specified range, return the nearer
25 * bound. Otherwise, return the input value, unchanged.
27 public static int clamp(int input, int lowerBound, int upperBound) {
28 if (input < lowerBound) return lowerBound;
29 if (input > upperBound) return upperBound;
30 return input;
34 * If the input value lies outside of the specified range, return the nearer
35 * bound. Otherwise, return the input value, unchanged.
37 public static float clamp(float input, float lowerBound, float upperBound) {
38 if (input < lowerBound) return lowerBound
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 2 /// Base functions to initialize and manipulate any input stream
37 // Generic 8 bit input such as latin-1
55 static void antlr3InputClose (pANTLR3_INPUT_STREAM input);
56 static void antlr3InputReset (pANTLR3_INPUT_STREAM input);
57 static void antlr38BitReuse (pANTLR3_INPUT_STREAM input, pANTLR3_UINT8 inString, ANTLR3_UINT32 size, pANTLR3_UINT8 name);
58 static void * antlr38BitLT (pANTLR3_INPUT_STREAM input, ANTLR3_INT32 lt);
59 static ANTLR3_UINT32 antlr38BitSize (pANTLR3_INPUT_STREAM input);
60 static pANTLR3_STRING antlr38BitSubstr (pANTLR3_INPUT_STREAM input, ANTLR3_MARKER start, ANTLR3_MARKER stop);
61 static ANTLR3_UINT32 antlr38BitGetLine (pANTLR3_INPUT_STREAM input);
62 static void * antlr38BitGetLineBuf (pANTLR3_INPUT_STREAM input);
317 pANTLR3_INPUT_STREAM input; local
352 pANTLR3_INPUT_STREAM input; local
379 pANTLR3_INPUT_STREAM input; local
418 pANTLR3_INPUT_STREAM input; local
448 pANTLR3_INPUT_STREAM input; local
514 pANTLR3_INPUT_STREAM input; local
552 pANTLR3_INPUT_STREAM input; local
573 pANTLR3_INPUT_STREAM input; local
780 pANTLR3_INPUT_STREAM input; local
859 pANTLR3_INPUT_STREAM input; local
998 pANTLR3_INPUT_STREAM input; local
1015 pANTLR3_INPUT_STREAM input; local
1062 pANTLR3_INPUT_STREAM input; local
1139 pANTLR3_INPUT_STREAM input; local
1281 pANTLR3_INPUT_STREAM input; local
1360 pANTLR3_INPUT_STREAM input; local
1572 pANTLR3_INPUT_STREAM input; local
1605 pANTLR3_INPUT_STREAM input; local
1635 pANTLR3_INPUT_STREAM input; local
1669 pANTLR3_INPUT_STREAM input; local
1693 pANTLR3_INPUT_STREAM input; local
1724 pANTLR3_INPUT_STREAM input; local
1806 pANTLR3_INPUT_STREAM input; local
1872 pANTLR3_INPUT_STREAM input; local
2036 pANTLR3_INPUT_STREAM input; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
files 5 input
  /external/webkit/LayoutTests/fast/encoding/
bom-in-content-expected.txt 1 Test for bug 18681: BOM characters should not be removed from input stream.
bom-in-content-utf16-expected.txt 1 Test for bug 18681: BOM characters should not be removed from input stream.
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
spacebar-scrolling.html 5 return document.querySelector("input").value === " ";
10 document.querySelector("input").blur();
20 document.querySelector("input").focus();
25 <input>
  /frameworks/base/cmds/input/
input 1 # Script to start "input" on the device, which has a very rudimentary
5 export CLASSPATH=$base/framework/input.jar
6 exec app_process $base/bin com.android.commands.input.Input $*
  /frameworks/base/docs/html/guide/topics/admin/
keychain.jd 1 page.title=Text and Input
  /dalvik/tools/dmtracedump/
dmtracedump.pl 8 $input = $_;
9 $input =~ s/\.data$//;
11 $output = "$input.html";
13 print("dmtracedump -h -p $input > $output\n");
14 system("dmtracedump -h -p '$input' > '$output'");
  /external/qemu/android/utils/
lineinput.c 41 LineInput* input; local
43 ANEW0(input);
44 input->line = input->line0;
45 input->line_size = sizeof(input->line0);
47 return input;
54 LineInput* input = _lineInput_new(); local
56 input->std.file = file;
57 return input;
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLFormElement/
invalid-form-field.html 13 var form, input, str;
20 input = document.createElement("input");
21 input.id = "input";
22 input.setAttribute("form", "form");
23 form.elements.namedItem("input");
25 input = null;
34 str = typeof form['input'].form;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 4 org.antlr.runtime.Parser = function(input, state) {
6 this.setTokenStream(input);
13 if ( org.antlr.lang.isValue(this.input) ) {
14 this.input.seek(0); // rewind the input
18 getCurrentInputSymbol: function(input) {
19 return input.LT(1);
22 getMissingSymbol: function(input,
30 var current = input.LT(1);
34 current = input.LT(-1)
    [all...]

Completed in 3007 milliseconds

1 2 3 4 5 6 7 8 91011>>