HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 676 - 700 of 1682) sorted by null

<<21222324252627282930>>

  /frameworks/av/media/libaaudio/src/legacy/
AudioStreamRecord.cpp 2 * Copyright 2016 The Android Open Source Project
142 const audio_source_t source = local
148 .source = source,
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 2 * Copyright (C) 2013 The Android Open Source Project
245 // only convert if the source encoding isn't already UTF-8
261 const char* source = mValues.getEntry(i); local
270 &source, source + strlen(source),
388 const char *source = input; local
397 if (source != sourceLimit) {
398 inchar = (source[0] << 8) + source[1]
    [all...]
IMediaExtractor.cpp 2 * Copyright (C) 2009 The Android Open Source Project
235 str.append(", source ");
250 const sp<IMediaSource> source = wSource.promote(); local
251 if (source == NULL) {
266 const sp<IMediaSource> &source) {
276 instance.tracks.push_front(source);
277 if (source != NULL) {
278 instance.trackDescriptions.push_front(source->getFormat()->toString());
289 const sp<DataSource> &source,
294 ex.sourceDescription = source->toString()
    [all...]
IMediaMetadataRetriever.cpp 3 ** Copyright (C) 2008 The Android Open Source Project
134 status_t setDataSource(const sp<IDataSource>& source, const char *mime)
138 data.writeStrongBinder(IInterface::asBinder(source));
344 sp<IDataSource> source = local
346 if (source == NULL) {
354 reply->writeInt32(setDataSource(source, mime));
  /frameworks/av/media/libstagefright/
AudioSource.cpp 2 * Copyright (C) 2010 The Android Open Source Project
36 AudioSource *source = (AudioSource *) user; local
39 source->dataCallback(*((AudioRecord::Buffer *) info));
  /frameworks/av/media/libstagefright/codecs/on2/enc/
SoftVPXEncoder.cpp 2 * Copyright (C) 2013 The Android Open Source Project
664 const uint8_t *source = local
669 source = extractGraphicBuffer(
671 source, inputBufferHeader->nFilledLen,
673 if (source == NULL) {
681 source, mConversionBuffer, mWidth, mHeight);
683 source = mConversionBuffer;
688 kInputBufferAlignment, (uint8_t *)source);
  /frameworks/av/media/mtp/
MtpDescriptors.h 2 * Copyright (C) 2017 The Android Open Source Project
44 struct usb_endpoint_descriptor_no_audio source; member in struct:android::func_desc
52 struct usb_endpoint_descriptor_no_audio source; member in struct:android::ss_func_desc
  /frameworks/av/media/ndk/
NdkMediaDataSource.cpp 2 * Copyright (C) 2018 The Android Open Source Project
227 sp<DataSource> source = DataSourceFactory::CreateFromURI(service, uri, &headers); local
228 if (source == NULL) {
229 ALOGE("AMediaDataSource_newUri source is null");
232 ALOGI("AMediaDataSource_newUri source %s flags %u", source->toString().c_str(), source->flags());
233 AMediaDataSource* aSource = convertDataSourceToAMediaDataSource(source);
234 aSource->mImpl = source;
235 aSource->mFlags = source->flags()
    [all...]
  /frameworks/av/services/audioflinger/
NBAIO_Tee.cpp 2 * Copyright (C) 2018 The Android Open Source Project
196 auto &source = sinkSource.second; local
197 if (source.get() == nullptr) {
201 const NBAIO_Format format = source->format();
206 auto &source = sinkSource.second;
207 ssize_t actualRead = source->read(buffer, frames);
210 actualRead = source->read(buffer, frames);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
HwModule.cpp 2 * Copyright (C) 2015 The Android Open Source Project
169 for (const auto& source : route->getSources()) {
170 if (source->getType() == AUDIO_PORT_TYPE_DEVICE) {
171 sourceDevices.add(mDeclaredDevices.getDeviceFromTagName(source->getTagName()));
197 ALOGE("%s: invalid source devices for %s", __FUNCTION__, stream->getName().string());
203 ALOGE("%s: invalid source devices for %s", __FUNCTION__, stream->getName().string());
211 sp<AudioPort> source = route->getSources().findByTagName(stream->getTagName()); local
212 if (source == 0 || stream != source) {
  /frameworks/av/services/oboeservice/
AAudioServiceEndpointMMAP.cpp 2 * Copyright (C) 2017 The Android Open Source Project
90 const audio_source_t source = (direction == AAUDIO_DIRECTION_INPUT) local
99 .source = source,
  /external/guice/extensions/persist/lib/
ognl-2.6.7.jar 
  /developers/build/lib/
assetstudio.jar 
  /external/guice/extensions/struts2/lib/
ognl-3.0.jar 
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestTransforms.java 188 private String makeLegacyTransformID(String source, String target, String variant) {
190 return source + "-" + target + "/" + variant;
192 return source + "-" + target;
217 String source = parts.getAttributeValue(element, "source"); local
222 if (source != null && target != null) {
224 addTransformID(makeLegacyTransformID(source, target, variant), file, ids);
226 addTransformID(makeLegacyTransformID(source, target, variant), file, ids);
227 addTransformID(makeLegacyTransformID(target, source, variant), file, ids);
317 String source = items[0] local
451 String source = parts[0]; local
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
Pick.java 120 static public Pick codePoint(String source) {
121 return new CodePoint(new UnicodeSet(source));
129 static public Pick codePoint(UnicodeSet source) {
130 return new CodePoint(source);
133 static public Pick string(String source) {
134 return new Literal(source);
137 static public Pick unquoted(String source) {
138 return new Literal(source);
329 private UnicodeSet source; field in class:Pick.CodePoint
331 private CodePoint(UnicodeSet source) {
    [all...]
  /external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/framed/
Http2.java 31 import okio.Source;
84 @Override public FrameReader newReader(BufferedSource source, boolean client) {
85 return new Reader(source, 4096, client);
93 private final BufferedSource source; field in class:Http2.Reader
100 Reader(BufferedSource source, int headerTableSize, boolean client) {
101 this.source = source;
103 this.continuation = new ContinuationSource(this.source);
109 ByteString connectionPreface = source.readByteString(CONNECTION_PREFACE.size());
118 source.require(9); // Frame header siz
599 private final BufferedSource source; field in class:Http2.ContinuationSource
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
TestIDNA.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
104 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString());
119 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString());
134 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString());
155 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString());
169 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString());
184 errln("Did not get the expected exception for source: " +src +" Got: "+ ex.toString());
204 errln("convertToASCII did not get the expected exception for source: " +src +"\n Got: "+ ex.toString() +"\n Expected: " +ex.toString());
219 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString());
234 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString())
421 StringBuffer source = new StringBuffer(www); local
543 StringBuffer source = new StringBuffer(www); local
638 StringBuffer source = new StringBuffer(); local
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetSCSU.java 236 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets,
260 labelType = fastSingle(source, target, offsets, ByteMode);
264 labelType = singleByteMode(source, target, offsets, ByteMode);
267 endLoop(source, target, offsets);
274 labelType = fastSingle(source, target, offsets, UnicodeMode);
278 labelType = singleByteMode(source, target, offsets, UnicodeMode);
281 endLoop(source, target, offsets);
290 private int fastSingle(ByteBuffer source, CharBuffer target, IntBuffer offsets, int modeType){
295 while(source.hasRemaining() && target.hasRemaining() && (b=(short)(source.get(source.position()) & UConverterConstants.UNSIGNED_BYTE_MASK)) >= 0x20)
    [all...]
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestConversion.java 402 CharBuffer source = CharBuffer.wrap(cc.unicode.toCharArray()); local
420 source.limit(currentSourceLimit);
423 cr = encoder.encode(source, target, currentSourceLimit == sourceLen);
714 ByteBuffer source; local
718 source = cc.bytes;
720 source.position(0);
734 source.limit((iStep <= sourceLen) ? iStep : sourceLen);
737 flush = (cc.finalFlush && source.limit() == sourceLen);
741 source.limit(sourceLen);
747 if (source.hasRemaining())
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
TestIDNA.java 101 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString());
116 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString());
131 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString());
152 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString());
166 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString());
181 errln("Did not get the expected exception for source: " +src +" Got: "+ ex.toString());
201 errln("convertToASCII did not get the expected exception for source: " +src +"\n Got: "+ ex.toString() +"\n Expected: " +ex.toString());
216 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString());
231 errln("convertToASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString());
251 errln("convertToIDNASCII did not get the expected exception for source: " +src +" Got: "+ ex.toString())
418 StringBuffer source = new StringBuffer(www); local
540 StringBuffer source = new StringBuffer(www); local
635 StringBuffer source = new StringBuffer(); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 2 * Copyright (C) 2010 The Android Open Source Project
47 import okio.Source;
527 public Entry(Source in) throws IOException {
529 BufferedSource source = Okio.buffer(in); local
530 url = source.readUtf8LineStrict();
531 requestMethod = source.readUtf8LineStrict();
533 int varyRequestHeaderLineCount = readInt(source);
535 varyHeadersBuilder.addLenient(source.readUtf8LineStrict());
539 StatusLine statusLine = StatusLine.parse(source.readUtf8LineStrict());
544 int responseHeaderLineCount = readInt(source);
705 Source source = snapshot.getSource(ENTRY_BODY); local
726 @Override public BufferedSource source() { method in class:CacheResponseBody
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 2 * Copyright (C) 2011 The Android Open Source Project
41 import okio.Source;
262 BufferedSource source = Okio.buffer(fileSystem.source(journalFile)); local
264 String magic = source.readUtf8LineStrict();
265 String version = source.readUtf8LineStrict();
266 String appVersionString = source.readUtf8LineStrict();
267 String valueCountString = source.readUtf8LineStrict();
268 String blank = source.readUtf8LineStrict();
281 readJournalLine(source.readUtf8LineStrict())
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Http2.java 26 import okio.Source;
79 @Override public FrameReader newReader(BufferedSource source, boolean client) {
80 return new Reader(source, 4096, client);
88 private final BufferedSource source; field in class:Http2.Reader
95 Reader(BufferedSource source, int headerTableSize, boolean client) {
96 this.source = source;
98 this.continuation = new ContinuationSource(this.source);
104 ByteString connectionPreface = source.readByteString(CONNECTION_PREFACE.size());
113 source.require(9); // Frame header siz
593 private final BufferedSource source; field in class:Http2.ContinuationSource
    [all...]
Spdy3.java 2 * Copyright (C) 2011 The Android Open Source Project
98 @Override public FrameReader newReader(BufferedSource source, boolean client) {
99 return new Reader(source, client);
108 private final BufferedSource source; field in class:Spdy3.Reader
112 Reader(BufferedSource source, boolean client) {
113 this.source = source;
114 this.headerBlockReader = new NameValueBlockReader(this.source);
129 w1 = source.readInt();
130 w2 = source.readInt()
    [all...]

Completed in 1188 milliseconds

<<21222324252627282930>>