/frameworks/base/core/java/android/util/ |
D | CharsetUtils.java | 90 public static String nameForVendor(String charsetName, String vendor) { in nameForVendor() argument 91 if (!TextUtils.isEmpty(charsetName) && !TextUtils.isEmpty(vendor)) { in nameForVendor() 94 final String vendorShiftJis = sVendorShiftJisMap.get(vendor); in nameForVendor() 139 public static Charset charsetForVendor(String charsetName, String vendor) in charsetForVendor() argument 141 charsetName = nameForVendor(charsetName, vendor); in charsetForVendor()
|
/frameworks/base/core/jni/ |
D | android_hardware_SensorManager.cpp | 34 jfieldID vendor; member 69 jstring vendor = env->NewStringUTF(list->getVendor().string()); in sensors_module_get_next_sensor() local 71 env->SetObjectField(sensor, sensorOffsets.vendor, vendor); in sensors_module_get_next_sensor() 155 sensorOffsets.vendor = _env->GetFieldID(sensorClass, "mVendor", "Ljava/lang/String;"); in nativeClassInit()
|
/frameworks/base/core/tests/overlaytests/ |
D | runtests.sh | 74 $adb shell rm /vendor/overlay/framework/framework-res.apk 75 $adb shell rm /data/resource-cache/vendor@overlay@framework@framework-res.apk@idmap 83 …$adb shell ln -s /data/app/com.android.overlaytest.overlay.apk /vendor/overlay/framework/framework…
|
/frameworks/base/include/androidfw/ |
D | AssetManager.h | 126 void setVendor(const char* vendor); 234 const asset_path& path, const char* locale, const char* vendor); 236 const char* vendor); 259 const asset_path& path, const char* locale, const char* vendor,
|
D | InputDevice.h | 30 bus(0), vendor(0), product(0), version(0) { in InputDeviceIdentifier() 38 uint16_t vendor; member
|
/frameworks/base/libs/androidfw/ |
D | InputDevice.cpp | 59 if (deviceIdentifier.vendor !=0 && deviceIdentifier.product != 0) { in getInputDeviceConfigurationFilePathByDeviceIdentifier() 64 deviceIdentifier.vendor, deviceIdentifier.product, in getInputDeviceConfigurationFilePathByDeviceIdentifier() 75 deviceIdentifier.vendor, deviceIdentifier.product), in getInputDeviceConfigurationFilePathByDeviceIdentifier()
|
D | AssetManager.cpp | 432 void AssetManager::setVendor(const char* vendor) in setVendor() argument 442 mVendor = strdupNew(vendor); in setVendor() 870 const asset_path& ap, const char* locale, const char* vendor) in openInLocaleVendorLocked() argument 877 String8 path(createPathNameLocked(ap, locale, vendor)); in openInLocaleVendorLocked() 900 String8 path(createPathNameLocked(ap, locale, vendor)); in openInLocaleVendorLocked() 959 path.appendPath((vendor != NULL) ? vendor : kDefaultVendor); in openInLocaleVendorLocked() 1007 const char* vendor) in createPathNameLocked() argument 1011 path.appendPath((vendor != NULL) ? vendor : kDefaultVendor); in createPathNameLocked() 1718 const asset_path& ap, const char* locale, const char* vendor, in fncScanAndMergeDirLocked() argument 1728 partialPath = createPathNameLocked(ap, locale, vendor); in fncScanAndMergeDirLocked() [all …]
|
/frameworks/native/services/surfaceflinger/ |
D | GLExtensions.cpp | 36 GLubyte const* vendor, in initWithGLStrings() argument 44 mVendor = (char const*)vendor; in initWithGLStrings()
|
D | GLExtensions.h | 75 GLubyte const* vendor,
|
/frameworks/native/services/sensorservice/ |
D | RotationVectorSensor.cpp | 66 hwSensor.vendor = "Google Inc."; in getSensor() 115 hwSensor.vendor = "Google Inc."; in getSensor()
|
D | LinearAccelerationSensor.cpp | 65 hwSensor.vendor = "Google Inc."; in getSensor()
|
D | OrientationSensor.cpp | 76 hwSensor.vendor = "Google Inc."; in getSensor()
|
D | CorrectedGyroSensor.cpp | 72 hwSensor.vendor = "Google Inc."; in getSensor()
|
D | GravitySensor.cpp | 80 hwSensor.vendor = "Google Inc."; in getSensor()
|
/frameworks/base/docs/html/tools/ |
D | device.jd | 82 is identified by a unique vendor ID, as specified by the 83 <code>ATTR{idVendor}</code> property. For a list of vendor IDs, see <a 90 <p>Use this format to add each vendor to the file:<br/> 94 In this example, the vendor ID is for HTC. The <code>MODE</code> 129 <p>This table provides a reference to the vendor IDs needed in order to add USB
|
/frameworks/av/media/mtp/ |
D | MtpDevice.cpp | 42 static bool isMtpDevice(uint16_t vendor, uint16_t product) { 44 if (vendor == 0x0781 && product == 0x74c2) 47 if (vendor == 0x04e8 && product == 0x503c) 101 uint16_t vendor = usb_device_get_vendor_id(device); in open() 103 if (!isMtpDevice(vendor, product)) { in open()
|
/frameworks/rs/driver/ |
D | rsdGL.h | 45 const uint8_t * vendor; member
|
D | rsdGL.cpp | 140 ALOGE(" GL vendor: %s", dc->gl.gl.vendor); in DumpDebug() 360 dc->gl.gl.vendor = glGetString(GL_VENDOR); in rsdGLInit()
|
/frameworks/base/docs/html/guide/topics/connectivity/usb/ |
D | host.jd | 136 <code><usb-device></code>. In general, use vendor and product ID if you want to filter 143 <li><code>vendor-id</code></li> 190 <usb-device vendor-id="1234" product-id="5678" class="255" subclass="66" protocol="1" /> 223 device, such as product and vendor ID. When users connect a device that matches your device 247 <usb-device vendor-id="1234" product-id="5678" /> 366 vendor ID, or device class to figure out whether or not you want to communicate with the
|
/frameworks/base/services/input/ |
D | EventHub.cpp | 102 rawDescriptor.appendFormat(":%04x:%04x:", identifier.vendor, identifier.product); in setDescriptor() 106 } if (identifier.vendor == 0 && identifier.product == 0) { in setDescriptor() 1015 identifier.vendor = inputId.vendor; in openDeviceLocked() 1053 identifier.bus, identifier.vendor, identifier.product, identifier.version); in openDeviceLocked() 1495 device->identifier.bus, device->identifier.vendor, in dump()
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_display.h | 107 char const * vendor; member
|
D | egl_display.cpp | 193 disp.queryString.vendor = cnx->egl.eglQueryString(idpy, in initialize()
|
/frameworks/native/libs/gui/ |
D | Sensor.cpp | 42 mVendor = hwSensor->vendor; in Sensor()
|
/frameworks/base/tools/aapt/ |
D | AaptAssets.h | 70 : locale(_locale), vendor(_vendor), mParamsChanged(true) { } in AaptGroupEntry() 122 String8 vendor; member
|
/frameworks/base/ |
D | Android.mk | 716 $(call all-java-files-under, ../../vendor/unbundled_google/libs/gcm/gcm-client/src) \ 717 $(call all-java-files-under, ../../vendor/unbundled_google/libs/gcm/gcm-server/src) \ 718 $(call all-html-files-under, ../../vendor/unbundled_google/libs/gcm/gcm-client/src) \ 719 $(call all-html-files-under, ../../vendor/unbundled_google/libs/gcm/gcm-server/src) \
|