HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 126 - 150 of 1682) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 51 final String source = tests[i][0]; local
52 String expected = tests[i].length == 1 ? source : tests[i][1];
53 String actual = UnicodeRegex.fix(source);
54 assertEquals(source, expected, actual);
235 final String source = tests[i][0];
237 String actual = regex.transform(source);
238 assertEquals(source, expected, actual);
  /external/iptables/include/linux/netfilter_ipv4/
ipt_addrtype.h 14 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
21 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info
  /external/libchrome/base/posix/
file_descriptor_shuffle.h 2 // Use of this source code is governed by a BSD-style license that can be
59 : source(in_source),
64 int source; member in struct:base::InjectionArc
66 bool close; // if true, delete the source element after performing the
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
weak_ptr.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
58 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function
108 std::weak_ptr<A> pA = source(ps);
weak_ptr_Y.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function
102 std::weak_ptr<A> pA = source(ps);
  /external/libcxx/test/std/utilities/utility/forward/
forward_03.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
21 A source() {return A();} function
46 // static_assert(sizeof(test(std::forward<A>(source()))) == 2, "");
49 static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, "");
51 static_assert(sizeof(test(std::forward<const A>(source()))) == 2, "");
  /external/libgsm/tst/
cod2lin.c 32 gsm_signal source[160]; local
37 (void)memset(source, 0x00, sizeof(source));
48 cc = fread((char *)source, sizeof(*source), 76, f);
62 gsm_implode(r, source, buf);
63 gsm_decode(r, buf, source);
65 if (write(1, source, sizeof(source)) != sizeof(source)) {
    [all...]
cod2txt.c 30 gsm_signal source[160]; local
36 (void)memset(source, 0, sizeof(source));
45 cc = fread((char *)source, sizeof(*source), 76, f);
59 gsm_implode(r, source, buf);
gsm2cod.c 30 gsm_signal source[76]; local
36 (void)memset(source, 0, sizeof(source));
59 gsm_explode(r, buf, source);
60 if (write(1, (char *)source, sizeof(source))!= sizeof(source)) {
lin2cod.c 31 short source[160]; local
45 if ((cc = fread((char *)source, 1, sizeof(source), f)) == 0) {
53 if (cc != sizeof(source)) {
62 gsm_encode(r, source, buf);
63 gsm_explode(r, buf, source); /* 76 shorts */
64 if (write(1, source, sizeof(*source) * 76)
65 != sizeof(*source) * 76) {
lin2txt.c 28 short source[160]; local
40 if ((cc = fread((char *)source, 1, sizeof(source), f)) == 0) {
52 printf("%d", (int)source[ j * 40 + k ]);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
program.cpp 29 program::program(clover::context &ctx, const std::string &source) :
30 has_source(true), context(ctx), _source(source), _kernel_ref_counter(0) {
92 program::source() const { function in class:program
  /external/mesa3d/src/mesa/state_tracker/
st_debug.c 121 enum mesa_debug_source source; local
127 source = MESA_DEBUG_SOURCE_API;
132 source = MESA_DEBUG_SOURCE_API;
137 source = MESA_DEBUG_SOURCE_SHADER_COMPILER;
142 source = MESA_DEBUG_SOURCE_API;
147 source = MESA_DEBUG_SOURCE_API;
152 source = MESA_DEBUG_SOURCE_API;
157 source = MESA_DEBUG_SOURCE_API;
164 _mesa_gl_vdebug(st->ctx, id, source, type, severity, fmt, args);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 23 import okio.Source;
31 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source}
43 @Override public Source source(File file) throws FileNotFoundException {
44 return Okio.source(file);
106 Source source(File file) throws FileNotFoundException; method in interface:FileSystem
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/io/
FileSystem.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
24 import com.android.okhttp.okio.Source;
32 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source}
45 @Override public Source source(File file) throws FileNotFoundException {
46 return Okio.source(file);
108 Source source(File file) throws FileNotFoundException; method in interface:FileSystem
  /external/python/cpython3/Tools/scripts/
abitype.py 170 source = sys.stdin.read() variable
172 while pos != len(source):
173 m = tokenizer.match(source, pos)
180 nl = source.find('\n', pos)
182 line = source[pos:]
184 line = source[pos:nl+1]
  /external/sfntly/cpp/src/test/
open_type_data_test.cc 51 ReadableFontDataPtr source = new ReadableFontData(source_array); local
58 int32_t length = source->CopyTo(destination);
test_utils.cc 44 UChar* source = new UChar[2]; local
46 source[0] = (UChar)uchar;
47 source[1] = 0;
49 source_end = source;
52 (const UChar**)&source_end, source + sizeof(UChar),
57 delete[] source;
66 delete[] source;
  /external/skia/gm/
imagemakewithfilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
75 sk_sp<SkImage> source = surface->makeImageSnapshot(); variable
83 sk_sp<SkImage> result = source->makeWithFilter(filters[i].get(), subset, clipBound,
86 SkASSERT(source->isTextureBacked() == result->isTextureBacked());
  /external/skia/src/gpu/
GrTextureMaker.cpp 4 * Use of this source code is governed by a BSD-style license that can be
63 sk_sp<GrTextureProxy> source; local
65 source = std::move(original);
67 source = cachedProxy;
70 source = this->refOriginalTextureProxy(false, AllowedTexGenType::kAny);
73 if (!source) {
77 sk_sp<GrTextureProxy> result = CopyOnGpu(this->context(), source, copyParams, willBeMipped);
81 // the source texture here and require that the GPU backend is able to fall back to using
84 return source;
  /external/skqp/gm/
imagemakewithfilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
75 sk_sp<SkImage> source = surface->makeImageSnapshot(); variable
83 sk_sp<SkImage> result = source->makeWithFilter(filters[i].get(), subset, clipBound,
86 SkASSERT(source->isTextureBacked() == result->isTextureBacked());
  /external/strace/tests/
mount.c 8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
76 static const char source[] = "mount_source"; local
97 rc = mount(source, target, fstype, 15, data);
99 source, target, fstype, str_ro_nosuid_nodev_noexec,
102 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
104 source, target, fstype,
108 rc = mount(source, target, fstype, MS_MGC_VAL, data);
110 source, target, fstype, str_mgc_val, data, sprintrc(rc));
112 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data)
    [all...]
  /external/strace/tests-m32/
mount.c 8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
76 static const char source[] = "mount_source"; local
97 rc = mount(source, target, fstype, 15, data);
99 source, target, fstype, str_ro_nosuid_nodev_noexec,
102 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
104 source, target, fstype,
108 rc = mount(source, target, fstype, MS_MGC_VAL, data);
110 source, target, fstype, str_mgc_val, data, sprintrc(rc));
112 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data)
    [all...]
  /external/strace/tests-mx32/
mount.c 8 * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
76 static const char source[] = "mount_source"; local
97 rc = mount(source, target, fstype, 15, data);
99 source, target, fstype, str_ro_nosuid_nodev_noexec,
102 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
104 source, target, fstype,
108 rc = mount(source, target, fstype, MS_MGC_VAL, data);
110 source, target, fstype, str_mgc_val, data, sprintrc(rc));
112 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data)
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
loop_fission.cpp 20 #include "source/opt/loop_fission.h"
21 #include "source/opt/loop_unroller.h"
22 #include "source/opt/loop_utils.h"
23 #include "source/opt/pass.h"
67 const std::string source = R"(OpCapability Shader local
192 BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, source,
196 << source << std::endl;
199 SinglePassRunAndCheck<LoopFissionPass>(source, expected, true);
204 source, source, true
229 const std::string source = R"(OpCapability Shader local
316 const std::string source = R"(OpCapability Shader local
425 const std::string source = R"( local
736 const std::string source = R"(OpCapability Shader local
918 const std::string source = R"(OpCapability Shader local
1099 const std::string source = R"( local
1309 const std::string source = R"(OpCapability Shader local
1427 const std::string source = R"( local
1652 const std::string source = R"(OpCapability Shader local
1898 const std::string source = R"(OpCapability Shader local
1992 const std::string source = R"(OpCapability Shader local
2099 const std::string source = R"(OpCapability Shader local
2289 const std::string source = R"(OpCapability Shader local
2445 const std::string source = R"(OpCapability Shader local
2551 const std::string source = R"(OpCapability Shader local
2674 const std::string source = R"(OpCapability Shader local
2966 const std::string source = R"(OpCapability Shader local
    [all...]

Completed in 1255 milliseconds

1 2 3 4 56 7 8 91011>>