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

/frameworks/native/libs/binder/
H A DAndroid.mk15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
44 LOCAL_SRC_FILES := $(sources)
51 LOCAL_SRC_FILES := $(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/av/cmds/stagefright/
H A Dstagefright.cpp504 Vector<sp<MediaSource> > &sources, bool syncInfoPresent) {
516 for (size_t i = 0; i < sources.size(); ++i) {
517 sp<MediaSource> source = sources.editItemAt(i);
503 writeSourcesToMP4( Vector<sp<MediaSource> > &sources, bool syncInfoPresent) argument
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp1145 // * Resume fetchers that are still needed and assign them original packet sources.
1151 sp<AnotherPacketSource> sources[kMaxStreams]; local
1154 sources[j] = mPacketSources.valueFor(indexToType(j));
1159 if (sources[kAudioIndex] != NULL || sources[kVideoIndex] != NULL
1160 || sources[kSubtitleIndex] != NULL) {
1162 sources[kAudioIndex], sources[kVideoIndex], sources[kSubtitleIndex]);
1189 sp<AnotherPacketSource> sources[kMaxStream local
[all...]
/frameworks/base/core/java/android/view/
H A DInputDevice.java36 * Some input devices present multiple distinguishable sources of input.
39 * As a further wrinkle, different kinds of input sources uses different coordinate systems
349 int productId, String descriptor, boolean isExternal, int sources, int keyboardType,
359 mSources = sources;
558 * Gets the input sources supported by this input device as a combined bitfield.
559 * @return The supported input sources.
593 * If the device supports multiple sources, the same axis may have different meanings
619 * If the device supports multiple sources, the same axis may have different meanings
348 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 hasButtonUnderPad) argument
/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/base/core/java/android/text/
H A DTextUtils.java826 String[] sources,
830 for (int i = 0; i < sources.length; i++) {
831 int where = indexOf(tb, sources[i]);
834 tb.setSpan(sources[i], where, where + sources[i].length(),
838 for (int i = 0; i < sources.length; i++) {
839 int start = tb.getSpanStart(sources[i]);
840 int end = tb.getSpanEnd(sources[i]);
825 replace(CharSequence template, String[] sources, CharSequence[] destinations) argument
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp793 FakeInputMapper(InputDevice* device, uint32_t sources) : argument
795 mSources(sources), mKeyboardType(AINPUT_KEYBOARD_TYPE_NONE),
998 const String8& name, uint32_t classes, uint32_t sources,
1001 FakeInputMapper* mapper = new FakeInputMapper(device, sources);
1047 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1051 << "Should return value provided by mapper when device id is valid and the device supports some of the sources.";
1055 << "Should return unknown when the device id is < 0 but the sources are not supported by any device.";
1059 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1074 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1078 << "Should return value provided by mapper when device id is valid and the device supports some of the sources
997 addDeviceWithFakeInputMapper(int32_t deviceId, int32_t controllerNumber, const String8& name, uint32_t classes, uint32_t sources, const PropertyMap* configuration) argument
[all...]
/frameworks/base/services/input/
H A DInputReader.cpp153 static inline bool sourcesMatchMask(uint32_t sources, uint32_t sourceMask) { argument
154 return (sources & sourceMask & ~ AINPUT_SOURCE_CLASS_MASK) != 0;
367 ALOGI("Device added: id=%d, name='%s', sources=0x%08x", deviceId,
391 ALOGI("Device removed: id=%d, name='%s', sources=0x%08x",
2754 // Configure device sources, surface dimensions, orientation and

Completed in 333 milliseconds