Searched refs:vendor (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/core/java/android/util/
H A DCharsetUtils.java31 * class is primarily useful for code that wishes to be vendor-aware
38 * each vendor-specific charset. You may need to modify the C libraries
46 * name of the vendor "DoCoMo". <b>Note:</b> This isn't a public
48 * reference list of vendor names.
52 * Name of the vendor "KDDI".
56 * Name of the vendor "SoftBank".
61 * Represents one-to-one mapping from a vendor name to a charset specific to the vendor.
80 * Returns the name of the vendor-specific character set
82 * vendor
90 nameForVendor(String charsetName, String vendor) argument
139 charsetForVendor(String charsetName, String vendor) argument
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.cpp34 GLubyte const* vendor,
39 mVendor = (char const*)vendor;
33 initWithGLStrings( GLubyte const* vendor, GLubyte const* renderer, GLubyte const* version, GLubyte const* extensions) argument
H A DGLExtensions.h60 GLubyte const* vendor,
/frameworks/base/core/tests/overlaytests/
H A Druntests.sh74 $adb shell rm /vendor/overlay/framework/framework-res.apk
75 $adb shell rm /data/resource-cache/vendor@overlay@framework@framework-res.apk@idmap
81 mkdir_if_needed "/system/vendor"
82 mkdir_if_needed "/vendor/overlay/framework"
83 $adb shell ln -s /data/app/com.android.overlaytest.overlay.apk /vendor/overlay/framework/framework-res.apk
/frameworks/native/libs/input/
H A DInputDevice.cpp59 if (deviceIdentifier.vendor !=0 && deviceIdentifier.product != 0) {
61 // Try vendor product version.
64 deviceIdentifier.vendor, deviceIdentifier.product,
72 // Try vendor product.
75 deviceIdentifier.vendor, deviceIdentifier.product),
/frameworks/native/include/input/
H A DInputDevice.h30 bus(0), vendor(0), product(0), version(0) {
38 uint16_t vendor; member in struct:android::InputDeviceIdentifier
140 * names to try based on the device name, vendor, product, and version.
/frameworks/native/services/sensorservice/
H A DRotationVectorSensor.cpp66 hwSensor.vendor = "AOSP";
115 hwSensor.vendor = "AOSP";
H A DLinearAccelerationSensor.cpp65 hwSensor.vendor = "AOSP";
H A DCorrectedGyroSensor.cpp72 hwSensor.vendor = "AOSP";
H A DGravitySensor.cpp80 hwSensor.vendor = "AOSP";
H A DOrientationSensor.cpp79 hwSensor.vendor = "AOSP";
/frameworks/base/include/androidfw/
H A DAssetManager.h119 * Set the current locale and vendor. The locale can change during
121 * language setting. The vendor is less likely to change.
126 void setVendor(const char* vendor);
140 * This will search through locale-specific and vendor-specific
152 * but aren't assets. These sit outside the usual "locale/vendor"
167 * The contents of the directory are an amalgam of vendor-specific,
179 * The contents of the directory are an amalgam of vendor-specific,
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,
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_SensorManager.cpp42 jfieldID vendor; member in struct:android::SensorOffsets
65 sensorOffsets.vendor = _env->GetFieldID(sensorClass, "mVendor", "Ljava/lang/String;");
91 jstring vendor = env->NewStringUTF(list->getVendor().string()); local
93 env->SetObjectField(sensor, sensorOffsets.vendor, vendor);
H A Dandroid_view_InputDevice.cpp61 static_cast<int32_t>(ident.vendor), static_cast<int32_t>(ident.product),
/frameworks/rs/driver/
H A DrsdGL.h45 const uint8_t * vendor; member in struct:RsdGLRec::__anon1615
H A DrsdGL.cpp139 ALOGE(" GL vendor: %s", dc->gl.gl.vendor);
352 dc->gl.gl.vendor = glGetString(GL_VENDOR);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp70 * Names for default app, locale, and vendor. We might want to change
214 // When there is an environment variable for /vendor, this
217 String8 overlayPath("/vendor/overlay/framework/");
440 * Set the current vendor. Use NULL to indicate no vendor.
443 * information in the vendor-specific sections of the tree.
445 void AssetManager::setVendor(const char* vendor) argument
455 mVendor = strdupNew(vendor);
499 * - locale + vendor
500 * - "default" + vendor
884 openInLocaleVendorLocked(const char* fileName, AccessMode mode, const asset_path& ap, const char* locale, const char* vendor) argument
1021 createPathNameLocked(const asset_path& ap, const char* locale, const char* vendor) argument
1731 fncScanAndMergeDirLocked( SortedVector<AssetDir::FileInfo>* pMergedInfo, const asset_path& ap, const char* locale, const char* vendor, const char* dirName) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h107 char const * vendor; member in struct:android::egl_display_t::strings_t
H A Degl_display.cpp162 disp.queryString.vendor = cnx->egl.eglQueryString(idpy,
H A DeglApi.cpp1148 return dp->disp.queryString.vendor;
/frameworks/av/media/mtp/
H A DMtpDevice.cpp42 static bool isMtpDevice(uint16_t vendor, uint16_t product) {
44 if (vendor == 0x0781 && product == 0x74c2)
47 if (vendor == 0x04e8 && product == 0x503c)
99 // look for special cased devices based on vendor/product ID
101 uint16_t vendor = usb_device_get_vendor_id(device);
103 if (!isMtpDevice(vendor, product)) {
/frameworks/native/libs/gui/
H A DSensor.cpp42 mVendor = hwSensor->vendor;
/frameworks/base/services/input/
H A DEventHub.cpp102 rawDescriptor.appendFormat(":%04x:%04x:", identifier.vendor, identifier.product);
106 } if (identifier.vendor == 0 && identifier.product == 0) {
107 // If we don't know the vendor and product id, then the device is probably
1048 identifier.vendor = inputId.vendor;
1083 " vendor %04x\n"
1086 identifier.bus, identifier.vendor, identifier.product, identifier.version);
1560 dump.appendFormat(INDENT3 "Identifier: bus=0x%04x, vendor=0x%04x, "
1562 device->identifier.bus, device->identifier.vendor,
/frameworks/base/tools/aapt/
H A DAaptAssets.h70 : locale(_locale), vendor(_vendor), mParamsChanged(true) { }
122 String8 vendor; member in struct:AaptGroupEntry
221 * vendor/locale variations).
H A DAaptAssets.cpp702 this->vendor = "";
1479 if (v == 0) v = vendor.compare(o.vendor);

Completed in 709 milliseconds