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

1 2 3 4 5 67 8 91011>>

  /sdk/testapps/javaProjectTest/app/src/com/android/tests/javaprojecttest/app/
App.java 11 InputStream input = App.class.getResourceAsStream("App.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/javaProjectTest/javaProject/src/com/android/tests/javaprojecttest/javaproject/
JavaProject.java 11 InputStream input = JavaProject.class.getResourceAsStream("/com/android/tests/javaprojecttest/javaproject/JavaProject.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/javaProjectTest/javaProject2/src/com/android/tests/javaprojecttest/javaproject2/
JavaProject2.java 11 InputStream input = JavaProject2.class.getResourceAsStream("/com/android/tests/javaprojecttest/javaproject2/JavaProject2.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/javaProjectTest/javaProject3/src/com/android/tests/javaprojecttest/javaproject3/
JavaProject3.java 11 InputStream input = JavaProject3.class.getResourceAsStream("/com/android/tests/javaprojecttest/javaproject3/JavaProject3.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/javaProjectTest/lib1/src/com/android/tests/javaprojecttest/lib1/
Lib1.java 11 InputStream input = Lib1.class.getResourceAsStream("Lib1.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/javaProjectTest/lib2/src/com/android/tests/javaprojecttest/lib2/
Lib2.java 11 InputStream input = Lib2.class.getResourceAsStream("Lib2.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/libsAndJarTest/app/src/com/android/tests/javaprojecttest/app/
App.java 11 InputStream input = App.class.getResourceAsStream("App.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/libsAndJarTest/lib1/src/com/android/tests/javaprojecttest/lib1/
Lib1.java 11 InputStream input = Lib1.class.getResourceAsStream("Lib1.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /sdk/testapps/libsAndJarTest/lib2/src/com/android/tests/javaprojecttest/lib2/
Lib2.java 11 InputStream input = Lib2.class.getResourceAsStream("Lib2.txt"); local
12 if (input == null) {
18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeParser.cs 59 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state)
60 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), state) {
64 public DebugTreeParser(ITreeNodeStream input, RecognizerSharedState state)
65 : base(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, null), state) {
68 public DebugTreeParser(ITreeNodeStream input, IDebugEventListener dbg)
69 : this(input is DebugTreeNodeStream ? input : new DebugTreeNodeStream(input, dbg), dbg, null)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeParser.cs 59 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg, RecognizerSharedState state )
60 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), state )
65 public DebugTreeParser( ITreeNodeStream input, RecognizerSharedState state )
66 : base( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, null ), state )
70 public DebugTreeParser( ITreeNodeStream input, IDebugEventListener dbg )
71 : this( input is DebugTreeNodeStream ? input : new DebugTreeNodeStream( input, dbg ), dbg, null
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeParser.java 48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) {
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) {
54 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,null), state);
57 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg) {
58 this(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), dbg, null)
    [all...]
  /external/chromium/chrome/browser/chromeos/
proxy_config_service_impl_unittest.cc 26 struct Input { // Fields of chromeos::ProxyConfigServiceImpl::ProxyConfig.
53 Input input; member in struct:chromeos::__anon3027::__anon3028
66 { // Input.
82 { // Input.
98 { // Input.
115 { // Input.
132 { // Input.
152 { // Input.
172 { // Input
455 const Input& input = tests[i].input; local
    [all...]
  /external/webkit/Source/WebCore/manual-tests/plugins/
windowed.html 78 <input type="checkbox" name="visibilityCheckBox"> Verify if the flash toggles visibility
79 <input type="button" id="visibilityButton" value="Test Visibility" onClick="testVisibility()"/><br/>
81 <input type="checkbox" name="resizeCheckBox"> Verify if the flash resizes when element is resized
82 <input type="button" id="resizeButton" value="Test Resize" onClick="testResize()"/><br/>
84 <input type="checkbox" name="moveCheckBox"> Verify if the flash moves when element is moved
85 <input type="button" id="moveButton" value="Test Move" onClick="testMove()"/><br/>
87 <input type="checkbox" name="animationCheckBox"> Verify css animations with flash
88 <input type="button" id="animationButton" value="Test Animation" onClick="testAnimation()"/><br/>
90 <input type="checkbox" name="printCheckBox"> Verify if printing displays flash on the print preview and printer output <br/>
92 <input type="checkbox" name="zoomCheckBox"> Verify if elements in flash are correctly painted and clickab (…)
    [all...]
  /frameworks/base/core/java/android/view/
InputChannel.java 24 * An input channel specifies the file descriptors used to send input events to
61 * Creates an uninitialized input channel.
63 * another input channel into this one.
78 * Creates a new input channel pair. One channel should be provided to the input
79 * dispatcher and the other to the application's input queue.
81 * @return A pair of input channels. They are symmetric and indistinguishable.
89 Slog.d(TAG, "Opening input channel pair '" + name + "'");
95 * Gets the name of the input channel
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
MacSpi.java 68 * @param input
71 protected abstract void engineUpdate(byte input);
75 * buffer {@code input} from the specified {@code offset} and length {@code
78 * @param input
85 protected abstract void engineUpdate(byte[] input, int offset, int len);
92 * @param input
95 protected void engineUpdate(ByteBuffer input) {
96 if (!input.hasRemaining()) {
100 if (input.hasArray()) {
101 bInput = input.array()
    [all...]
  /device/moto/wingray/taudio/
tctl.c 26 int input = -3; local
44 input = atoi(optarg);
46 input = -4;
119 printf("set input volume\n");
121 "Cannot set input volume to %d: %s\n", output, strerror(errno));
125 "Cannot get input volume: %s\n", strerror(errno));
129 if (input > -3 && input < 3) {
131 assert(!input); // 1 or 2 or -1 or -2
132 if (input < 0)
    [all...]
  /external/libxml2/
parserInternals.c 228 * Input handling functions for progressive parsing *
237 /* we need to keep enough input to show errors in context */
269 * @in: an XML parser input
272 * This function refresh the input for the parser. It doesn't try to
273 * preserve pointers to the input buffer, and discard already read data
320 * @in: an XML parser input
323 * This function increase the input for the parser. It tries to
324 * preserve pointers to the input buffer, and keep already read data
380 * @in: an XML parser input
382 * This function removes used input for the parser
1380 xmlParserInputPtr input; local
1446 xmlParserInputPtr input; local
1507 xmlParserInputPtr input; local
1606 xmlParserInputPtr input; local
1775 xmlParserInputPtr input; local
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
dangling-form-element-crash.html 27 var input = document.createElement('input');
28 input.setAttribute('form', 'foo');
29 div.appendChild(input);
input-element-attach-crash.html 12 <input>
search-popup-crasher.html 18 <p>This page tests that a page with a search popup does not crash, as reported in <a href='https://bugs.webkit.org/show_bug.cgi?id=37141'>this bug</a>. Below is a search input that the test automatically fills then submits. Pass if this does not crash.</p><br><br>
20 <INPUT autosave="my.search" id="searchBox" type="search" results="10" value=""><br>
21 <INPUT type="hidden" name="state" value="formSubmitted"><br>
22 <INPUT type="submit" value="Search">
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
simplecTreeParser.zip 
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
EarlyExitException.js 5 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
8 org.antlr.runtime.EarlyExitException = function(decisionNumber, input) {
10 this, input);
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t056lexer2.g 3 a : A EOF {this.xlog(this.input);} ;
t056lexer5.g 3 a : A {this.xlog(this.input);} ;

Completed in 590 milliseconds

1 2 3 4 5 67 8 91011>>