Searched refs:input (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/base/core/java/android/security/
H A DMd5MessageDigest.java32 public byte[] digest(byte[] input) argument
34 update(input);
39 public native void update(byte[] input); argument
H A DSha1MessageDigest.java32 public byte[] digest(byte[] input) argument
34 update(input);
39 public native void update(byte[] input); argument
H A DMessageDigest.java54 public abstract void update(byte[] input); argument
58 * Produces a message digest for the given input.
60 * @param input The message to encrypt.
63 public abstract byte[] digest(byte[] input); argument
/frameworks/base/core/java/android/view/animation/
H A DInterpolator.java30 * @param input A value between 0 and 1.0 indicating our current point
37 float getInterpolation(float input); argument
H A DLinearInterpolator.java34 public float getInterpolation(float input) { argument
35 return input;
H A DAccelerateDecelerateInterpolator.java35 public float getInterpolation(float input) { argument
36 return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f;
H A DAccelerateInterpolator.java60 public float getInterpolation(float input) { argument
62 return input * input;
64 return (float)Math.pow(input, mDoubleFactor);
H A DDecelerateInterpolator.java52 public float getInterpolation(float input) { argument
54 return (float)(1.0f - (1.0f - input) * (1.0f - input));
56 return (float)(1.0f - Math.pow((1.0f - input), 2 * mFactor));
H A DCycleInterpolator.java42 public float getInterpolation(float input) { argument
43 return (float)(Math.sin(2 * mCycles * Math.PI * input));
/frameworks/base/cmds/input/
H A DAndroid.mk7 LOCAL_MODULE := input
11 ALL_PREBUILT += $(TARGET_OUT)/bin/input
12 $(TARGET_OUT)/bin/input : $(LOCAL_PATH)/input | $(ACP)
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
H A DIISDecodingImageSource.java56 private ImageInputStream input; field in class:IISDecodingImageSource.IISToInputStreamWrapper
58 public IISToInputStreamWrapper(ImageInputStream input) { argument
59 this.input=input;
64 return input.read();
69 return input.read(b);
74 return input.read(b, off, len);
79 return input.skipBytes(n);
87 // This is an error in Harmony. Not all input streams
89 // There should be an input
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DAtParser.java141 * Strip input of whitespace and force Uppercase - except sections inside
145 static private String clean(String input) { argument
146 StringBuilder out = new StringBuilder(input.length());
148 for (int i = 0; i < input.length(); i++) {
149 char c = input.charAt(i);
151 int j = input.indexOf('"', i + 1 ); // search for closing "
153 out.append(input.substring(i, input.length()));
157 out.append(input.substring(i, j + 1));
173 * Return input
175 findChar(char ch, String input, int fromIndex) argument
195 generateArgs(String input) argument
219 findEndExtendedName(String input, int index) argument
[all...]
/frameworks/base/awt/javax/imageio/spi/
H A DImageInputStreamSpi.java37 * The input class.
56 * the input class.
64 * Gets an input Class object that represents class or interface that must
65 * be implemented by an input source.
67 * @return the input class.
99 * input object should be an instance of the class returned by the
103 * @param input
104 * the input Object.
113 public abstract ImageInputStream createInputStreamInstance(Object input, boolean useCache, argument
118 * input objec
128 createInputStreamInstance(Object input) argument
[all...]
/frameworks/base/core/java/android/util/
H A DBase64.java76 * Encode/decode another block of input data. this.output is
85 * @return true if the input so far is good; false if some
86 * error has been detected in the input stream..
88 public abstract boolean process(byte[] input, int offset, int len, boolean finish); argument
92 * could produce for the given number of input bytes. This may
103 * Decode the Base64-encoded data in input and return the data in
109 * @param str the input String to decode, which is converted to
114 * @throws IllegalArgumentException if the input contains
122 * Decode the Base64-encoded data in input and return the data in
128 * @param input th
135 decode(byte[] input, int flags) argument
155 decode(byte[] input, int offset, int len, int flags) argument
263 process(byte[] input, int offset, int len, boolean finish) argument
454 encodeToString(byte[] input, int flags) argument
475 encodeToString(byte[] input, int offset, int len, int flags) argument
493 encode(byte[] input, int flags) argument
509 encode(byte[] input, int offset, int len, int flags) argument
603 process(byte[] input, int offset, int len, boolean finish) argument
[all...]
/frameworks/base/awt/org/apache/harmony/x/imageio/spi/
H A DInputStreamIISSpi.java49 public ImageInputStream createInputStreamInstance(Object input, boolean useCache, File cacheDir) throws IOException { argument
50 if (input instanceof InputStream) {
52 return new FileCacheImageInputStream((InputStream) input, cacheDir);
54 return new MemoryCacheImageInputStream((InputStream) input);
H A DFileIISSpi.java41 public ImageInputStream createInputStreamInstance(Object input, boolean useCache, argument
43 if (File.class.isInstance(input)) {
44 return new FileImageInputStream((File) input);
46 throw new IllegalArgumentException("input is not an instance of java.io.File");
H A DRAFIISSpi.java41 public ImageInputStream createInputStreamInstance(Object input, boolean useCache, argument
43 if (RandomAccessFile.class.isInstance(input)) {
44 return new FileImageInputStream((RandomAccessFile) input);
47 "input is not an instance of java.io.RandomAccessFile");
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DStkResponseMessage.java39 public void setInput(String input) { argument
40 this.usersInput = input;
H A DCommandParams.java154 Input input = null; field in class:GetInputParams
156 GetInputParams(CommandDetails cmdDet, Input input) { argument
158 this.input = input;
162 if (icon != null && input != null) {
163 input.icon = icon;
/frameworks/base/awt/javax/imageio/
H A DImageIO.java112 * Object should obtain the input source such as File, or InputStream.
114 * @param input
115 * the input Object such as File, or InputStream.
120 public static ImageInputStream createImageInputStream(Object input) throws IOException { argument
122 if (input == null) {
123 throw new IllegalArgumentException("input source cannot be NULL");
131 if (spi.getInputClass().isInstance(input)) {
132 return spi.createInputStreamInstance(input);
188 * input data specified by input Objec
195 getImageReaders(Object input) argument
401 read(File input) argument
421 read(InputStream input) argument
440 read(URL input) argument
675 private Object input; field in class:ImageIO.CanReadFilter
683 CanReadFilter(Object input) argument
[all...]
H A DImageReader.java57 * The input object such as ImageInputStream.
59 protected Object input; field in class:ImageReader
67 * The ignore metadata flag indicates whether current input source has been
118 * Gets the format name of this input source.
120 * @return the format name of this input source.
138 * Sets the specified Object as the input source of this ImageReader.
140 * @param input
141 * the input source, it can be an ImageInputStream or other
150 public void setInput(Object input, boolean seekForwardOnly, boolean ignoreMetadata) { argument
151 if (input !
169 isSupported(Object input) argument
193 setInput(Object input, boolean seekForwardOnly) argument
204 setInput(Object input) argument
[all...]
/frameworks/base/core/java/android/text/
H A DAndroidCharacter.java49 * @param input the character to measure
50 * @return the East Asian Width for input
52 public native static int getEastAsianWidth(char input); argument
64 * @param src character array of input to measure
/frameworks/base/libs/surfaceflinger_client/
H A DLayerState.cpp44 status_t layer_state_t::read(const Parcel& input) argument
47 size_t len = input.readInt32();
48 void const* buf = input.readInplace(len);
57 input.read(this, size);
/frameworks/base/tests/CoreTests/android/core/
H A DZipStreamTest.java99 byte[] input = makeSampleFile(i);
105 out.write(input, 0, input.length);
122 byte[] input = makeSampleFile(i);
131 out.write(input, 0, input.length);
H A DGZIPStreamTest.java88 byte[] input = makeSampleFile(1);
89 out.write(input, 0, input.length);

Completed in 267 milliseconds

1234