HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 51 - 75 of 804) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
switch-003.js 35 function SwitchTest( input, expect ) {
38 switch ( input ) {
51 "switch with no breaks: input is " + input,
  /frameworks/base/awt/javax/imageio/spi/
ImageInputStreamSpi.java 37 * 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,
118 * input object should be an instance of the class returned by getInputClas
    [all...]
  /external/icu4c/io/
uscanf_p.c 316 u_scanf_skip_leading_ws(UFILE *input,
323 /* skip all leading ws in the input */
324 while( (isNotEOF = ufile_getch(input, &c)) && (c == pad || u_isWhitespace(c)) )
329 /* put the final character back on the input */
331 u_fungetc(c, input);
338 u_scanf_skip_leading_positive_sign(UFILE *input,
357 /* skip all leading ws in the input */
358 while( (isNotEOF = ufile_getch(input, &c)) && (count < symbolLen && c == plusSymbol[count]) )
363 /* put the final character back on the input */
365 u_fungetc(c, input);
    [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
1294 xmlParserInputPtr input; local
1360 xmlParserInputPtr input; local
1421 xmlParserInputPtr input; local
1520 xmlParserInputPtr input; local
1689 xmlParserInputPtr input; local
    [all...]
  /frameworks/base/core/java/android/util/
Base64.java 76 * 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);
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 the input array to decod
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
alternative_32.h 30 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input)
31 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)
  /bionic/libc/kernel/common/linux/
keychord.h 15 #include <linux/input.h>
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
ASCCharsetTest.java 53 String input = "ab\u5D14\u654F"; local
57 internalTestEncode(input, output);
72 byte[] input = new byte[] { 97, 98, 63, 63 };
74 internalTestDecode(input, output);
ISOCharsetTest.java 53 String input = "ab\u5D14\u654F"; local
57 internalTestEncode(input, output);
74 byte[] input = new byte[] { 97, 98, 63, 63 };
76 internalTestDecode(input, output);
UTF16BECharsetTest.java 51 String input = "ab\u5D14\u654F"; local
53 internalTestEncode(input, output);
68 byte[] input = new byte[] { 0, 97, 0, 98, 93, 20, 101, 79 };
70 internalTestDecode(input, output);
UTF16LECharsetTest.java 51 String input = "ab\u5D14\u654F"; local
53 internalTestEncode(input, output);
68 byte[] input = new byte[] { 97, 0, 98, 0, 20, 93, 79, 101 };
70 internalTestDecode(input, output);
UTF8CharsetTest.java 51 byte[] input = new byte[] { 97, 98, -27, -76, -108, -26, -107, -113 };
53 internalTestDecode(input, output);
68 String input = "ab\u5D14\u654F"; local
70 internalTestEncode(input, output);
  /external/kernel-headers/original/linux/
keychord.h 2 * Key chord input driver
21 #include <linux/input.h>
  /external/webkit/WebCore/platform/image-encoders/skia/
PNGImageEncoder.h 50 static bool encode(const unsigned char* input, const IntSize& size, int bytesPerRow, WTF::Vector<unsigned char>* output);
  /external/webkit/WebKitTools/DumpRenderTree/win/
MD5.h 42 void MD5_Update(MD5_CTX*, unsigned char* input, unsigned length);
  /frameworks/base/awt/org/apache/harmony/x/imageio/spi/
InputStreamIISSpi.java 49 public ImageInputStream createInputStreamInstance(Object input, boolean useCache, File cacheDir) throws IOException {
50 if (input instanceof InputStream) {
52 return new FileCacheImageInputStream((InputStream) input, cacheDir);
54 return new MemoryCacheImageInputStream((InputStream) input);
  /frameworks/base/core/java/android/view/animation/
AccelerateInterpolator.java 60 public float getInterpolation(float input) {
62 return input * input;
64 return (float)Math.pow(input, mDoubleFactor);
DecelerateInterpolator.java 52 public float getInterpolation(float input) {
54 return (float)(1.0f - (1.0f - input) * (1.0f - input));
56 return (float)(1.0f - Math.pow((1.0f - input), 2 * mFactor));
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
keychord.h 15 #include <linux/input.h>
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
keychord.h 15 #include <linux/input.h>
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
keychord.h 15 #include <linux/input.h>
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
alternative_32.h 30 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input)
31 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
keychord.h 15 #include <linux/input.h>
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
keychord.h 15 #include <linux/input.h>
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
alternative_32.h 30 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input)
31 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)

Completed in 1879 milliseconds

1 23 4 5 6 7 8 91011>>