Searched refs:source (Results 101 - 125 of 2856) sorted by relevance

1234567891011>>

/external/jsoncpp/scons-tools/
H A Dsrcdist.py8 ## Parse a Doxygen source file and return a dictionary of all the values.
76 ## Doxygen Doxyfile source scanner. This should scan the Doxygen file and add
77 ## any files used to generate docs to the list of source files.
127 def srcDistEmitter(source, target, env):
138 ## data = DoxyfileParse(source[0].get_contents())
156 ## return (targets, source)
157 return (target,source)
/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/libtextclassifier/util/base/
H A Dcasts.h25 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
84 inline Dest bit_cast(const Source &source) { argument
88 memcpy(&dest, &source, sizeof(dest));
/external/llvm/bindings/python/llvm/tests/
H A Dtest_bitreader.py12 source = self.get_test_bc()
13 m = parse_bitcode(MemoryBuffer(filename=source))
/external/vogar/src/vogar/
H A DHostFileCache.java35 private void cp(File source, File destination) { argument
36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
39 throw new RuntimeException("Couldn't copy " + source + " to " + destination
44 private void mv(File source, File destination) { argument
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
48 throw new RuntimeException("Couldn't move " + source + " to " + destination
58 public void copyToCache(File source, String key) { argument
64 cp(source, temporary);
/external/webrtc/webrtc/base/
H A Dstringencode.h4 * 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.
29 // Decode the utf8 encoded value pointed to by source. Returns the number of
31 size_t utf8_decode(const char* source, size_t srclen, unsigned long* value);
36 const char * source, size_t srclen,
38 // Note: in-place unescaping (buffer == source) is allowed.
40 const char * source, size_t srclen,
48 const char * source, size_t srclen,
50 // Note: in-place decoding (buffer == source) i
132 s_url_encode(const std::string& source) argument
135 s_url_decode(const std::string& source) argument
[all...]
/external/icu/icu4c/source/common/
H A Ducnv_u16.c53 const UChar *source; local
61 source=pArgs->source;
62 length=(int32_t)(pArgs->sourceLimit-source);
93 if((c=(UChar)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) {
95 ++source;
126 c=*source++;
131 } else if(U16_IS_SURROGATE_LEAD(c) && count>=2 && U16_IS_TRAIL(trail=*source)) {
132 ++source;
146 c=*source
257 const uint8_t *source; local
652 const UChar *source; local
856 const uint8_t *source; local
1328 const char *source=pArgs->source; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DNormalizationMonkeyTest.java51 String source = getTestSource();
52 logln("Test source:" + source);
54 String uncodeNorm = unicode_NFD.normalize(source);
55 String icuNorm = Normalizer.normalize(source, Normalizer.NFD);
62 uncodeNorm = unicode_NFC.normalize(source);
63 icuNorm = Normalizer.normalize(source, Normalizer.NFC);
70 uncodeNorm = unicode_NFKD.normalize(source);
71 icuNorm = Normalizer.normalize(source, Normalizer.NFKD);
78 uncodeNorm = unicode_NFKC.normalize(source);
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizationMonkeyTest.java50 String source = getTestSource();
51 logln("Test source:" + source);
53 String uncodeNorm = unicode_NFD.normalize(source);
54 String icuNorm = Normalizer.normalize(source, Normalizer.NFD);
61 uncodeNorm = unicode_NFC.normalize(source);
62 icuNorm = Normalizer.normalize(source, Normalizer.NFC);
69 uncodeNorm = unicode_NFKD.normalize(source);
70 icuNorm = Normalizer.normalize(source, Normalizer.NFKD);
77 uncodeNorm = unicode_NFKC.normalize(source);
[all...]
/external/libmojo/mojo/common/
H A Ddata_pipe_utils.cc2 // Use of this source code is governed by a BSD-style license that can be
22 bool BlockingCopyHelper(ScopedDataPipeConsumerHandle source, argument
28 source.get(), &buffer, &num_bytes, MOJO_READ_DATA_FLAG_NONE);
31 result = EndReadDataRaw(source.get(), num_bytes);
35 result = Wait(source.get(),
69 bool BlockingCopyToString(ScopedDataPipeConsumerHandle source, argument
73 return BlockingCopyHelper(std::move(source),
78 const std::string& source,
80 auto it = source.begin();
90 while (it != source
77 BlockingCopyFromString( const std::string& source, const ScopedDataPipeProducerHandle& destination) argument
110 BlockingCopyToFile(ScopedDataPipeConsumerHandle source, const base::FilePath& destination) argument
119 CopyToFile(ScopedDataPipeConsumerHandle source, const base::FilePath& destination, base::TaskRunner* task_runner, const base::Callback<void(bool)>& callback) argument
[all...]
H A Ddata_pipe_utils.h2 // Use of this source code is governed by a BSD-style license that can be
24 // Asynchronously copies data from source to the destination file. The given
28 ScopedDataPipeConsumerHandle source,
34 CopyFromFile(const base::FilePath& source,
40 // Copies the data from |source| into |contents| and returns true on success and
42 // be read from source before the error occurred.
44 ScopedDataPipeConsumerHandle source,
48 const std::string& source,
51 // Synchronously copies data from source to the destination file returning true
53 // data that could be read from the source befor
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dbytestream_unittest.cc5 // Redistribution and use in source and binary forms, with or without
9 // * Redistributions of source code must retain the above copyright
66 MockByteSource source(data, 3);
70 source.CopyTo(&sink, data.size());
76 MockByteSource source(data, 3);
77 source.Skip(1);
81 source.CopyTo(&sink, data.size() - 2);
83 EXPECT_EQ("!", source.Peek());
88 MockByteSource source(data, 3);
89 LimitByteSource limit_source(&source,
[all...]
/external/guice/core/src/com/google/inject/spi/
H A DScopeBinding.java38 private final Object source; field in class:ScopeBinding
42 ScopeBinding(Object source, Class<? extends Annotation> annotationType, Scope scope) { argument
43 this.source = checkNotNull(source, "source");
49 return source;
H A DStaticInjectionRequest.java37 private final Object source; field in class:StaticInjectionRequest
40 StaticInjectionRequest(Object source, Class<?> type) { argument
41 this.source = checkNotNull(source, "source");
46 return source;
H A DTypeListenerBinding.java35 private final Object source; field in class:TypeListenerBinding
39 TypeListenerBinding(Object source, TypeListener listener, argument
41 this.source = source;
57 return source;
/external/v8/src/
H A Dlookup-cache.h2 // Use of this source code is governed by a BSD-style license that can be
21 inline int Lookup(Map* source, Name* name);
24 inline void Update(Map* source, Name* name, int result);
34 keys_[i].source = NULL;
40 static inline int Hash(Object* source, Name* name);
44 Map* source; member in struct:v8::internal::DescriptorLookupCache::Key
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DSilenceTrackImpl.java17 Track source; field in class:SilenceTrackImpl
23 source = ofType;
42 return source.getSampleDescriptionBox();
51 return source.getTrackMetaData();
55 return source.getHandler();
59 return source.isEnabled();
63 return source.isInMovie();
67 return source.isInPreview();
71 return source.isInPoster();
79 return source
[all...]
/external/v8/src/crankshaft/x64/
H A Dlithium-gap-resolver-x64.cc2 // Use of this source code is governed by a BSD-style license that can be
28 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
36 DCHECK(moves_[i].source()->IsConstantOperand());
47 // moves to perform, ignoring any move that is redundant (the source is
64 // which means that a call to PerformMove could change any source operand
73 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
78 // dependencies. Any unperformed, unpending move with a source the same
84 // Though PerformMove can change any source operand in the move graph,
86 // not miss any). Assume there is a non-blocking move with source A
87 // and this move is blocked on source
142 LOperand* source = moves_[index].source(); local
238 LOperand* source = moves_[index].source(); local
[all...]
/external/vulkan-validation-layers/layers/
H A Dparameter_name.h57 * @param source Paramater name string without format specifiers.
59 * @pre The source string must not contain the %i format specifier.
61 ParameterName(const char *source) : source_(source) { assert(IsValid()); } argument
66 * @param source Paramater name string without format specifiers.
68 * @pre The source string must not contain the %i format specifier.
70 ParameterName(const std::string &source) : source_(source) { assert(IsValid()); } argument
75 * @param source Paramater name string without format specifiers.
77 * @pre The source strin
79 ParameterName(const std::string &&source) argument
90 ParameterName(const std::string &source, const IndexVector &args) argument
101 ParameterName(const std::string &&source, const IndexVector &&args) argument
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeArrayBuffer.cpp172 de::ArrayBuffer<int> source(4);
173 *source.getElementPtr(0) = 1;
174 *source.getElementPtr(1) = 2;
175 *source.getElementPtr(2) = 3;
176 *source.getElementPtr(3) = 4;
178 buf.swap(source);
180 DE_TEST_ASSERT(source.size() == 0);
190 de::ArrayBuffer<int> source(4);
192 *source.getElementPtr(1) = 2;
194 deMemcpy(&dst, (int*)source
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUCharacterIterator.java43 * @param source
44 * a valid source as a <code>Replaceable</code> object
49 public static final UCharacterIterator getInstance(Replaceable source) { argument
50 return new ReplaceableUCharacterIterator(source);
54 * Returns a <code>UCharacterIterator</code> object given a source string.
56 * @param source
62 public static final UCharacterIterator getInstance(String source) { argument
63 return new ReplaceableUCharacterIterator(source);
67 * Returns a <code>UCharacterIterator</code> object given a source character array.
69 * @param source
75 getInstance(char[] source) argument
88 getInstance(char[] source, int start, int limit) argument
101 getInstance(StringBuffer source) argument
114 getInstance(CharacterIterator source) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUCharacterIterator.java45 * @param source
46 * a valid source as a <code>Replaceable</code> object
52 public static final UCharacterIterator getInstance(Replaceable source) { argument
53 return new ReplaceableUCharacterIterator(source);
57 * Returns a <code>UCharacterIterator</code> object given a source string.
59 * @param source
66 public static final UCharacterIterator getInstance(String source) { argument
67 return new ReplaceableUCharacterIterator(source);
71 * Returns a <code>UCharacterIterator</code> object given a source character array.
73 * @param source
80 getInstance(char[] source) argument
94 getInstance(char[] source, int start, int limit) argument
108 getInstance(StringBuffer source) argument
122 getInstance(CharacterIterator source) argument
[all...]
/external/v8/src/compiler/
H A Dgap-resolver.cc2 // Use of this source code is governed by a BSD-style license that can be
23 return !move->IsEliminated() && move->source().InterferesWith(destination);
35 const LocationOperand& src_loc = LocationOperand::cast(move->source());
139 // call to PerformMove could change any source operand in the move graph.
145 InstructionOperand source = move->source(); local
146 DCHECK(!source.IsInvalid()); // Or else it will look eliminated.
154 // Any unperformed, unpending move with a source the same as this one's
160 if (other->source().InterferesWith(destination)) {
162 LocationOperand::cast(other->source())
[all...]
/external/libjpeg-turbo/
H A Drdbmp.c53 /* Private version of data source object */
65 JDIMENSION source_row; /* Current source row number */
127 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
128 register JSAMPARRAY colormap = source->colormap;
135 source->source_row--;
137 ((j_common_ptr) cinfo, source->whole_image,
138 source->source_row, (JDIMENSION) 1, FALSE);
142 outptr = source->pub.buffer[0];
158 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
164 source
189 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
225 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
281 bmp_source_ptr source = (bmp_source_ptr) sinfo; local
469 bmp_source_ptr source; local
[all...]
/external/v8/src/crankshaft/x87/
H A Dlithium-gap-resolver-x87.cc2 // Use of this source code is governed by a BSD-style license that can be
33 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
41 DCHECK(moves_[i].source()->IsConstantOperand());
53 // moves to perform, ignoring any move that is redundant (the source is
70 // which means that a call to PerformMove could change any source operand
78 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
83 // dependencies. Any unperformed, unpending move with a source the same
89 // Though PerformMove can change any source operand in the move graph,
91 // not miss any). Assume there is a non-blocking move with source A
92 // and this move is blocked on source
131 LOperand* source = move.source(); local
142 LOperand* source = moves_[index].source(); local
260 LOperand* source = moves_[index].source(); local
363 LOperand* source = moves_[index].source(); local
[all...]

Completed in 608 milliseconds

1234567891011>>