HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 876 - 900 of 3057) sorted by null

<<31323334353637383940>>

  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ComponentBuilderTest.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
336 .in(componentFile); method
359 .in(componentFile);
375 .in(builder);
396 .in(componentFile);
417 .in(componentFile);
438 .in(componentFile);
481 .in(componentFile);
505 .in(componentFile)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderPackingFunctionTests.cpp 8 * you may not use this file except in compliance with the License.
13 * Unless required by applicable law or agreed to in writing, software
173 // Random values, mostly in range.
194 const void* in = &inputs[0]; local
198 m_executor->execute((int)inputs.size(), &in, &out);
222 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx
282 const void* in = &inputs[0]; local
286 m_executor->execute((int)inputs.size(), &in, &out);
311 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx << ",\n"
364 // Random values, mostly in range
385 const void* in = &inputs[0]; local
473 const void* in = &inputs[0]; local
581 const void* in = &inputs[0]; local
684 const void* in = &inputs[0]; local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 * match the names given in the Dalvik instruction format
35 * arbitrarily alphabetically from A. In this class, non-register
55 * though it is stored in an {@code int}.
69 public static DecodedInstruction decode(CodeInput in) throws EOFException {
70 int opcodeUnit = in.read();
74 return format.decode(opcodeUnit, in);
85 ShortArrayCodeInput in = new ShortArrayCodeInput(encodedInstructions); local
88 while (in.hasMore())
    [all...]
  /external/dnsmasq/src/
util.c 8 This program is distributed in the hope that it will be useful,
51 static uint32 in[12]; variable
60 !read_write(fd, (unsigned char *)&in, sizeof(in), 1))
74 for (i = 0;i < 12;++i) t[i] = in[i] ^ seed[12 + i];
93 if (!++in[0]) if (!++in[1]) if (!++in[2]) ++in[3];
103 static int check_name(char *in)
    [all...]
  /external/drm_hwcomposer/
separate_rects.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
74 void separate_rects(const std::vector<Rect<TNum>> &in,
78 // The sweep stops at each vertical edge of each input rectangle in sorted
79 // order of x-coordinate. At each stop, the sweep line is examined in order of
83 // that set is recorded in along with the the y-coordinate it happened at in a
88 if (in.size() > IdSet<TNum>::max_elements) {
109 for (TId i = 0; i < in.size(); i++) {
110 const Rect<TNum> &rect = in[i]
330 std::vector<Rect> in; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CompileErrorCheck.java 16 * information in monitor.properties.
120 BufferedReader in = null;
124 in = new BufferedReader(new FileReader(file));
130 while ((aLine = in.readLine()) != null) {
145 if (in != null) {
147 in.close();
190 //send email notification that there are compile errors in the build
206 mailer.sendMultiPartMessage("Compile errors in build", "Compile errors in build. See attached compile logs.", logFiles);
211 System.out.println("Compile errors detected in "+nameWithPlugin)
    [all...]
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
ArpackSelfAdjointEigenSolver.h 16 // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
66 * The default constructor is for cases in which the user intends to
81 * \param[in] A Self-adjoint matrix whose eigenvalues / eigenvectors will
84 * \param[in] B Self-adjoint matrix for the generalized eigenvalue problem.
85 * \param[in] nbrEigenvalues The number of eigenvalues / eigenvectors to compute.
87 * \param[in] eigs_sigma String containing either "LM", "SM", "LA", or "SA", with
90 * value can contain floating point value in string form, in which case the
92 * \param[in] options Can be #ComputeEigenvectors (default) or #EigenvaluesOnly.
93 * \param[in] tol What tolerance to find the eigenvalues to. Default is 0, whic
515 Scalar *in = workd + ipntr[0] - 1; local
566 Scalar *in = workd + ipntr[0] - 1; local
    [all...]
  /external/f2fs-tools/lib/
libf2fs.c 220 static void TEA_transform(unsigned int buf[4], unsigned int const in[])
224 __u32 a = in[0], b = in[1], c = in[2], d = in[3];
278 __u32 in[8], buf[4]; local
293 str2hashbuf(p, len, in, 4);
294 TEA_transform(buf, in);
407 * the file system. In this case, we should not format.
415 MSG(0, "\tError: In use by the system!\n")
    [all...]
  /external/freetype/src/base/
ftoutln.c 21 /* All functions are declared in freetype.h. */
36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
48 /* documentation is in ftoutln.h */
68 FT_Int n; /* index of contour in outline */
69 FT_UInt first; /* index of first point in contour */
88 FT_Int last; /* index of last point in contour */
337 /* documentation is in ftoutln.h */
353 /* documentation is in ftoutln.h */
398 /* documentation is in ftoutln.h */
456 /* documentation is in ftoutln.h *
937 FT_Vector in, out, shift; local
    [all...]
  /external/guava/guava/src/com/google/common/base/
Predicates.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
98 * components evaluates to {@code true}. The components are evaluated in
100 * predicate is found. It defensively copies the iterable passed in, so future
112 * components evaluates to {@code true}. The components are evaluated in
114 * predicate is found. It defensively copies the array passed in, so future
125 * components evaluate to {@code true}. The components are evaluated in
137 * components evaluates to {@code true}. The components are evaluated in
139 * true predicate is found. It defensively copies the iterable passed in, so
151 * components evaluates to {@code true}. The components are evaluated in
230 public static <T> Predicate<T> in(Collection<? extends T> target) { method in class:Predicates
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 5 * in compliance with the License. You may obtain a copy of the License at
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
407 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
408 in.defaultReadObject();
409 MapMaker mapMaker = readMapMaker(in);
411 readEntries(in);
  /external/guava/guava/src/com/google/common/io/
ByteSource.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
52 * typically implemented by opening a stream using one of the methods in the first category, doing
82 * @throws IOException if an I/O error occurs in the process of opening the stream
88 * not required to be a {@link BufferedInputStream} in order to allow implementations to simply
95 * @throws IOException if an I/O error occurs in the process of opening the stream
96 * @since 15.0 (in 14.0 with return type {@link BufferedInputStream})
99 InputStream in = openStream(); local
100 return (in instanceof BufferedInputStream)
101 ? (BufferedInputStream) in
125 InputStream in = closer.register(openStream()); local
152 InputStream in = closer.register(openStream()); local
162 InputStream in = closer.register(openStream()); local
219 InputStream in = closer.register(openStream()); local
239 InputStream in = closer.register(openStream()); local
257 InputStream in = closer.register(openStream()); local
281 InputStream in = closer.register(openStream()); local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
95 * components evaluates to {@code true}. The components are evaluated in
97 * predicate is found. It defensively copies the iterable passed in, so future
109 * components evaluates to {@code true}. The components are evaluated in
111 * predicate is found. It defensively copies the array passed in, so future
122 * components evaluate to {@code true}. The components are evaluated in
134 * components evaluates to {@code true}. The components are evaluated in
136 * true predicate is found. It defensively copies the iterable passed in, so
148 * components evaluates to {@code true}. The components are evaluated in
194 public static <T> Predicate<T> in(Collection<? extends T> target) { method in class:Predicates
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ObjectArraysTest.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
37 String[] in = new String[0]; local
38 String[] empty = ObjectArrays.newArray(in, 0);
  /external/guava/guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
AtomicLongMapTest.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
42 Map<String, Long> in = ImmutableMap.of("1", 1L, "2", 2L, "3", 3L); local
43 AtomicLongMap<String> map = AtomicLongMap.create(in);
292 Map<String, Long> in = ImmutableMap.of("1", 1L, "2", 2L, "3", 3L); local
303 map.putAll(in);
  /external/guava/guava-tests/test/com/google/common/collect/
ObjectArraysTest.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
69 String[] in = new String[0]; local
70 String[] empty = ObjectArrays.newArray(in, 0);
  /external/guice/core/src/com/google/inject/internal/util/
LineNumbers.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 InputStream in = type.getResourceAsStream("/" + type.getName().replace('.', '/') + ".class"); local
64 if (in != null) {
65 new ClassReader(in).accept(new LineNumberReader(), ClassReader.SKIP_FRAMES);
  /external/guice/examples/src/example/xml/
XmlBeanModule.java 48 Reader in = new InputStreamReader(xmlUrl.openStream()); local
49 Parsers.parse(in, beans.getContentHandler());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Punycode.java 17 * @hide Only a subset of ICU is exposed in Android
61 * point (for use in representing integers) in the range 0 to
106 * (when used for representing integers) is d, which must be in the
108 * nonzero, in which case the uppercase form is used.
140 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
276 int n, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
318 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SelectFormat.java 45 * <li>German differs from English in that the gender of nouns is rather
50 * <li>French has only two genders; as in German the gender of nouns
52 * are the opposite of those in German. The gender affects
63 * but similar in grammatical use.
66 * <p><b>Note:</b>For the gender of a <i>person</i> in a given sentence,
81 * each noun and per language, e.g., in resource bundles.
98 * move bits of the sentence in and out of the select argument of a message.
125 * <p>Each message is a MessageFormat pattern string enclosed in {curly braces}.
183 * Patterns and their interpretation are specified in the class description.
306 * @return the string buffer passed in as toAppendTo, with formatted tex
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
PunycodeReference.java 17 and distribute it in any way that does not diminish the rights
35 * The implementation is direct port of C code in the RFC
69 /* point (for use in representing integers) in the range 0 to */
79 /* (when used for representing integers) is d, which needs to be in */
81 /* nonzero, in which case the uppercase form is used. The behavior */
224 int[] in = new int[input.length()]; local
230 in[inLen++]=ch;
238 rc = encode(inLen,in,case_flags, outLen, output);
260 throw new StringPrepParseException("Illegal char found in the input",StringPrepParseException.ILLEGAL_CHAR_FOUND)
270 char[] in = input.toString().toCharArray(); local
302 b, j, in, oldi, w, k, digit, t; local
    [all...]
  /external/icu/icu4c/source/common/
punycode.cpp 31 and distribute it in any way that does not diminish the rights
88 * (when used for representing integers) is d, which must be in the
90 * nonzero, in which case the uppercase form is used.
109 * point (for use in representing integers) in the range 0 to
156 * The following code omits the {parts} of the pseudo-algorithm in the spec
203 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
440 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */)
    [all...]
  /external/icu/icu4c/source/layout/
ArabicShaping.cpp 66 // defined in the above order, and have masks that
67 // are all in the same nibble.
128 // iterate in logical order, store tags in visible order
167 le_int32 in, e, out = 0, dir = 1; local
175 for (in = offset, e = offset + charCount; in < e; in += 1, out += dir) {
176 LEUnicode c = chars[in];
  /external/icu/icu4c/source/test/cintltst/
spreptst.c 105 const char *in; member in struct:ConformanceTestCases
321 const char* src = conformanceTestCases[i].in;
350 understood universally, rather than in the context of a particular
373 appended "@" and should appear in the form "xxxx@" (note: no domain
408 "\\u0c15\\u0c36\\u0c30\\u0c2c\\u0c3e\\u0c26@cs7.dillons.co.uk.203.119.193.in-addr.arpa",
  /external/icu/icu4c/source/tools/icuswap/
icuswap.cpp 104 FILE *in, *out; local
119 fprintf(stderr, "Warning: icuswap is an obsolete tool and it will be removed in the next ICU release.\nPlease use the icupkg tool instead.\n");
161 in=out=NULL;
165 in=fopen(argv[1], "rb");
166 if(in==NULL) {
172 length=fileSize(in);
195 if(length!=(int32_t)fread(data, 1, length, in)) {
201 fclose(in);
202 in=NULL;
204 /* swap the data in-place *
    [all...]

Completed in 738 milliseconds

<<31323334353637383940>>