Searched refs:source (Results 201 - 225 of 2856) sorted by relevance

1234567891011>>

/external/jsoncpp/
H A Damalgamate.py1 """Amalgate json-cpp library sources into a single source and header file.
53 """Produces amalgated source.
66 header.add_text( "/// If defined, indicates that the source file is amalgated" )
93 header.add_text( "/// If defined, indicates that the source file is amalgated" )
105 print("Amalgating source...")
106 source = AmalgamationFile( source_top_dir )
107 source.add_text( "/// Json-cpp amalgated source (http://jsoncpp.sourceforge.net/)." )
108 source.add_text( "/// It is intented to be used with #include <%s>" % header_include_path )
109 source
[all...]
/external/icu/icu4c/source/test/perf/collperf2/
H A Dcollperf2.cpp61 Strcoll(const UCollator* coll, const CA_uchar* source, UBool useLen);
68 const CA_uchar *source; member in class:Strcoll
73 Strcoll::Strcoll(const UCollator* coll, const CA_uchar* source, UBool useLen) argument
75 source(source),
78 maxTestStrings = source->count > MAX_TEST_STRINGS_FOR_PERMUTING ? MAX_TEST_STRINGS_FOR_PERMUTING : source->count;
90 int32_t divisor = source->count / maxTestStrings;
93 for (int32_t i = 0, numTestStringsI = 0; i < source->count && numTestStringsI < maxTestStrings; i++) {
96 srcLen = useLen ? source
128 const CA_uchar *source; member in class:Strcoll_2
133 Strcoll_2(const UCollator* coll, const CA_uchar* source, const CA_uchar* target, UBool useLen) argument
180 const CA_char *source; member in class:StrcollUTF8
185 StrcollUTF8(const UCollator* coll, const CA_char* source, UBool useLen) argument
240 const CA_char *source; member in class:StrcollUTF8_2
245 StrcollUTF8_2(const UCollator* coll, const CA_char* source, const CA_char* target, UBool useLen) argument
291 const CA_uchar *source; member in class:GetSortKey
295 GetSortKey(const UCollator* coll, const CA_uchar* source, UBool useLen) argument
346 const CA_uchar *source; member in class:NextSortKeyPart
353 NextSortKeyPart(const UCollator* coll, const CA_uchar* source, int32_t bufSize, int32_t maxIteration ) argument
413 const CA_char *source; member in class:NextSortKeyPartUTF8
420 NextSortKeyPartUTF8(const UCollator* coll, const CA_char* source, int32_t bufSize, int32_t maxIteration ) argument
480 const CA_uchar *source; member in class:CppCompare
485 CppCompare(const Collator* coll, const CA_uchar* source, UBool useLen) argument
539 const CA_uchar *source; member in class:CppCompare_2
544 CppCompare_2(const Collator* coll, const CA_uchar* source, const CA_uchar* target, UBool useLen) argument
590 const CA_char *source; member in class:CppCompareUTF8
595 CppCompareUTF8(const Collator* coll, const CA_char* source, UBool useLen) argument
660 const CA_char *source; member in class:CppCompareUTF8_2
665 CppCompareUTF8_2(const Collator* coll, const CA_char* source, const CA_char* target, UBool useLen) argument
717 const CA_uchar *source; member in class:CppGetCollationKey
721 CppGetCollationKey(const Collator* coll, const CA_uchar* source, UBool useLen) argument
804 UnicodeString** source; member in class:UniStrCollPerfFunction
883 StringPiece* source; member in class:StringPieceCollPerfFunction
[all...]
/external/guice/core/src/com/google/inject/spi/
H A DProviderLookup.java41 private final Object source; field in class:ProviderLookup
45 public ProviderLookup(Object source, Key<T> key) { argument
46 this(source, Dependency.get(checkNotNull(key, "key")));
50 public ProviderLookup(Object source, Dependency<T> dependency) { argument
51 this.source = checkNotNull(source, "source");
56 return source;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DTestUtility.java41 public static String replace(String source, String toBeReplaced, String replacement) { argument
44 for (int i = 0; i < source.length(); ++i) {
45 if (source.regionMatches(false, i, toBeReplaced, 0, len)) {
49 results.append(source.charAt(i));
55 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
58 for (int i = 0; i < source.length(); i += UTF16.getCharCount(cp)) {
59 cp = UTF16.charAt(source,i);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTestUtility.java40 public static String replace(String source, String toBeReplaced, String replacement) { argument
43 for (int i = 0; i < source.length(); ++i) {
44 if (source.regionMatches(false, i, toBeReplaced, 0, len)) {
48 results.append(source.charAt(i));
54 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
57 for (int i = 0; i < source.length(); i += UTF16.getCharCount(cp)) {
58 cp = UTF16.charAt(source,i);
/external/libvpx/libvpx/vpx_scale/generic/
H A Dvpx_scale.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 * INPUTS : const unsigned char *source : Pointer to data to be scaled.
47 * source.
48 * unsigned int source_scale : Scale for source (UNUSED).
49 * unsigned int source_length : Length of source (UNUSED).
66 static void scale1d_2t1_i(const unsigned char *source, int source_step, argument
78 dest[0] = source[0];
83 temp += 3 * source[
116 scale1d_2t1_ps(const unsigned char *source, int source_step, unsigned int source_scale, unsigned int source_length, unsigned char *dest, int dest_step, unsigned int dest_scale, unsigned int dest_length) argument
157 scale1d_c(const unsigned char *source, int source_step, unsigned int source_scale, unsigned int source_length, unsigned char *dest, int dest_step, unsigned int dest_scale, unsigned int dest_length) argument
231 Scale2D( unsigned char *source, int source_pitch, unsigned int source_width, unsigned int source_height, unsigned char *dest, int dest_pitch, unsigned int dest_width, unsigned int dest_height, unsigned char *temp_area, unsigned char temp_area_height, unsigned int hscale, unsigned int hratio, unsigned int vscale, unsigned int vratio, unsigned int interlaced) argument
[all...]
/external/freetype/src/base/
H A Dftdbgmem.c96 FT_MemSource source; member in struct:FT_MemNodeRec_
372 FT_FILENAME( node->source->file_name ),
373 node->source->line_no );
399 FT_MemSource source, next; local
402 for ( source = table->sources[i]; source != NULL; source = next )
404 next = source->link;
405 ft_mem_table_free( table, source );
517 FT_MemSource source; local
619 FT_MemSource source; local
938 FT_MemSource source = *bucket; local
952 FT_MemSource source = *bucket; local
976 FT_MemSource source = sources[nn]; local
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftdbgmem.c96 FT_MemSource source; member in struct:FT_MemNodeRec_
371 FT_FILENAME( node->source->file_name ),
372 node->source->line_no );
398 FT_MemSource source, next; local
401 for ( source = table->sources[i]; source != NULL; source = next )
403 next = source->link;
404 ft_mem_table_free( table, source );
516 FT_MemSource source; local
618 FT_MemSource source; local
937 FT_MemSource source = *bucket; local
951 FT_MemSource source = *bucket; local
975 FT_MemSource source = sources[nn]; local
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTreeManager.java40 * This class bottlenecks all management of source trees. The methods
41 * in this class should allow easy garbage collection of source
42 * trees (not yet!), and should centralize parsing for those source trees.
59 /** The TrAX URI resolver used to obtain source trees. */
123 Source source = null;
127 source = m_uriResolver.resolve(urlString, base);
130 if (null == source)
134 source = new StreamSource(uri);
137 return source;
163 * Put the source tre
169 putDocumentInCache(int n, Source source) argument
196 getNode(Source source) argument
272 getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) argument
300 parseToNode(Source source, SourceLocator locator, XPathContext xctxt) argument
[all...]
/external/autotest/site_utils/
H A Dlxc_config.py2 # Use of this source code is governed by a BSD-style license that can be
11 "source": "/etc/resolv.conf",
17 "source": "ssh",
23 "source": "/usr/local/autotest/results/shared",
32 source: config file in host to be copied to container.
41 "source": "/etc/resolv.conf",
53 source: a folder in host to be mounted in container.
55 mount: true to mount the source folder onto the target inside container.
58 force_create: true to create the source folder if it doesn't exist.
62 "source"
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fNegativeShaderStorageTests.cpp115 std::ostringstream source; local
117 source << glu::getGLSLVersionDeclaration(version) << "\n"
127 source << "layout (local_size_x = 1) in;\n";
131 source << "layout(points) in;\n"
136 source << "layout(vertices = 10) out;\n";
140 source << "layout(triangles) in;\n";
148 source << "\n"
154 return source.str();
161 std::ostringstream source; local
163 source << gl
224 std::string source = genBlockSource(ctx, maxSSBlocks+1, glShaderTypes[ndx]); local
[all...]
/external/webrtc/webrtc/base/
H A Dstringencode.cc4 * 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.
27 const char * source, size_t srclen,
35 char ch = source[srcpos++];
49 const char * source, size_t srclen,
57 char ch = source[srcpos++];
59 ch = source[srcpos++];
68 const char * source, size_t srclen,
76 char ch = source[srcpo
26 escape(char * buffer, size_t buflen, const char * source, size_t srclen, const char * illegal, char escape) argument
48 unescape(char * buffer, size_t buflen, const char * source, size_t srclen, char escape) argument
67 encode(char * buffer, size_t buflen, const char * source, size_t srclen, const char * illegal, char escape) argument
92 decode(char * buffer, size_t buflen, const char * source, size_t srclen, char escape) argument
143 url_encode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
169 url_decode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
197 utf8_decode(const char* source, size_t srclen, unsigned long* value) argument
258 html_encode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
311 html_decode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
317 xml_encode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
350 xml_decode(char * buffer, size_t buflen, const char * source, size_t srclen) argument
473 hex_encode(const char* source, size_t srclen) argument
477 hex_encode_with_delimiter(const char* source, size_t srclen, char delimiter) argument
487 hex_decode(char * cbuffer, size_t buflen, const char * source, size_t srclen) argument
492 hex_decode_with_delimiter(char* cbuffer, size_t buflen, const char* source, size_t srclen, char delimiter) argument
531 hex_decode(char* buffer, size_t buflen, const std::string& source) argument
534 hex_decode_with_delimiter(char* buffer, size_t buflen, const std::string& source, char delimiter) argument
540 transform(std::string& value, size_t maxlen, const std::string& source, Transform t) argument
548 s_transform(const std::string& source, Transform t) argument
557 tokenize(const std::string& source, char delimiter, std::vector<std::string>* fields) argument
575 tokenize_with_empty_tokens(const std::string& source, char delimiter, std::vector<std::string>* fields) argument
590 tokenize_append(const std::string& source, char delimiter, std::vector<std::string>* fields) argument
600 tokenize(const std::string& source, char delimiter, char start_mark, char end_mark, std::vector<std::string>* fields) argument
628 tokenize_first(const std::string& source, const char delimiter, std::string* token, std::string* rest) argument
649 split(const std::string& source, char delimiter, std::vector<std::string>* fields) argument
[all...]
/external/ImageMagick/MagickWand/
H A Dwand-view.c225 % source and duplex pixel extent is not confined to the image canvas-- that is
233 % MagickBooleanType DuplexTransferImageViewMethod(const WandView *source,
246 % MagickBooleanType DuplexTransferWandViewIterator(WandView *source,
252 % o source: the source wand view.
263 WandExport MagickBooleanType DuplexTransferWandViewIterator(WandView *source,
285 assert(source != (WandView *) NULL);
286 assert(source->signature == MagickWandSignature);
289 source_image=source->wand->images;
298 height=source
258 DuplexTransferWandViewIterator(WandView *source, WandView *duplex,WandView *destination,DuplexTransferWandViewMethod transfer, void *context) argument
518 GetWandViewIterator(WandView *source, GetWandViewMethod get,void *context) argument
1052 TransferWandViewIterator(WandView *source, WandView *destination,TransferWandViewMethod transfer,void *context) argument
1209 UpdateWandViewIterator(WandView *source, UpdateWandViewMethod update,void *context) argument
[all...]
/external/v8/src/crankshaft/mips/
H A Dlithium-gap-resolver-mips.cc2 // Use of this source code is governed by a BSD-style license that can be
30 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
42 DCHECK(moves_[i].source()->IsConstantOperand());
53 // moves to perform, ignoring any move that is redundant (the source is
72 // be encountering the starting move again. So by spilling the source of
75 // its destination. All other moves from the spilled source have been
86 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
91 // dependencies. Any unperformed, unpending move with a source the same
99 // and all other moves with the same source as moves_[root_index_] are
109 // In this case, we have a cycle, and we save the source o
144 LOperand* source = moves_[index].source(); local
187 LOperand* source = moves_[index].source(); local
[all...]
/external/v8/src/crankshaft/mips64/
H A Dlithium-gap-resolver-mips64.cc2 // Use of this source code is governed by a BSD-style license that can be
30 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
42 DCHECK(moves_[i].source()->IsConstantOperand());
53 // moves to perform, ignoring any move that is redundant (the source is
72 // be encountering the starting move again. So by spilling the source of
75 // its destination. All other moves from the spilled source have been
86 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
91 // dependencies. Any unperformed, unpending move with a source the same
99 // and all other moves with the same source as moves_[root_index_] are
109 // In this case, we have a cycle, and we save the source o
144 LOperand* source = moves_[index].source(); local
187 LOperand* source = moves_[index].source(); local
[all...]
/external/v8/src/crankshaft/ppc/
H A Dlithium-gap-resolver-ppc.cc2 // Use of this source code is governed by a BSD-style license that can be
32 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
44 DCHECK(moves_[i].source()->IsConstantOperand());
55 // moves to perform, ignoring any move that is redundant (the source is
74 // be encountering the starting move again. So by spilling the source of
77 // its destination. All other moves from the spilled source have been
88 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
93 // dependencies. Any unperformed, unpending move with a source the same
101 // and all other moves with the same source as moves_[root_index_] are
111 // In this case, we have a cycle, and we save the source o
146 LOperand* source = moves_[index].source(); local
187 LOperand* source = moves_[index].source(); local
[all...]
/external/v8/src/crankshaft/s390/
H A Dlithium-gap-resolver-s390.cc2 // Use of this source code is governed by a BSD-style license that can be
31 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
43 DCHECK(moves_[i].source()->IsConstantOperand());
53 // moves to perform, ignoring any move that is redundant (the source is
71 // be encountering the starting move again. So by spilling the source of
74 // its destination. All other moves from the spilled source have been
85 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
90 // dependencies. Any unperformed, unpending move with a source the same
98 // and all other moves with the same source as moves_[root_index_] are
108 // In this case, we have a cycle, and we save the source o
142 LOperand* source = moves_[index].source(); local
181 LOperand* source = moves_[index].source(); local
[all...]
/external/guice/core/src/com/google/inject/internal/
H A DWeakKeySet.java69 * There may be multiple child injectors blacklisting a certain key so only remove the source
77 set.remove(keyAndSource.source);
90 public void add(Key<?> key, State state, Object source) { argument
96 if (source instanceof Class || source == SourceProvider.UNKNOWN_SOURCE) {
97 source = null;
104 Object convertedSource = Errors.convert(source);
130 final Object source; field in class:WeakKeySet.KeyAndSource
132 KeyAndSource(Key<?> key, Object source) { argument
134 this.source
[all...]
H A DBindingImpl.java34 private final Object source; field in class:BindingImpl
38 public BindingImpl(InjectorImpl injector, Key<T> key, Object source, argument
42 this.source = source;
47 protected BindingImpl(Object source, Key<T> key, Scoping scoping) { argument
50 this.source = source;
60 return source;
112 .add("source", source)
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DSummaryStatistics.java650 * Copies source to dest.
651 * <p>Neither source nor dest can be null.</p>
653 * @param source SummaryStatistics to copy
655 * @throws NullPointerException if either source or dest is null
657 public static void copy(SummaryStatistics source, SummaryStatistics dest) { argument
658 dest.maxImpl = source.maxImpl.copy();
659 dest.meanImpl = source.meanImpl.copy();
660 dest.minImpl = source.minImpl.copy();
661 dest.sumImpl = source.sumImpl.copy();
662 dest.varianceImpl = source
[all...]
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
H A Dscript_injector_test.py63 def _wrap_inject_script(source, application, script_to_inject):
64 text_chunks = source.split(SEPARATOR)
73 def _assert_no_injection(self, source, application):
75 source, application, SCRIPT_TO_INJECT)
76 self.assertEqual(new_source, source)
80 source, just_injected = _wrap_inject_script(
82 self.assertEqual(source, template.format(injection=EXPECTED_SCRIPT))
105 source = template.format(**parameters)
106 self._assert_no_injection(source, TEXT_HTML)
/external/icu/icu4c/source/i18n/
H A Ddtrule.cpp55 DateTimeRule::DateTimeRule(const DateTimeRule& source) argument
56 : UObject(source),
57 fMonth(source.fMonth), fDayOfMonth(source.fDayOfMonth), fDayOfWeek(source.fDayOfWeek),
58 fWeekInMonth(source.fWeekInMonth), fMillisInDay(source.fMillisInDay),
59 fDateRuleType(source.fDateRuleType), fTimeRuleType(source.fTimeRuleType) {
/external/libvpx/libvpx/vp8/common/
H A Dpostproc.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.
62 void vp8_deblock(VP8_COMMON *cm, YV12_BUFFER_CONFIG *source, argument
101 source->y_buffer + 16 * mbr * source->y_stride,
102 post->y_buffer + 16 * mbr * post->y_stride, source->y_stride,
103 post->y_stride, source->y_width, ylimits, 16);
106 source->u_buffer + 8 * mbr * source
119 vp8_de_noise(VP8_COMMON *cm, YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *post, int q, int low_var_thresh, int flag, int uvfilter) argument
[all...]
/external/zlib/src/contrib/puff/
H A Dpufftest.c93 unsigned char *source = NULL, *dest; local
117 source = load(name, &len);
118 if (source == NULL) {
125 free(source);
130 free(source);
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
153 free(source);
156 puff(dest, &destlen, source + skip, &sourcelen);
163 free(source);
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DVector3DFormat.java252 * @param source the string to parse
257 public Vector3D parse(String source) throws ParseException { argument
259 Vector3D result = parse(source, parsePosition);
263 LocalizedFormats.UNPARSEABLE_3D_VECTOR, source);
270 * @param source the string to parse
274 public Vector3D parse(String source, ParsePosition pos) { argument
278 parseAndIgnoreWhitespace(source, pos);
279 if (!parseFixedstring(source, trimmedPrefix, pos)) {
284 parseAndIgnoreWhitespace(source, pos);
285 Number x = parseNumber(source, forma
339 parseObject(String source, ParsePosition pos) argument
[all...]

Completed in 742 milliseconds

1234567891011>>