Searched defs:in (Results 201 - 225 of 1569) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/bytecode/
H A DAnnotationDefaultAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
40 * are stored as annotation default attributes in <code>Author.class</code>.
97 AnnotationDefaultAttribute(ConstPool cp, int n, DataInputStream in) argument
100 super(cp, n, in);
H A DConstantAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 ConstantAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
H A DEnclosingMethodAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 EnclosingMethodAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
H A DLocalVariableTypeAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
41 LocalVariableTypeAttribute(ConstPool cp, int n, DataInputStream in) argument
44 super(cp, n, in);
H A DSourceFileAttribute.java6 * 1.1 (the "License"); you may not use this file except in compliance with
31 SourceFileAttribute(ConstPool cp, int n, DataInputStream in) argument
34 super(cp, n, in);
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DResponder.java36 public Responder(JmDNSImpl jmDNSImpl, DNSIncoming in, int port) { argument
38 this._in = in;
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetConfig.java5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
61 public void loadText(InputStream in) throws IOException{ argument
62 Scanner scan = new Scanner(in);
/external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
H A DBlockLanguageParser.java40 private void load(InputStream in) throws IOException{ argument
43 reader = new InputStreamReader(in);
87 public static List<Statement> parse(InputStream in) throws IOException { argument
89 parser.load(in);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
H A DUrlAssetInfo.java20 private InputStream in; field in class:UrlAssetInfo
27 InputStream in = conn.getInputStream();
30 if (in == null){
33 return new UrlAssetInfo(assetManager, key, url, in);
37 private UrlAssetInfo(AssetManager assetManager, AssetKey key, URL url, InputStream in) throws IOException { argument
40 this.in = in;
44 return in != null;
49 if (in != null){
51 InputStream in2 = in;
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DPFMLoader.java5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
76 private Image load(InputStream in, boolean needYFlip) throws IOException{ argument
79 String fmtStr = readString(in);
88 String sizeStr = readString(in);
91 throw new IOException("Invalid size syntax in PFM file");
97 throw new IOException("Invalid size specified in PFM file");
99 String scaleStr = readString(in);
121 read = in
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DFilters.java5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
48 * Creates a filter that returns true for any value in the specified
51 public static <T> Filter<T> in( T... values ) method in class:Filters
53 return in( new HashSet<T>(Arrays.asList(values)) );
57 * Creates a filter that returns true for any value in the specified
60 public static <T> Filter<T> in( Collection<? extends T> collection ) method in class:Filters
66 * Creates a filter that returns true for any value NOT in the specified
68 * of calling not(in(value
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/modulator/
H A DCatRom2.java6 * Redistribution and use in source and binary forms, with or without
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
67 public float value(final float... in) { argument
68 if (in[0] >= 4) {
71 in[0] = in[0] * this.sampleRate + 0.5f;
72 int i = ShaderUtils.floor(in[0]);
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DSimpleEscapingFunction.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 * one where each character in the input is treated independently and there is no runtime state. The
85 public void filter(String in, Appendable out) throws IOException { argument
86 final int len = in.length();
91 // (without optimization it accounts for > 50% of the time in this call)
92 final char chr = in.charAt(pos);
98 out.append(in, start, pos);
108 out.append(in, start, pos);
H A DStyleEscapeFunction.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * This function will be used to sanitize variables in 'style' attributes. It strips out any
30 * characters not in the whitelist.
81 public void filter(String in, Appendable out) throws IOException { argument
82 for (char c : in.toCharArray()) {
H A DUrlEscapeFunction.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
46 public void filter(String in, Appendable out) throws IOException { argument
48 out.append(URLEncoder.encode(in, encoding));
50 // The sanity check in the constructor should have caught this.
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DBaseUrlValidateFunction.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 * (and if the URI appears to be relative, not even then). Note in particular that this function
41 public void filter(String in, Appendable out) throws IOException { argument
42 if (!isValidUri(in)) {
46 applyEscaping(in, out);
55 protected abstract void applyEscaping(String in, Appendable out) throws IOException; argument
61 protected boolean isValidUri(String in) { argument
63 String maybeScheme = toLowerCaseAsciiOnly(in.substring(0, Math.min(in
[all...]
H A DHtmlUrlValidateFunction.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 * isUnquoted should be true if the URL appears in an unquoted attribute. like: &lt;a href=&lt;?cs
41 protected void applyEscaping(String in, Appendable out) throws IOException { argument
42 htmlEscape.filter(in, out);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DMetadataManager.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 * additional data files such as PhoneNumberAlternateFormats, but in the future it is envisaged it
57 private static void close(InputStream in) { argument
58 if (in != null) {
60 in.close();
70 ObjectInputStream in = null;
72 in = new ObjectInputStream(source);
74 alternateFormats.readExternal(in);
81 close(in);
[all...]
/external/linux-tools-perf/util/
H A Dpager.c15 * Work around bug in "less" by not starting it until we
18 fd_set in; local
20 FD_ZERO(&in);
21 FD_SET(0, &in);
22 select(1, &in, NULL, &in, NULL);
74 pager_process.in = -1;
81 dup2(pager_process.in, 1);
83 dup2(pager_process.in, 2);
84 close(pager_process.in);
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv20_state_frag.c7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial
60 uint64_t in; local
63 nv10_get_final_combiner(ctx, &in, &n);
66 PUSH_DATA (push, in);
67 PUSH_DATA (push, in >> 32);
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
65 private HttpMessageDecoder(HttpResponseMessage in, String encoding) argument
67 super(in.method, in.url);
68 this.headers.addAll(in.headers);
71 InputStream body = in.getBody();
82 this.in = in;
85 private final HttpResponseMessage in; field in class:HttpMessageDecoder
[all...]
/external/openssh/openbsd-compat/
H A Dbindresvport.c10 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
39 #include <netinet/in.h>
57 struct sockaddr_in *in; local
77 in = (struct sockaddr_in *)sa;
79 portp = &in->sin_port;
106 /* Terminate on errors, except "address already in use" */
/external/openssh/
H A Drsa.c10 * incompatible with the protocol description in the RFC file, it must be
16 * Redistribution and use in source and binary forms, with or without
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
57 * RSA in 3 lines of perl by Adam Back <aba@atlax.ex.ac.uk>, 1995, as
75 rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key) argument
86 ilen = BN_num_bytes(in);
88 BN_bn2bin(in, inbuf);
104 rsa_private_decrypt(BIGNUM *out, BIGNUM *in, RSA *key) argument
112 ilen = BN_num_bytes(in);
[all...]
/external/openssl/apps/
H A Dnseq.c8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
73 BIO *in = NULL, *out = NULL; local
84 else if (!strcmp (*args, "-in")) {
102 BIO_printf (bio_err, "-in file input file\n");
109 if (!(in
[all...]
H A Dpkeyparam.c8 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
72 BIO *in = NULL, *out = NULL; local
92 if (!strcmp (*args, "-in"))
132 BIO_printf(bio_err, "-in file input file\n");
148 if (!(in
[all...]

Completed in 396 milliseconds

1234567891011>>