Searched defs:sources (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/native/libs/binder/
H A DAndroid.mk15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
53 LOCAL_SRC_FILES := $(sources)
65 LOCAL_SRC_FILES := $(sources)
/frameworks/base/media/java/android/media/
H A DAudioPatch.java21 * An AudioPatch describes a connection between audio sources and audio sinks.
36 AudioPatch(AudioHandle patchHandle, AudioPortConfig[] sources, AudioPortConfig[] sinks) { argument
38 mSources = sources;
43 * Retrieve the list of sources of this audio patch.
45 public AudioPortConfig[] sources() { method in class:AudioPatch
H A DAudioSystem.java708 AudioPortConfig[] sources, AudioPortConfig[] sinks);
707 createAudioPatch(AudioPatch[] patch, AudioPortConfig[] sources, AudioPortConfig[] sinks) argument
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetDebugMessageLog.java1 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
3 glGetDebugMessageLog( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLog( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
H A DglGetDebugMessageLogKHR.java1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
3 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioRoute.h41 void setSources(const AudioPortVector &sources) { mSources = sources; } argument
H A DSerializer.h141 static const char sources[]; /**< sources: all source that can be involved in this route. */ member in struct:android::RouteTraits::Attributes
/frameworks/base/tools/split-select/
H A DAndroid.mk27 sources := \ macro
75 LOCAL_SRC_FILES := $(sources)
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java186 * @param sources Source items to be filtered.
195 @NonNull List<T> sources,
202 final int sourceSize = sources.size();
204 final Locale locale = extractor.get(sources.get(i));
223 dest.add(sources.get(entry.mIndex));
194 filterByLanguage( @onNull List<T> sources, @NonNull LocaleExtractor<T> extractor, @NonNull LocaleList preferredLanguages, @NonNull ArrayList<T> dest) argument
/frameworks/base/tools/aapt2/
H A DAndroid.mk24 sources := \ macro
74 sources += Format.proto
145 protoIncludes := $(call generated-sources-dir-for,STATIC_LIBRARIES,libaapt2,HOST)
165 LOCAL_SRC_FILES := $(sources)
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DHwModule.cpp157 Vector <sp<AudioPort> > sources = route->getSources(); local
158 for (size_t i = 0; i < sources.size(); i++) {
159 if (sources[i]->getType() == AUDIO_PORT_TYPE_DEVICE) {
160 sourceDevices.add(mDeclaredDevices.getDeviceFromTagName(sources[i]->getTagName()));
H A DSerializer.cpp342 const char RouteTraits::Attributes::sources[] = "sources"; member in class:android::RouteTraits::Attributes
372 string sourcesAttr = getXmlAttribute(root, Attributes::sources);
374 ALOGE("%s: No %s found", __FUNCTION__, Attributes::sources);
378 AudioPortVector sources; local
388 sources.add(source);
395 for (size_t i = 0; i < sources.size(); i++) {
396 sp<AudioPort> source = sources.itemAt(i);
399 element->setSources(sources);
/frameworks/base/media/mca/filterfw/native/core/
H A Dgl_frame.cpp206 std::vector<const GLFrame*> sources; local
207 sources.push_back(frame);
208 GetIdentity()->Process(sources, this);
377 std::vector<const GLFrame*> sources; local
378 sources.push_back(this);
385 GetIdentity()->Process(sources, &target);
/frameworks/base/packages/StatementService/src/com/android/statementservice/
H A DDirectStatementService.java105 * A String ArrayList bundle entry that stores sources that can't be verified.
188 List<String> sources = extras.getStringArrayList(EXTRA_SOURCE_ASSET_DESCRIPTORS);
197 if (sources == null) {
214 new IsAssociatedCallable(sources, target, relation, resultReceiver), TAG));
228 public IsAssociatedCallable(List<String> sources, String target, String relation, argument
230 mSources = sources;
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp312 const std::vector<Source*>& sources,
320 for (Source* source : sources) {
335 for (Source* source : sources) {
356 sourcesToFuse.push_back(sources[p.first]);
373 Source* source = sources[p.first];
309 buildScriptGroup( BCCContext& Context, const char* pOutputFilepath, const char* pRuntimePath, const char* pRuntimeRelaxedPath, bool dumpIR, const char* buildChecksum, const std::vector<Source*>& sources, const std::list<std::list<std::pair<int, int>>>& toFuse, const std::list<std::string>& fused, const std::list<std::list<std::pair<int, int>>>& invokes, const std::list<std::string>& invokeBatchNames) argument
H A DRSScriptGroupFusion.cpp91 int getFusedFuncSig(const std::vector<Source*>& sources, argument
98 for (const Source* source : sources) {
134 const std::vector<Source*>& sources,
138 int error = getFusedFuncSig(sources, slots, signature);
144 const Function* firstF = getFunction(M, sources.front(), slots.front(), nullptr);
165 const Function* lastF = getFunction(M, sources.back(), slots.back(), nullptr);
177 const std::vector<Source *>& sources,
181 bccAssert(sources.size() == slots.size() && "sources and slots differ in size");
186 getFusedFuncType(Context, sources, slot
133 getFusedFuncType(bcc::BCCContext& Context, const std::vector<Source*>& sources, const std::vector<int>& slots, Module* M, uint32_t* signature) argument
176 fuseKernels(bcc::BCCContext& Context, const std::vector<Source *>& sources, const std::vector<int>& slots, const std::string& fusedName, Module* mergedModule) argument
[all...]
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp190 std::vector<bcc::Source*> sources; local
198 sources.push_back(source);
216 sources, sourcesAndSlots, fusedKernelNames,
/frameworks/av/media/img_utils/src/
H A DTiffWriter.cpp59 status_t TiffWriter::write(Output* out, StripSource** sources, size_t sourcesCount, argument
89 " sources (%zu).", __FUNCTION__, offVecSize, sourcesCount);
112 if (sources[j]->getIfd() == ifdKey) {
113 if ((ret = sources[i]->writeToStream(endOut, sizeToWrite)) != OK) {
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp510 Vector<sp<IMediaSource> > &sources, bool syncInfoPresent) {
527 for (size_t i = 0; i < sources.size(); ++i) {
528 sp<IMediaSource> source = sources.editItemAt(i);
509 writeSourcesToMP4( Vector<sp<IMediaSource> > &sources, bool syncInfoPresent) argument
/frameworks/base/core/java/android/view/
H A DInputDevice.java37 * Some input devices present multiple distinguishable sources of input.
40 * As a further wrinkle, different kinds of input sources uses different coordinate systems
398 int productId, String descriptor, boolean isExternal, int sources, int keyboardType,
409 mSources = sources;
624 * Gets the input sources supported by this input device as a combined bitfield.
625 * @return The supported input sources.
632 * Determines whether the input device supports the given source or sources.
634 * @param source The input source or sources to check against. This can be a generic device
636 * {@link InputDevice#SOURCE_CLASS_POINTER}, or a combination of sources bitwise ORed together.
637 * @return Whether the device can produce all of the given sources
397 InputDevice(int id, int generation, int controllerNumber, String name, int vendorId, int productId, String descriptor, boolean isExternal, int sources, int keyboardType, KeyCharacterMap keyCharacterMap, boolean hasVibrator, boolean hasMicrophone, boolean hasButtonUnderPad) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java281 public void processMulti(TextureSource[] sources, RenderTarget target, int width, int height) { argument
284 checkTexCount(sources.length);
287 bindInputTextures(sources);
610 private void bindInputTextures(TextureSource[] sources) { argument
611 for (int i = 0; i < sources.length; ++i) {
616 sources[i].bind();
623 throw new RuntimeException("Shader does not seem to support " + sources.length
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp820 // temporarily disable packet sources to be swapped to prevent
873 // re-enable all packet sources
1200 sp<AnotherPacketSource> sources[kNumSources], uint32_t streamMask, bool newUri) {
1207 if ((sources[kVideoIndex] != NULL) // video fetcher; or ...
1208 || (!(streamMask & STREAMTYPE_VIDEO) && sources[kAudioIndex] != NULL)) {
1225 sp<AnotherPacketSource> sources[kNumSources]; local
1229 sources[i] = getPacketSourceForStreamIndex(i, newUri);
1241 sources[kAudioIndex],
1242 sources[kVideoIndex],
1243 sources[kSubtitleInde
1199 getMetadataSource( sp<AnotherPacketSource> sources[kNumSources], uint32_t streamMask, bool newUri) argument
1837 sp<AnotherPacketSource> sources[kNumSources]; local
[all...]
/frameworks/base/core/java/android/text/
H A DTextUtils.java844 String[] sources,
848 for (int i = 0; i < sources.length; i++) {
849 int where = indexOf(tb, sources[i]);
852 tb.setSpan(sources[i], where, where + sources[i].length(),
856 for (int i = 0; i < sources.length; i++) {
857 int start = tb.getSpanStart(sources[i]);
858 int end = tb.getSpanEnd(sources[i]);
843 replace(CharSequence template, String[] sources, CharSequence[] destinations) argument
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp2159 Vector<StripSource*> sources; local
2166 ALOGV("%s: Adding thumbnail strip sources.", __FUNCTION__);
2173 sources.add(thumbnailSource.get());
2197 sources.add(&stripSource);
2200 if ((ret = writer->write(out.get(), sources.editArray(), sources.size())) != OK) {
2214 sources.add(&stripSource);
2217 if ((ret = writer->write(out.get(), sources.editArray(), sources.size())) != OK) {
2269 Vector<StripSource*> sources; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java303 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
308 int[] sources,
321 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
325 java.nio.IntBuffer sources,
332 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
336 int[] sources,
345 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
349 java.nio.IntBuffer sources,
305 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
323 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
334 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
347 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument

Completed in 1035 milliseconds

12