Home
last modified time | relevance | path

Searched defs:input (Results 1 – 25 of 78) sorted by relevance

1234

/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DCopyUtils.java137 public static void copy(byte[] input, OutputStream output) in copy()
154 public static void copy(byte[] input, Writer output) in copy()
172 byte[] input, in copy()
194 InputStream input, in copy()
219 Reader input, in copy()
245 InputStream input, in copy()
263 InputStream input, in copy()
284 Reader input, in copy()
307 String input, in copy()
328 public static void copy(String input, Writer output) in copy()
DIOUtils.java139 public static void closeQuietly(Reader input) { in closeQuietly()
175 public static void closeQuietly(InputStream input) { in closeQuietly()
216 public static byte[] toByteArray(InputStream input) throws IOException { in toByteArray()
234 public static byte[] toByteArray(Reader input) throws IOException { in toByteArray()
257 public static byte[] toByteArray(Reader input, String encoding) in toByteArray()
277 public static byte[] toByteArray(String input) throws IOException { in toByteArray()
338 public static char[] toCharArray(Reader input) throws IOException { in toCharArray()
358 public static String toString(InputStream input) throws IOException { in toString()
380 public static String toString(InputStream input, String encoding) in toString()
398 public static String toString(Reader input) throws IOException { in toString()
[all …]
DEndianUtils.java298 public static short readSwappedShort(InputStream input) in readSwappedShort()
312 public static int readSwappedUnsignedShort(InputStream input) in readSwappedUnsignedShort()
345 public static int readSwappedInteger(InputStream input) in readSwappedInteger()
366 public static long readSwappedUnsignedInteger(InputStream input) in readSwappedUnsignedInteger()
410 public static long readSwappedLong(InputStream input) in readSwappedLong()
440 public static float readSwappedFloat(InputStream input) in readSwappedFloat()
466 public static double readSwappedDouble(InputStream input) in readSwappedDouble()
478 private static int read(InputStream input) in read()
/packages/services/Telephony/src/com/android/phone/
DSpecialCharSequenceMgr.java74 static boolean handleChars(Context context, String input) { in handleChars()
101 String input, in handleChars()
127 String input, in handleCharsForLockedDevice()
154 static private boolean handleSecretCode(Context context, String input) { in handleSecretCode()
167 static private boolean handleAdnEntry(Context context, String input) { in handleAdnEntry()
196 static private boolean handlePinEntry(Context context, String input, in handlePinEntry()
221 String input) { in handleIMEIDisplay()
247 private static boolean handleRegulatoryInfoDisplay(Context context, String input) { in handleRegulatoryInfoDisplay()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
DDemuxInputStream.java40 public InputStream bindStream( InputStream input ) in bindStream()
56 InputStream input = getStream(); in close() local
73 InputStream input = getStream(); in read() local
DTeeInputStream.java59 public TeeInputStream(InputStream input, OutputStream branch) { in TeeInputStream()
75 InputStream input, OutputStream branch, boolean closeBranch) { in TeeInputStream()
/packages/apps/Contacts/src/com/android/contacts/util/
DMoreMath.java27 public static int clamp(int input, int lowerBound, int upperBound) { in clamp()
37 public static float clamp(float input, float lowerBound, float upperBound) { in clamp()
47 public static double clamp(double input, double lowerBound, double upperBound) { in clamp()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DOpenWnnClauseConverterJAJP.java125 public Iterator convert(String input) { in convert()
151 public WnnSentence consecutiveClauseConvert(String input) { in consecutiveClauseConvert()
236 private boolean consecutiveClauseConvert(LinkedList resultList, String input) { in consecutiveClauseConvert()
256 …private boolean singleClauseConvert(LinkedList clauseList, String input, WnnPOS terminal, boolean … in singleClauseConvert()
321 …private boolean addClause(LinkedList<WnnClause> clauseList, String input, WnnWord stem, WnnWord fz… in addClause()
397 private ArrayList<WnnWord> getAncillaryPattern(String input) { in getAncillaryPattern()
460 private ArrayList<WnnWord> getIndependentWords(String input, boolean all) { in getIndependentWords()
526 private void addAutoGeneratedCandidates(String input, ArrayList wordList, boolean all) { in addAutoGeneratedCandidates()
539 private WnnClause defaultClause(String input) { in defaultClause()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
DStreamUtils.java31 public static boolean byteToIntArray(int[] output, byte[] input, ByteOrder endianness) { in byteToIntArray()
50 public static int[] byteToIntArray(byte[] input, ByteOrder endianness) { in byteToIntArray()
59 public static int[] byteToIntArray(byte[] input) { in byteToIntArray()
/packages/apps/Dialer/src/com/android/dialer/
DSpecialCharSequenceMgr.java91 public static boolean handleChars(Context context, String input, EditText textField) { in handleChars()
132 static boolean handleSecretCode(Context context, String input) { in handleSecretCode()
152 static boolean handleAdnEntry(final Context context, String input, EditText textField) { in handleAdnEntry()
267 static boolean handlePinEntry(Context context, final String input) { in handlePinEntry()
303 static boolean handleDeviceIdDisplay(Context context, String input) { in handleDeviceIdDisplay()
327 private static boolean handleRegulatoryInfoDisplay(Context context, String input) { in handleRegulatoryInfoDisplay()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DWnnSentence.java38 public WnnSentence(String input, ArrayList<WnnClause> clauses) { in WnnSentence()
82 public WnnSentence(String input, WnnClause clause) { in WnnSentence()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/unit/
DPhoneAccountRegistrarTest.java64 PhoneAccountHandle input = new PhoneAccountHandle(new ComponentName("pkg0", "cls0"), "id0"); in testPhoneAccountHandle() local
77 PhoneAccount input = makeQuickAccountBuilder("id0", 0) in testPhoneAccount() local
87 PhoneAccountRegistrar.State input = makeQuickState(); in testState() local
266 T input, in roundTripXml()
/packages/apps/Exchange/tests/src/com/android/exchange/utility/
DSimpleIcsWriterTests.java63 String input = stringOfLength(i) + last; in testWriteLine() local
80 private void checkWriteLine(String input) { in checkWriteLine()
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DBinaryDictOffdeviceUtils.java77 public static void copy(final InputStream input, final OutputStream output) throws IOException { in copy()
137 final InputStream input = Compress.getUncompressedStream( in tryGetUncompressedFile()
160 final InputStream input = Crypt.getDecryptedStream( in tryGetDecryptedFile()
/packages/apps/Settings/src/com/android/settings/wifi/
DWifiAPITest.java108 final EditText input = new EditText(this); in onPreferenceClick() local
128 final EditText input = new EditText(this); in onPreferenceClick() local
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
DPredicate.java44 boolean apply(T input); in apply()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DHanziToPinyin.java124 public String transliterate(final String input) { in transliterate()
136 public ArrayList<Token> getTokens(final String input) { in getTokens()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DInputLogicTestsReorderingMyanmar.java214 final int[] input = step.first; in doMyanmarTest() local
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DLicensesActivity.java51 InputStream input = null; in onCreate() local
/packages/apps/Camera2/src/com/android/camera/util/
DGusterpolator.java61 public float getInterpolation(float input) { in getInterpolation()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DStyleUtils.java46 public static void stripUnderlinesAndLinkUrls(Spannable input, in stripUnderlinesAndLinkUrls()
/packages/apps/Gallery/src/com/android/camera/gallery/
DBaseImage.java109 InputStream input = mContentResolver.openInputStream(mUri); in fullSizeImageData() local
141 ParcelFileDescriptor input = null; in setupDimension() local
/packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
DImgSrcReplacementTest.java29 private static void replace(final String input, final String expectedOutput) { in replace()
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DSoftLandingInterpolator.java48 public float getInterpolation(float input) { in getInterpolation()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DDownloadUtils.java67 InputStream input = null; in download() local

1234