Searched defs:source (Results 151 - 175 of 1548) sorted by relevance

1234567891011>>

/external/v8/src/
H A Dlookup-cache-inl.h2 // Use of this source code is governed by a BSD-style license that can be
13 int DescriptorLookupCache::Hash(Object* source, Name* name) { argument
17 static_cast<uint32_t>(reinterpret_cast<uintptr_t>(source)) >>
23 int DescriptorLookupCache::Lookup(Map* source, Name* name) { argument
24 int index = Hash(source, name);
26 if ((key.source == source) && (key.name == name)) return results_[index];
30 void DescriptorLookupCache::Update(Map* source, Name* name, int result) { argument
32 int index = Hash(source, name);
34 key.source
[all...]
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/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/talk/app/webrtc/
H A Daudiotrack.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
41 const scoped_refptr<AudioSourceInterface>& source) {
42 return new rtc::RefCountedObject<AudioTrack>(id, source);
46 const scoped_refptr<AudioSourceInterface>& source)
47 : MediaStreamTrack<AudioTrackInterface>(label), audio_source_(source) {
39 Create( const std::string& id, const scoped_refptr<AudioSourceInterface>& source) argument
45 AudioTrack(const std::string& label, const scoped_refptr<AudioSourceInterface>& source) argument
/external/webrtc/webrtc/base/
H A Dbitbuffer.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.
40 // Returns the result of writing partial data from |source|, of
43 uint8_t WritePartialByte(uint8_t source, argument
58 // the bits from the source we want.
59 return (target & ~mask) | (source >> target_bit_offset);
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/webrtc/webrtc/common_audio/resampler/
H A Dpush_sinc_resampler.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.
34 size_t PushSincResampler::Resample(const int16_t* source, argument
41 source_ptr_int_ = source;
42 // Pass nullptr as the float source to have Run() read from the int16 source.
49 size_t PushSincResampler::Resample(const float* source, argument
55 // Cache the source pointer. Calling Resample() will immediately trigger
57 source_ptr_ = source;
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Drtp_file_source.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.
30 RtpFileSource* source = new RtpFileSource(); local
31 RTC_CHECK(source->OpenFile(file_name));
32 return source;
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs39 public int Put(byte[] source, int offset, int count) argument
44 _buffer[(_tail+i) % _capacity] = source[offset+i];
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DProperBigFractionFormat.java130 * @param source the string to parse
135 public BigFraction parse(final String source, final ParsePosition pos) { argument
137 BigFraction ret = super.parse(source, pos);
145 parseAndIgnoreWhitespace(source, pos);
148 BigInteger whole = parseNextBigInteger(source, pos);
158 parseAndIgnoreWhitespace(source, pos);
161 BigInteger num = parseNextBigInteger(source, pos);
178 final char c = parseNextCharacter(source, pos);
197 parseAndIgnoreWhitespace(source, pos);
200 final BigInteger den = parseNextBigInteger(source, po
[all...]
H A DProperFractionFormat.java130 * @param source the string to parse
135 public Fraction parse(String source, ParsePosition pos) { argument
137 Fraction ret = super.parse(source, pos);
145 parseAndIgnoreWhitespace(source, pos);
148 Number whole = getWholeFormat().parse(source, pos);
158 parseAndIgnoreWhitespace(source, pos);
161 Number num = getNumeratorFormat().parse(source, pos);
178 char c = parseNextCharacter(source, pos);
197 parseAndIgnoreWhitespace(source, pos);
200 Number den = getDenominatorFormat().parse(source, po
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DFourthMoment.java131 * Copies source to dest.
132 * <p>Neither source nor dest can be null.</p>
134 * @param source FourthMoment to copy
136 * @throws NullPointerException if either source or dest is null
138 public static void copy(FourthMoment source, FourthMoment dest) { argument
139 ThirdMoment.copy(source, dest);
140 dest.m4 = source.m4;
H A DSecondMoment.java112 * Copies source to dest.
113 * <p>Neither source nor dest can be null.</p>
115 * @param source SecondMoment to copy
117 * @throws NullPointerException if either source or dest is null
119 public static void copy(SecondMoment source, SecondMoment dest) { argument
120 FirstMoment.copy(source, dest);
121 dest.m2 = source.m2;
H A DThirdMoment.java126 * Copies source to dest.
127 * <p>Neither source nor dest can be null.</p>
129 * @param source ThirdMoment to copy
131 * @throws NullPointerException if either source or dest is null
133 public static void copy(ThirdMoment source, ThirdMoment dest) { argument
134 SecondMoment.copy(source, dest);
135 dest.m3 = source.m3;
136 dest.nDevSq = source.nDevSq;
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DCompositeFormat.java59 * Parses <code>source</code> until a non-whitespace character is found.
61 * @param source the string to parse
65 protected void parseAndIgnoreWhitespace(final String source, argument
67 parseNextCharacter(source, pos);
72 * Parses <code>source</code> until a non-whitespace character is found.
74 * @param source the string to parse
78 protected char parseNextCharacter(final String source, argument
81 final int n = source.length();
87 c = source.charAt(index++);
100 * Parses <code>source</cod
108 parseNumber(final String source, final double value, final ParsePosition pos) argument
140 parseNumber(final String source, final NumberFormat format, final ParsePosition pos) argument
170 parseFixedstring(final String source, final String expected, final ParsePosition pos) argument
[all...]
/external/autotest/frontend/client/src/autotest/afe/
H A DHostTableDecorator.java82 public void doCallback(Object source) { argument
83 assert source == lockedFilter;
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DTrialOutputLogger.java88 * @param source The source of the line (e.g. 'stderr')
91 synchronized void log(String source, String line) { argument
93 writer.printf("[%s] %s%n", source, line);
/external/clang/unittests/Lex/
H A DPPConditionalDirectiveRecordTest.cpp72 const char *source = local
92 llvm::MemoryBuffer::getMemBuffer(source);
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderExecutor.hpp55 std::string source; //!< Source snippet to be executed. member in struct:vkt::shaderexecutor::ShaderSpec
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java85 * Build a SourcePositionInfo from the XML source= notation
87 public static SourcePositionInfo fromXml(String source) { argument
88 if (source != null) {
89 for (int i = 0; i < source.length(); i++) {
90 if (source.charAt(i) == ':') {
91 return new SourcePositionInfo(source.substring(0, i), Integer.parseInt(source
/external/flatbuffers/android/jni/
H A Dinclude.mk181 # Override the default behavior of local-source-file-path to workaround
184 local-source-file-path=\
205 # set your source files to be dependent on the generated headers. For example:
222 $(eval $(call local-source-file-path,$(src)): \
231 $(eval $(call local-source-file-path,$(src)): $(strip $(7)))),)\
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DStreamBitmapDecoder.java49 public Resource<Bitmap> decode(InputStream source, int width, int height) { argument
50 Bitmap bitmap = downsampler.decode(source, bitmapPool, width, height, decodeFormat);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
H A DFileToStreamDecoder.java34 public Resource<T> decode(File source, int width, int height) throws IOException { argument
38 is = fileOpener.open(source);
H A DStreamFileDataLoadProvider.java51 public Resource<File> decode(InputStream source, int width, int height) { argument
/external/guice/core/src/com/google/inject/internal/
H A DBoundProviderFactory.java40 Object source,
42 super(source);
50 providerFactory = injector.getInternalFactory(providerKey, errors.withSource(source), JitLimitation.NEW_OR_EXISTING_JIT);
58 context.pushState(providerKey, source);
37 BoundProviderFactory( InjectorImpl injector, Key<? extends javax.inject.Provider<? extends T>> providerKey, Object source, ProvisionListenerStackCallback<T> provisionCallback) argument

Completed in 642 milliseconds

1234567891011>>