Searched defs:in (Results 151 - 175 of 1566) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dstring_utils_unittest.cc3 // found in the LICENSE file.
69 const char* in = "\\\"\\$\\\\"; local
71 EXPECT_TRUE(CheckExpansionCase(in, out, true));
/external/clang/test/Analysis/diagnostics/
H A Dreport-issues-within-main-file.cpp1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix -analyzer-output=plist-multi-file -analyzer-config report-in-main-source-file=true -analyzer-config path-diagnostics-alternate=false %s -o %t.plist
22 void causeDivByZeroInMain(int in) { argument
24 m = in/m;
34 void causeDivByZeroInMain2(int in) { argument
36 m2 = in/m2;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DLeb128Utils.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
32 * Gets the number of bytes in the unsigned LEB128 encoding of the
35 * @param value the value in question
36 * @return its write size, in bytes
53 * Gets the number of bytes in the signed LEB128 encoding of the
56 * @param value the value in question
57 * @return its write size, in bytes
80 * Reads an signed integer from {@code in}.
82 public static int readSignedLeb128(ByteInput in) { argument
110 readUnsignedLeb128(ByteInput in) argument
[all...]
H A DMutf8.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
22 * Modified UTF-8 as described in the dex file format spec.
30 * Decodes bytes from {@code in} into {@code out} until a delimiter 0x00 is
33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { argument
36 char a = (char) (in.readByte() & 0xff);
44 int b = in.readByte() & 0xff;
50 int b = in.readByte() & 0xff;
51 int c = in.readByte() & 0xff;
/external/e2fsprogs/resize/
H A Dtest_extent.c17 void do_test(FILE *in, FILE *out);
19 void do_test(FILE *in, FILE *out) argument
29 while (!feof(in)) {
30 if (!fgets(buf, sizeof(buf), in))
/external/emma/core/java12/com/vladium/emma/data/
H A DCoverageOptions.java46 * (the factory is in a separate source file to avoid spurious
59 static CoverageOptions readExternal (final DataInput in) argument
62 return new CoverageOptions (in.readBoolean (),
63 in.readBoolean (),
64 in.readBoolean ());
/external/fio/crc/
H A Dmd5.c8 static void md5_transform(uint32_t *hash, uint32_t const *in) argument
17 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
18 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
19 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
20 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
21 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
22 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
23 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
24 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
25 MD5STEP(F1, a, b, c, d, in[
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
H A DBase64.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
34 * as specified in RFC 2045 (http://www.ietf.org/rfc/rfc2045.txt).
38 public static byte[] decode(byte[] in) { argument
39 return decode(in, in.length);
42 public static byte[] decode(byte[] in, int len) { argument
57 chr = in[len-1];
69 // index in the output array
71 // index in th
138 encode(byte[] in, String charsetName) argument
[all...]
/external/guava/guava-gwt/src/com/google/common/collect/
H A DArrayListMultimap_CustomFieldSerializer.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
30 public static void deserialize(SerializationStreamReader in, argument
35 SerializationStreamReader in) throws SerializationException {
38 in, ArrayListMultimap.create());
34 instantiate( SerializationStreamReader in) argument
H A DHashMultimap_CustomFieldSerializer.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
31 public static void deserialize(SerializationStreamReader in, argument
36 SerializationStreamReader in) throws SerializationException {
38 Multimap_CustomFieldSerializerBase.populate(in, HashMultimap.create());
35 instantiate( SerializationStreamReader in) argument
H A DLinkedHashMultimap_CustomFieldSerializer.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
32 public static void deserialize(SerializationStreamReader in, argument
37 SerializationStreamReader in) throws SerializationException {
41 in, LinkedHashMultimap.create());
45 Object key = in.readObject();
46 Object value = in.readObject();
36 instantiate( SerializationStreamReader in) argument
H A DLinkedListMultimap_CustomFieldSerializer.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
32 public static void deserialize(SerializationStreamReader in, argument
37 SerializationStreamReader in) throws SerializationException {
39 int size = in.readInt();
41 Object key = in.readObject();
42 Object value = in.readObject();
36 instantiate( SerializationStreamReader in) argument
H A DTreeMultimap_CustomFieldSerializer.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
32 public static void deserialize(SerializationStreamReader in, argument
38 SerializationStreamReader in) throws SerializationException {
39 Comparator keyComparator = (Comparator) in.readObject();
40 Comparator valueComparator = (Comparator) in.readObject();
44 in, TreeMultimap.create(keyComparator, valueComparator));
37 instantiate( SerializationStreamReader in) argument
/external/guava/guava-tests/test/com/google/common/io/
H A DRandomAmountInputStream.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
28 public RandomAmountInputStream(InputStream in, Random random) { argument
29 super(in);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DRulesFileParser.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 private static String stripComment(String in) { argument
36 int p = in.indexOf("#");
37 return p < 0 ? in : in.substring(0, p);
/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/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...]

Completed in 241 milliseconds

1234567891011>>