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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/filter/
UntrustedInput.java 5 * Wrapper class to mark untrusted input.
10 protected Object input; field in class:UntrustedInput
14 * @param input the untrusted input Object
16 public UntrustedInput(Object input)
18 this.input = input;
22 * Returns the untrusted input as Object.
23 * @return the <code>input</code> as Object
27 return input;
    [all...]
Filter.java 8 * Runs the filter on the input String and returns the filtered String
9 * @param input input String
12 public String doFilter(String input);
  /dalvik/tools/dmtracedump/
dmtracedump.pl 8 $input = $_;
9 $input =~ s/\.data$//;
11 $output = "$input.html";
13 print("dmtracedump -h -p $input > $output\n");
14 system("dmtracedump -h -p '$input' > '$output'");
  /external/apache-http/src/org/apache/http/conn/util/
InetAddressUtils.java 56 public static boolean isIPv4Address(final String input) {
57 return IPV4_PATTERN.matcher(input).matches();
60 public static boolean isIPv6StdAddress(final String input) {
61 return IPV6_STD_PATTERN.matcher(input).matches();
64 public static boolean isIPv6HexCompressedAddress(final String input) {
65 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
68 public static boolean isIPv6Address(final String input) {
69 return isIPv6StdAddress(input) || isIPv6HexCompressedAddress(input);
  /packages/apps/Email/src/org/apache/commons/io/input/
DemuxInputStream.java 17 package org.apache.commons.io.input;
37 * @param input the stream to bind
40 public InputStream bindStream( InputStream input )
43 m_streams.set( input );
55 InputStream input = getStream(); local
56 if( null != input )
58 input.close();
71 InputStream input = getStream(); local
72 if( null != input )
74 return input.read();
    [all...]
  /external/webkit/WebCore/css/
themeWin.css 35 input:not([type]),
36 input[type="text"],
37 input[type="password"] {
41 input[type="search"] {
45 input[type="checkbox"] {
49 input[type="radio"] {
54 FIXME: Figure out how to support legacy input rendering.
55 FIXME: Add input[type="file"] once we figure out our file inputs.
56 FIXME: Add input[type="image"] once we figure out our image inputs.
57 FIXME: We probably do the wrong thing if you put an invalid input type
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
URISyntaxException.java 30 private String input; field in class:URISyntaxException
39 * @param input
46 * if one of the arguments {@code input} or {@code reason} is
51 public URISyntaxException(String input, String reason, int index) {
54 if (input == null || reason == null) {
62 this.input = input;
70 *@param input
75 * if one of the arguments {@code input} or {@code reason} is
78 public URISyntaxException(String input, String reason)
    [all...]
  /external/qemu/
feature_to_c.sh 37 for input; do
38 arrayname=xml_feature_`echo $input | sed 's,.*/,,; s/[-.]/_/g'`
64 }' < $input >> $output
71 for input; do
72 basename=`echo $input | sed 's,.*/,,'`
73 arrayname=xml_feature_`echo $input | sed 's,.*/,,; s/[-.]/_/g'`
  /frameworks/base/core/java/android/security/
Md5MessageDigest.java 32 public byte[] digest(byte[] input)
34 update(input);
39 public native void update(byte[] input);
Sha1MessageDigest.java 32 public byte[] digest(byte[] input)
34 update(input);
39 public native void update(byte[] input);
  /external/icu4c/i18n/
csrucode.cpp 33 const uint8_t *input = textIn->fRawInput; local
35 if (input[0] == 0xFE && input[1] == 0xFF) {
55 const uint8_t *input = textIn->fRawInput; local
57 if (input[0] == 0xFF && input[1] == 0xFE && (input[2] != 0x00 || input[3] != 0x00)) {
72 const uint8_t *input = textIn->fRawInput; local
79 if (getChar(input, 0) == 0x0000FEFFUL)
    [all...]
  /frameworks/base/core/java/android/view/animation/
Interpolator.java 30 * @param input A value between 0 and 1.0 indicating our current point
37 float getInterpolation(float input);
LinearInterpolator.java 34 public float getInterpolation(float input) {
35 return input;
  /ndk/samples/hello-neon/jni/
helloneon-intrinsics.h 20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int kernelSize);
  /external/webkit/WebCore/bindings/js/
JSHTMLInputElementCustom.cpp 38 static bool needsGmailQuirk(HTMLInputElement* input)
40 Document* document = input->document();
59 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
60 const AtomicString& type = input->type();
65 if (type == url && needsGmailQuirk(input))
72 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
73 if (!input->canHaveSelection())
76 return jsNumber(exec, input->selectionStart());
81 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
82 if (!input->canHaveSelection()
90 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
99 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
108 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
    [all...]
  /dalvik/libcore/crypto/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...]
  /dalvik/libcore/security/src/main/java/java/security/
MessageDigestSpi.java 47 * @param input
51 protected abstract void engineUpdate(byte input);
56 * @param input
59 * the index of the first byte in {@code input} to update from.
61 * the number of bytes in {@code input} to update from.
64 * {@code input}.
66 protected abstract void engineUpdate(byte[] input, int offset, int len);
69 * Updates this {@code MessageDigestSpi} using the given {@code input}.
71 * @param input
74 protected void engineUpdate(ByteBuffer input) {
    [all...]
  /external/ppp/pppd/plugins/radius/
md5.c 6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen)
11 MD5_Update (&context, input, inlen);
  /frameworks/base/cmds/input/
Android.mk 7 LOCAL_MODULE := input
11 ALL_PREBUILT += $(TARGET_OUT)/bin/input
12 $(TARGET_OUT)/bin/input : $(LOCAL_PATH)/input | $(ACP)
  /external/stlport/test/unit/
divides_test.cpp 30 int input [3] = { 2, 3, 4 }; local
31 int result = accumulate(input, input + 3, 48, divides<int>());
times_test.cpp 31 int input [4] = { 1, 5, 7, 2 }; local
32 int total = accumulate(input, input + 4, 1, multiplies<int>());
  /packages/apps/Email/src/org/apache/commons/io/
CopyUtils.java 82 * Method Input Output Dependency
132 * @param input the byte array to read from
136 public static void copy(byte[] input, OutputStream output)
138 output.write(input);
149 * @param input the byte array to read from
153 public static void copy(byte[] input, Writer output)
155 ByteArrayInputStream in = new ByteArrayInputStream(input);
163 * @param input the byte array to read from
171 byte[] input,
175 ByteArrayInputStream in = new ByteArrayInputStream(input);
    [all...]
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
IISDecodingImageSource.java 56 private ImageInputStream input; field in class:IISDecodingImageSource.IISToInputStreamWrapper
58 public IISToInputStreamWrapper(ImageInputStream input) {
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.markSupported(). However, if
    [all...]
  /frameworks/base/core/java/android/bluetooth/
AtParser.java 141 * Strip input of whitespace and force Uppercase - except sections inside
145 static private String clean(String input) {
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.length() if not found
252 String input = clean(raw_input); local
    [all...]
  /external/elfutils/src/
ylwrap 26 # ylwrap INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]...
27 # * INPUT is the input file
34 # The input.
35 input="$1"
37 case "$input" in
43 input="`pwd`/$input"
74 $prog ${1+"$@"} "$input"
89 # The directory holding the input
    [all...]

Completed in 949 milliseconds

1 2 3 4 5 6 7 8 91011>>