HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 301 - 325 of 3981) sorted by null

<<11121314151617181920>>

  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/wiki_samples/
MethodChanger_2.java 13 * You should have received a copy of both licenses in LICENCE.LGPL and
16 * JavaParser is distributed in the hope that it will be useful,
39 FileInputStream in = new FileInputStream("test.java"); local
42 CompilationUnit cu = JavaParser.parse(in);
52 // Go through all the types in the file
55 // Go through all fields, methods, etc. in this type
MethodPrinter.java 13 * You should have received a copy of both licenses in LICENCE.LGPL and
16 * JavaParser is distributed in the hope that it will be useful,
35 FileInputStream in = new FileInputStream("test.java"); local
38 CompilationUnit cu = JavaParser.parse(in);
51 this method will be called for all methods in this
  /external/javassist/src/main/javassist/tools/
Dump.java 6 * 1.1 (the "License"); you may not use this file except in compliance with
23 * Dump is a tool for viewing the class definition in the given
47 DataInputStream in = new DataInputStream( local
49 ClassFile w = new ClassFile(in);
  /external/jcommander/src/main/java/com/beust/jcommander/internal/
DefaultConsole.java 21 // Do not close the readers since System.in should not be closed
22 InputStreamReader isr = new InputStreamReader(System.in);
23 BufferedReader in = new BufferedReader(isr); local
24 String result = in.readLine();
  /external/libcxx/benchmarks/
ContainerBenchmarks.hpp 13 auto in = gen(st.range(0)); local
14 const auto begin = in.begin();
15 const auto end = in.end();
16 benchmark::DoNotOptimize(&in);
25 auto in = gen(st.range(0)); local
26 const auto end = in.end();
29 for (auto it = in.begin(); it != end; ++it) {
38 auto in = gen(st.range(0)); local
39 const auto end = in.end();
43 for (auto it = in.begin(); it != end; ++it)
53 auto in = gen(st.range(0)); local
69 auto in = gen(st.range(0)); local
84 auto in = gen(st.range(0)); local
99 auto in = gen(st.range(0)); local
    [all...]
filesystem.bench.cpp 15 const auto in = gen(st.range(0)); local
17 for (auto& Part : in)
32 const auto in = gen(st.range(0)); local
34 for (auto& Part : in)
50 const auto in = gen(st.range(0)); local
52 for (auto& Part : in)
81 const auto in = gen(st.range(0)); local
83 for (auto& Part : in)
100 const auto in = gen(st.range(0)); local
102 for (auto& Part : in)
119 const auto in = gen(st.range(0)); local
    [all...]
  /external/libcxx/src/
hash.cpp 23 // handle all next_prime(i) for i in [1, 210), special case 0
138 // some potential prime numbers are not prime. In an ideal world, all potential
183 // If n is small enough, search in small_primes
189 // Start searching list of potential primes: L * k0 + indices[in]
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L) local
196 n = L * k0 + indices[in];
201 // 2. The i > sqrt(n), in which case n is prime.
561 if (++in == M)
564 in = 0;
566 n = L * k0 + indices[in];
    [all...]
  /external/libopus/tests/
test_opus_padding.c 4 Redistribution and use in source and binary forms, with or without
11 - Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
18 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
23 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 /* Check for overflow in reading the padding length.
48 unsigned char *in = malloc(PACKETSIZE); local
52 if (!in || !out) {
56 in[0] = 0xff
    [all...]
  /external/libvpx/libvpx/test/
idct_test.cc 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
124 int16_t *in = input->TopLeftPixel(); local
127 in[y * input->stride() + x] = y * 4 + x;
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_idct32x32_34_add_neon.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
21 // an awful lot of calculations. In fact, only the first 6 columns make the cut.
22 // None of the elements in the 7th or 8th column are used so it skips any calls
24 // In C this does a single row of 32 for each call. Here it transposes the top
39 int32x4x2_t in[8], s1[32], s2[32], s3[32]; local
41 in[0].val[0] = vld1q_s32(input)
375 int32x4x2_t in[8], s1[32], s2[32], s3[32], out[32]; local
    [all...]
idct32x32_34_add_neon.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
22 // an awful lot of calculations. In fact, only the first 6 columns make the cut.
23 // None of the elements in the 7th or 8th column are used so it skips any calls
25 // In C this does a single row of 32 for each call. Here it transposes the top
40 int16x8_t in[8], s1[32], s2[32], s3[32]; local
42 in[0] = load_tran_low_to_s16q(input)
271 int16x8_t in[8], s1[32], s2[32], s3[32], out[32]; local
    [all...]
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 29 // The DLL version of the runtime lacks these functions (bug!?), but in a
100 } in, out; local
101 in.f = C;
102 out.i = SwapByteOrder_32(in.i);
110 } in, out; local
111 in.d = C;
112 out.i = SwapByteOrder_64(in.i);
  /external/lzma/Java/Tukaani/src/
XZSeekDecDemo.java 14 * Decompresses a .xz file in random access mode to standard output.
28 SeekableXZInputStream in = new SeekableXZInputStream(file); local
30 System.err.println("Number of XZ Streams: " + in.getStreamCount());
31 System.err.println("Number of XZ Blocks: " + in.getBlockCount());
33 System.err.println("Uncompressed size: " + in.length() + " B");
36 + in.getLargestBlockSize() + " B");
39 int checkTypes = in.getCheckTypes();
46 + in.getIndexMemoryUsage() + " KiB");
51 while ((size = in.read(buf)) != -1)
58 in.seek(pos)
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_depth.c 8 * to deal in the Software without restriction, including without limitation
14 * paragraph) shall be included in all copies or substantial portions of the
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43 * foreach (src in instr->regs[1..n])
89 /* remove from existing spot in list: */
142 /* mark it, in case it is input, so we can
187 struct ir3_instruction *in = ir->inputs[i] local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_frag.c 7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
60 uint64_t in; local
63 nv10_get_final_combiner(ctx, &in, &n);
66 PUSH_DATA (push, in);
67 PUSH_DATA (push, in >> 32)
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/util/collections/
Iterables.java 20 public static <T> Iterable<T> toIterable(Enumeration<T> in) {
22 while(in.hasMoreElements()) {
23 out.add(in.nextElement());
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
EchoSocketSample.java 9 * Redistribution and use in source and binary forms, with or without modification,
15 * 2. Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
26 * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
31 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
48 System.in.read();
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.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
65 private HttpMessageDecoder(HttpResponseMessage in, String encoding)
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/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
SynchronousHttpClient.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
44 static long readAllAndClose(InputStream in) throws IOException {
47 for (int count; (count = in.read(buffer)) != -1; ) {
50 in.close();
  /external/pdfium/third_party/lcms/src/
cmshalf.c 8 // to deal in the Software without restriction, including without limitation
13 // The above copyright notice and this permission notice shall be included in
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 // This code is inspired in the paper "Fast Half Float Conversions"
524 } in; local
    [all...]
  /external/python/cpython2/Modules/
yuvconvert.c 7 struct yuv411 *in = data; local
14 YUV422_Y0(*out_even) = YUV411_Y00(*in);
15 YUV422_U0(*out_even) = YUV411_U00(*in);
16 YUV422_V0(*out_even) = YUV411_V00(*in);
17 YUV422_Y1(*out_even) = YUV411_Y01(*in);
19 YUV422_Y0(*out_even) = YUV411_Y02(*in);
20 YUV422_U0(*out_even) = YUV411_U02(*in);
21 YUV422_V0(*out_even) = YUV411_V02(*in);
22 YUV422_Y1(*out_even) = YUV411_Y03(*in);
24 YUV422_Y0(*out_odd) = YUV411_Y10(*in);
    [all...]
  /external/selinux/semodule-utils/semodule_package/
semodule_unpackage.c 44 struct sepol_policy_file *in, *out; local
61 if (file_to_policy_file(ppfile, &in, "r"))
69 if (sepol_module_package_read(pkg, in, 0) == -1) {
83 sepol_policy_file_free(in);
  /external/skia/tools/skqp/
make_gmkb.go 5 * found in the LICENSE file.
38 func in(v string, a []string) bool { func
172 if (in("vk", digest.ParamSet["config"]) ||
173 in("gles", digest.ParamSet["config"])) &&
  /external/skqp/tools/skqp/
make_gmkb.go 5 * found in the LICENSE file.
38 func in(v string, a []string) bool { func
172 if (in("vk", digest.ParamSet["config"]) ||
173 in("gles", digest.ParamSet["config"])) &&
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
SwapByteOrder.h 32 // The DLL version of the runtime lacks these functions (bug!?), but in a
103 } in, out; local
104 in.f = C;
105 out.i = SwapByteOrder_32(in.i);
113 } in, out; local
114 in.d = C;
115 out.i = SwapByteOrder_64(in.i);

Completed in 594 milliseconds

<<11121314151617181920>>