Searched refs:sources (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/libs/binder/
H A DAndroid.mk15 # we have the common sources, plus some device-specific stuff
16 sources := \ macro
38 LOCAL_SRC_FILES := $(sources)
44 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/base/core/java/android/text/
H A DTextUtils.java810 String[] sources,
814 for (int i = 0; i < sources.length; i++) {
815 int where = indexOf(tb, sources[i]);
818 tb.setSpan(sources[i], where, where + sources[i].length(),
822 for (int i = 0; i < sources.length; i++) {
823 int start = tb.getSpanStart(sources[i]);
824 int end = tb.getSpanEnd(sources[i]);
809 replace(CharSequence template, String[] sources, CharSequence[] destinations) argument
/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
327 boolean isExternal, int sources,
334 mSources = sources;
482 * Gets the input sources supported by this input device as a combined bitfield.
483 * @return The supported input sources.
507 * If the device supports multiple sources, the same axis may have different meanings
534 * If the device supports multiple sources, the same axis may have different meanings
326 InputDevice(int id, int generation, String name, String descriptor, boolean isExternal, int sources, int keyboardType, KeyCharacterMap keyCharacterMap, boolean hasVibrator) argument
/frameworks/native/libs/utils/
H A DAndroid.mk104 # we have the common sources, plus some device-specific stuff
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp505 Vector<sp<MediaSource> > &sources, bool syncInfoPresent) {
517 for (size_t i = 0; i < sources.size(); ++i) {
518 sp<MediaSource> source = sources.editItemAt(i);
504 writeSourcesToMP4( Vector<sp<MediaSource> > &sources, bool syncInfoPresent) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java1181 String sources[] = {"{0}", "{1}", "{2}"};
1233 return TextUtils.replace(template, sources, destinations);
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp789 FakeInputMapper(InputDevice* device, uint32_t sources) : argument
791 mSources(sources), mKeyboardType(AINPUT_KEYBOARD_TYPE_NONE),
992 const String8& name, uint32_t classes, uint32_t sources,
995 FakeInputMapper* mapper = new FakeInputMapper(device, sources);
1041 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1045 << "Should return value provided by mapper when device id is valid and the device supports some of the sources.";
1049 << "Should return unknown when the device id is < 0 but the sources are not supported by any device.";
1053 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1068 << "Should return unknown when the device id is valid but the sources are not supported by the device.";
1072 << "Should return value provided by mapper when device id is valid and the device supports some of the sources
991 addDeviceWithFakeInputMapper(int32_t deviceId, const String8& name, uint32_t classes, uint32_t sources, const PropertyMap* configuration) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6983 final int sources = device.getSources();
6989 if ((sources & InputDevice.SOURCE_TOUCHSCREEN) ==
6997 if ((sources & InputDevice.SOURCE_TRACKBALL) == InputDevice.SOURCE_TRACKBALL) {
7000 } else if ((sources & InputDevice.SOURCE_DPAD) == InputDevice.SOURCE_DPAD
/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;
366 ALOGI("Device added: id=%d, name='%s', sources=0x%08x", deviceId,
390 ALOGI("Device removed: id=%d, name='%s', sources=0x%08x",
2737 // Configure device sources, surface dimensions, orientation and

Completed in 545 milliseconds