/frameworks/base/services/java/com/android/server/input/ |
InputApplicationHandle.java | 17 package com.android.server.input; 20 * Functions as a handle for an application that can receive input. 21 * Enables the native input dispatcher to refer indirectly to the window manager's 26 // Pointer to the native input application handle.
|
/frameworks/compile/mclinker/include/mcld/LD/ |
GroupReader.h | 43 /// readGroup - handle the input sub-tree wich its root is pRoot 50 /// ArchiveListEntry - record the Archive and the corresponding input iterator 54 : archive(pArchive), input(pIterator) { 57 Module::input_iterator input; member in struct:mcld::GroupReader::ArchiveListEntry
|
/frameworks/compile/mclinker/include/mcld/MC/ |
InputBuilder.h | 34 * InputBuilder build input tree and inputs. 49 // ----- input tree operations ----- // 55 // ----- root of input tree ----- // 62 unsigned int pType = Input::Unknown); 64 // ----- input operations ----- // 65 Input* createInput(const std::string& pName, 67 unsigned int pType = Input::Unknown, 70 bool setContext(Input& pInput, bool pCheck = true); 72 bool setMemory(Input& pInput, 76 bool setMemory(Input& pInput, void* pMemBuffer, size_t pSize) 115 Input* input = createInput(pName, pPath, pType); local 130 Input* input = createInput(pName, pPath, pType); local [all...] |
/frameworks/compile/mclinker/lib/LD/ |
GroupReader.cpp | 51 Module::input_iterator input = --pRoot; local 54 // take the end of the whole input tree for conventience. 58 while (input != input_end) { 61 if ((*input)->type() == Input::Script || 62 (*input)->type() == Input::Archive || 63 (*input)->type() == Input::External) { 64 ++input; [all...] |
/frameworks/compile/mclinker/unittests/ |
InputTreeTest.cpp | 108 Input* input = m_pAlloc->produce("FileSpec", "path1"); local 109 m_pTestee->insert<InputTree::Inclusive>(node, *input); 115 Input* input = m_pAlloc->produce("FileSpec", "path1"); local 116 m_pTestee->insert<InputTree::Inclusive>(node, *input); 139 Input* input = m_pAlloc->produce("FileSpec", "path1"); local 140 m_pTestee->insert(node, InputTree::Afterward, *input); 155 Input* input = m_pAlloc->produce("111", "/") local [all...] |
/libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/ |
ASCCharsetTest.java | 41 String input = "ab\u5D14\u654F"; local 45 internalTestEncode(input, output); 54 byte[] input = new byte[] { 97, 98, 63, 63 }; 56 internalTestDecode(input, output);
|
ISOCharsetTest.java | 40 String input = "ab\u5D14\u654F"; local 44 internalTestEncode(input, output); 53 byte[] input = new byte[] { 97, 98, 63, 63 }; 55 internalTestDecode(input, output);
|
UTF16BECharsetTest.java | 38 String input = "ab\u5D14\u654F"; local 40 internalTestEncode(input, output); 49 byte[] input = new byte[] { 0, 97, 0, 98, 93, 20, 101, 79 }; 51 internalTestDecode(input, output);
|
UTF16LECharsetTest.java | 38 String input = "ab\u5D14\u654F"; local 40 internalTestEncode(input, output); 49 byte[] input = new byte[] { 97, 0, 98, 0, 20, 93, 79, 101 }; 51 internalTestDecode(input, output);
|
UTF8CharsetTest.java | 40 byte[] input = new byte[] { 97, 98, -27, -76, -108, -26, -107, -113 }; 42 internalTestDecode(input, output); 51 String input = "ab\u5D14\u654F"; local 53 internalTestEncode(input, output);
|
/libcore/luni/src/main/java/java/net/ |
URISyntaxException.java | 28 private String input; field in class:URISyntaxException 37 * @param input 44 * if one of the arguments {@code input} or {@code reason} is 49 public URISyntaxException(String input, String reason, int index) { 52 if (input == null) { 53 throw new NullPointerException("input == null"); 62 this.input = input; 70 *@param input 75 * if one of the arguments {@code input} or {@code reason} i [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
unary_test.cpp | 76 int input [3] = { -1, -4, -16 }; local 79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>())); 89 int input [3] = { -1, -4, -16 }; local 92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
|
/ndk/tests/device/test-stlport/unit/ |
unary_test.cpp | 76 int input [3] = { -1, -4, -16 }; local 79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>())); 89 int input [3] = { -1, -4, -16 }; local 92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
AutoCloseInputStream.java | 17 package org.apache.commons.io.input;
24 * end of input has been reached or when the stream is explicitly closed.
40 * Creates an automatically closing proxy for the given input stream.
42 * @param in underlying input stream
49 * Closes the underlying input stream and replaces the reference to it
53 * of input has been reached.
56 * underlying input stream is closed and discarded only once when this
59 * @throws IOException if the underlying input stream can not be closed
67 * Reads and returns a single byte from the underlying input stream.
83 * Reads and returns bytes from the underlying input stream to the given [all...] |
CountingInputStream.java | 17 package org.apache.commons.io.input;
23 * A decorating input stream that counts the number of bytes that have passed
|
/sdk/testapps/basicJar/src/com/android/tests/basicjar/ |
BasicJar.java | 11 InputStream input = BasicJar.class.getResourceAsStream("/com/android/tests/basicjar/basicJar.txt"); local 12 if (input == null) { 18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
|
/sdk/testapps/basicJar2/src/com/android/tests/basicjar2/ |
BasicJar2.java | 11 InputStream input = BasicJar2.class.getResourceAsStream("/com/android/tests/basicjar2/basicJar2.txt"); local 12 if (input == null) { 18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
|
/sdk/testapps/basicJar3/src/com/android/tests/basicjar3/ |
BasicJar3.java | 11 InputStream input = BasicJar3.class.getResourceAsStream("/com/android/tests/basicjar3/basicJar3.txt"); local 12 if (input == null) { 18 reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
|
/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/libs/ |
basicJar_not_in_classpath.jar | |
/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"));
|