Searched defs:source (Results 226 - 250 of 1548) sorted by relevance

1234567891011>>

/external/vogar/src/vogar/android/
H A DDeviceFileCache.java61 public void copyToCache(File source, String key) { argument
67 cp(source, temporary);
75 private void cp(File source, File temporary) { argument
77 new Command(log, "adb", "shell", "cat", source.getPath(), ">", temporary.getPath())
/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/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DGlShader.java5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
40 private static int compileShader(int shaderType, String source) { argument
45 GLES20.glShaderSource(shader, source);
/external/webrtc/talk/app/webrtc/
H A Dvideotrack.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
67 const std::string& id, VideoSourceInterface* source) {
69 new rtc::RefCountedObject<VideoTrack>(id, source);
66 Create( const std::string& id, VideoSourceInterface* source) argument
/external/webrtc/talk/session/media/
H A Drtcpmuxfilter.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
142 bool RtcpMuxFilter::ExpectOffer(bool offer_enable, ContentSource source) { argument
145 (state_ == ST_SENTOFFER && source == CS_LOCAL) ||
146 (state_ == ST_RECEIVEDOFFER && source == CS_REMOTE));
149 bool RtcpMuxFilter::ExpectAnswer(ContentSource source) { argument
150 return ((state_ == ST_SENTOFFER && source == CS_REMOTE) ||
151 (state_ == ST_RECEIVEDOFFER && source == CS_LOCAL) ||
152 (state_ == ST_SENTPRANSWER && source == CS_LOCAL) ||
153 (state_ == ST_RECEIVEDPRANSWER && source
[all...]
/external/webrtc/webrtc/base/
H A Durlencode.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.
37 static int InternalUrlDecode(const char *source, char *dest, argument
41 while (*source) {
42 switch (*source) {
47 *dest++ = *source;
51 if (source[1] && source[2]) {
52 int value = HexPairValue(source
85 UrlDecode(const char *source, char *dest) argument
89 UrlDecodeWithoutEncodingSpaceAsPlus(const char *source, char *dest) argument
93 InternalUrlEncode(const char *source, char *dest, unsigned int max, bool encode_space_as_plus, bool unsafe_only) argument
[all...]
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dcopy_set_operations.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.
52 int16_t* source,
57 int16_t* sourcePtr = source;
51 WebRtcSpl_MemCpyReversedOrder(int16_t* dest, int16_t* source, size_t length) argument
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Dinput_audio_file.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.
63 void InputAudioFile::DuplicateInterleaved(const int16_t* source, size_t samples, argument
66 // Start from the end of |source| and |destination|, and work towards the
68 // |source| and |destination| are the same array).
71 destination[i * channels + j] = source[i];
/external/zlib/src/examples/
H A Dzpipe.c30 /* Compress from file source to file dest until EOF on source.
36 int def(FILE *source, FILE *dest, int level) argument
54 strm.avail_in = fread(in, 1, CHUNK, source);
55 if (ferror(source)) {
59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
63 compression if all of source has been read in */
86 /* Decompress from file source to file dest until stream ends or EOF.
92 int inf(FILE *source, FILE *dest) argument
112 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/external/ImageMagick/MagickCore/
H A Dutility-private.h233 static inline int rename_utf8(const char *source,const char *destination) argument
236 return(rename(source,destination));
245 source_wide=create_wchar_path(source);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DPlotStatistics.java79 private void annotatePlot(Plot source, Canvas canvas) { argument
93 RectF r = source.getDisplayDimensions().canvasRect;
100 public void onBeforeDraw(Plot source, Canvas canvas) { argument
105 public void onAfterDraw(Plot source, Canvas canvas) { argument
116 annotatePlot(source, canvas);
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DAbstractFormat.java139 * Parses <code>source</code> until a non-whitespace character is found.
140 * @param source the string to parse
144 protected static void parseAndIgnoreWhitespace(final String source, argument
146 parseNextCharacter(source, pos);
151 * Parses <code>source</code> until a non-whitespace character is found.
152 * @param source the string to parse
156 protected static char parseNextCharacter(final String source, argument
159 final int n = source.length();
165 c = source.charAt(index++);
H A DBigFractionFormat.java186 * @param source the string to parse
192 public BigFraction parse(final String source) throws ParseException { argument
194 final BigFraction result = parse(source, parsePosition);
198 LocalizedFormats.UNPARSEABLE_FRACTION_NUMBER, source);
206 * @param source the string to parse
211 public BigFraction parse(final String source, final ParsePosition pos) { argument
215 parseAndIgnoreWhitespace(source, pos);
218 final BigInteger num = parseNextBigInteger(source, pos);
229 final char c = parseNextCharacter(source, pos);
248 parseAndIgnoreWhitespace(source, po
270 parseNextBigInteger(final String source, final ParsePosition pos) argument
[all...]
H A DFractionFormat.java197 * @param source the string to parse
203 public Fraction parse(final String source) throws ParseException { argument
205 final Fraction result = parse(source, parsePosition);
209 LocalizedFormats.UNPARSEABLE_FRACTION_NUMBER, source);
217 * @param source the string to parse
222 public Fraction parse(final String source, final ParsePosition pos) { argument
226 parseAndIgnoreWhitespace(source, pos);
229 final Number num = getNumeratorFormat().parse(source, pos);
240 final char c = parseNextCharacter(source, pos);
259 parseAndIgnoreWhitespace(source, po
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DSynchronizedDescriptiveStatistics.java156 * Copies source to dest.
157 * <p>Neither source nor dest can be null.</p>
158 * <p>Acquires synchronization lock on source, then dest before copying.</p>
160 * @param source SynchronizedDescriptiveStatistics to copy
162 * @throws NullPointerException if either source or dest is null
164 public static void copy(SynchronizedDescriptiveStatistics source, argument
166 synchronized (source) {
168 DescriptiveStatistics.copy(source, dest);
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DFirstMoment.java146 * Copies source to dest.
147 * <p>Neither source nor dest can be null.</p>
149 * @param source FirstMoment to copy
151 * @throws NullPointerException if either source or dest is null
153 public static void copy(FirstMoment source, FirstMoment dest) { argument
154 dest.setData(source.getDataRef());
155 dest.n = source.n;
156 dest.m1 = source.m1;
157 dest.dev = source.dev;
158 dest.nDev = source
[all...]
H A DGeometricMean.java181 * Copies source to dest.
182 * <p>Neither source nor dest can be null.</p>
184 * @param source GeometricMean to copy
186 * @throws NullPointerException if either source or dest is null
188 public static void copy(GeometricMean source, GeometricMean dest) { argument
189 dest.setData(source.getDataRef());
190 dest.sumOfLogs = source.sumOfLogs.copy();
H A DKurtosis.java209 * Copies source to dest.
210 * <p>Neither source nor dest can be null.</p>
212 * @param source Kurtosis to copy
214 * @throws NullPointerException if either source or dest is null
216 public static void copy(Kurtosis source, Kurtosis dest) { argument
217 dest.setData(source.getDataRef());
218 dest.moment = source.moment.copy();
219 dest.incMoment = source.incMoment;
H A DMean.java260 * Copies source to dest.
261 * <p>Neither source nor dest can be null.</p>
263 * @param source Mean to copy
265 * @throws NullPointerException if either source or dest is null
267 public static void copy(Mean source, Mean dest) { argument
268 dest.setData(source.getDataRef());
269 dest.incMoment = source.incMoment;
270 dest.moment = source.moment.copy();
H A DSkewness.java201 * Copies source to dest.
202 * <p>Neither source nor dest can be null.</p>
204 * @param source Skewness to copy
206 * @throws NullPointerException if either source or dest is null
208 public static void copy(Skewness source, Skewness dest) { argument
209 dest.setData(source.getDataRef());
210 dest.moment = new ThirdMoment(source.moment.copy());
211 dest.incMoment = source.incMoment;
H A DStandardDeviation.java259 * Copies source to dest.
260 * <p>Neither source nor dest can be null.</p>
262 * @param source StandardDeviation to copy
264 * @throws NullPointerException if either source or dest is null
266 public static void copy(StandardDeviation source, StandardDeviation dest) { argument
267 dest.setData(source.getDataRef());
268 dest.variance = source.variance.copy();
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DMax.java151 * Copies source to dest.
152 * <p>Neither source nor dest can be null.</p>
154 * @param source Max to copy
156 * @throws NullPointerException if either source or dest is null
158 public static void copy(Max source, Max dest) { argument
159 dest.setData(source.getDataRef());
160 dest.n = source.n;
161 dest.value = source.value;
H A DMin.java151 * Copies source to dest.
152 * <p>Neither source nor dest can be null.</p>
154 * @param source Min to copy
156 * @throws NullPointerException if either source or dest is null
158 public static void copy(Min source, Min dest) { argument
159 dest.setData(source.getDataRef());
160 dest.n = source.n;
161 dest.value = source.value;
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java211 * Copies source to dest.
212 * <p>Neither source nor dest can be null.</p>
214 * @param source Product to copy
216 * @throws NullPointerException if either source or dest is null
218 public static void copy(Product source, Product dest) { argument
219 dest.setData(source.getDataRef());
220 dest.n = source.n;
221 dest.value = source.value;
H A DSum.java207 * Copies source to dest.
208 * <p>Neither source nor dest can be null.</p>
210 * @param source Sum to copy
212 * @throws NullPointerException if either source or dest is null
214 public static void copy(Sum source, Sum dest) { argument
215 dest.setData(source.getDataRef());
216 dest.n = source.n;
217 dest.value = source.value;

Completed in 391 milliseconds

1234567891011>>