Searched defs:source (Results 101 - 125 of 1548) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/
H A Dcurrfmt.cpp51 void CurrencyFormat::parseObject(const UnicodeString& source, argument
55 CurrencyAmount* currAmt = fmt->parseCurrency(source, pos);
H A Dtridpars.h33 * A basic ID, which contains source, target, and variant, but no
58 * 'source' and 'target' will always be non-null. The 'variant'
61 * 'sawSource' is true if there was an explicit source in the
62 * parsed id. If there was no explicit source, then an implied
63 * source of ANY is returned and 'sawSource' is set to false.
70 UnicodeString source; // not null member in class:TransliteratorIDParser::Specs
219 * S-T/V, or S/V-T. If the source is missing, return a source of
222 * @param source the given source
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccolltst.c88 void reportCResult( const UChar source[], const UChar target[], argument
103 log_err("Compare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
109 log_err("incCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
115 log_err("KeyCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
121 log_err("difference between sortkey and compare result for (%s , %s) Keys: %s compare %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DCollationKey.java30 * entire source string is examined and processed into a series of
153 // * @param source string this CollationKey is to represent
155 // * source terminated by a null
159 // public CollationKey(String source, byte key[])
168 // * @param source string this CollationKey is to represent
170 // * argument source.
175 // public CollationKey(String source, RawCollationKey key)
183 * Return the source string that this CollationKey represents.
184 * @return source string that this CollationKey represents
334 // * <a href="http://source
413 merge(CollationKey source) argument
[all...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationCurrencyTest.java12 * Source File: $ICU4CRoot/source/test/intltest/currcoll.cpp
69 String source;
74 source = new String(currency[i]);
85 int compareResult = c.compare(source, target);
88 sourceKey = c.getCollationKey(source);
91 errln("Couldn't get collationKey for source");
98 errln("Couldn't get collationKey for source");
104 reportCResult( source, target, sourceKey, targetKey, compareResult, keyResult, compareResult, expectedResult );
109 private void reportCResult( String source, String target, CollationKey sourceKey, CollationKey targetKey, argument
133 logln(msg1 + source
[all...]
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_addrtype.h14 __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/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
H A DAntFilesLocatorTest.java57 final Reader source = locator.getSourceFile("org/jacoco/example",
59 assertContent(source);
72 private void assertContent(Reader source) throws IOException { argument
73 assertNotNull(source);
74 final BufferedReader buffer = new BufferedReader(source);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/
H A DPack200Streams.java50 * @param source
51 * source in JAR/ZIP format
57 public static void pack(final byte[] source, final OutputStream output) argument
60 source));
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
H A DFrameSnapshot.java61 private static Object[] reduce(final List<Object> source, final int popCount) { argument
62 final List<Object> copy = new ArrayList<Object>(source);
63 final int size = source.size() - popCount;
64 copy.subList(size, source.size()).clear();
66 final Object type = source.get(i);
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
H A DDirectorySourceFileLocatorTest.java56 final Reader source = locator.getSourceFile("org/jacoco/example",
58 assertContent(source);
70 private void assertContent(Reader source) throws IOException { argument
71 assertNotNull(source);
72 final BufferedReader buffer = new BufferedReader(source);
/external/javasqlite/src/main/java/SQLite/
H A DStringEncoder.java9 * author in the source code of the SQLite distribution.
10 * I feel obliged to provide a quote from the original C-source code:
12 * "The author disclaims copyright to this source code. In place of
198 * Copies count elements from source, starting at element with
200 * @param source the source.
207 private static byte[] byteCopy(byte[] source, int offset, argument
210 target[j] = source[i];
/external/kernel-headers/original/uapi/linux/
H A Dudp.h23 __be16 source; member in struct:udphdr
/external/libchrome/base/
H A Dscoped_observer.h2 // Use of this source code is governed by a BSD-style license that can be
29 // Adds the object passed to the constructor as an observer on |source|.
30 void Add(Source* source) { argument
31 sources_.push_back(source);
32 source->AddObserver(observer_);
35 // Remove the object passed to the constructor as an observer from |source|.
36 void Remove(Source* source) { argument
37 auto it = std::find(sources_.begin(), sources_.end(), source);
40 source->RemoveObserver(observer_);
49 bool IsObserving(Source* source) cons
[all...]
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
H A Dweak_ptr.pass.cpp58 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);
H A Dweak_ptr_Y.pass.cpp56 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/
H A Dforward_03.pass.cpp21 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/src/
H A Dgsm_encode.c13 void gsm_encode P3((s, source, c), gsm s, gsm_signal * source, gsm_byte * c) argument
17 Gsm_Coder(s, source, LARc, Nc, bc, Mc, xmaxc, xmc);
H A Dgsm_implode.c14 void gsm_implode P3((s, source, c), gsm s, gsm_signal * source, gsm_byte * c) argument
109 # define LARc source
110 # define Nc *((gsm_signal (*) [17])(source + 8))
111 # define bc *((gsm_signal (*) [17])(source + 9))
112 # define Mc *((gsm_signal (*) [17])(source + 10))
113 # define xmaxc *((gsm_signal (*) [17])(source + 11))
139 #define xmc (source + 12)
166 #define xmc (source + 29 - 13)
193 #define xmc (source
[all...]
/external/libmojo/mojo/common/
H A Ddata_pipe_drainer.cc2 // Use of this source code is governed by a BSD-style license that can be
17 mojo::ScopedDataPipeConsumerHandle source)
18 : client_(client), source_(std::move(source)), weak_factory_(this) {
16 DataPipeDrainer(Client* client, mojo::ScopedDataPipeConsumerHandle source) argument
H A Ddata_pipe_file_utils.cc2 // Use of this source code is governed by a BSD-style license that can be
19 bool BlockingCopyFromFile(const base::FilePath& source, argument
22 base::File file(source, base::File::FLAG_OPEN | base::File::FLAG_READ);
26 LOG(ERROR) << "Seek of " << skip << " in " << source.value() << " failed";
69 void CopyFromFile(const base::FilePath& source, argument
75 base::Bind(&BlockingCopyFromFile, source,
/external/libtextclassifier/common/
H A Dsimple-adder.h33 TC_ATTRIBUTE_ALWAYS_INLINE void LazyAdd(const float *source) const {
34 AddImpl(source, num_floats_, dest_);
37 TC_ATTRIBUTE_ALWAYS_INLINE void LazyScaleAdd(const float *source, argument
39 ScaleAddImpl(source, num_floats_, scale, dest_);
42 // Simple fast while loop to implement dest += source.
43 TC_ATTRIBUTE_ALWAYS_INLINE static void AddImpl(const float *__restrict source, argument
47 dest[i] += source[i];
51 // Simple fast while loop to implement dest += scale * source.
53 const float *__restrict source, uint32 size, const float scale,
56 dest[i] += source[
52 ScaleAddImpl( const float *__restrict source, uint32 size, const float scale, float *__restrict dest) argument
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dboolhuff.c4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
45 void vp8_start_encode(BOOL_CODER *br, unsigned char *source, argument
50 br->buffer = source;
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dprogram.cpp29 const std::string &source) :
30 ctx(ctx), __source(source) {
64 _cl_program::source() const { function in class:_cl_program
28 _cl_program(clover::context &ctx, const std::string &source) argument
/external/mesa3d/src/gallium/state_trackers/clover/tgsi/
H A Dcompiler.cpp79 read_body(const char *source, module &m) { argument
82 if (!tgsi_text_translate(source, prog, Elements(prog)))
91 clover::compile_program_tgsi(const compat::string &source) { argument
92 const char *body = source.find("COMP\n");
95 read_header({ source.begin(), body }, m);
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp106 * \param source Source instruction stream containing functions whose
114 import_prototypes(const exec_list *source, exec_list *dest, argument
119 /* Making source be const is just extra documentation.
121 v.run(const_cast<exec_list *>(source));

Completed in 622 milliseconds

1234567891011>>