HomeSort by relevance Sort by last modified time
    Searched full:outvalue (Results 1 - 25 of 25) sorted by null

  /external/webkit/WebKit/win/
WebSerializedJSValue.cpp 96 HRESULT WebSerializedJSValue::deserialize(JSContextRef destinationContext, JSValueRef* outValue)
98 if (!outValue)
102 *outValue = 0;
104 *outValue = m_value->deserialize(destinationContext, 0);
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
Resources_Theme_Delegate.java 62 int resid, TypedValue outValue,
65 resid, outValue, resolveRefs);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDevicePreference.java 48 TypedValue outValue = new TypedValue();
49 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true);
50 sDimAlpha = (int) (outValue.getFloat() * 255);
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 59 TypedValue outValue = new TypedValue();
60 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true);
61 sDimAlpha = (int) (outValue.getFloat() * 255);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 358 * @param outValue
361 public static boolean stringToFloat(String s, TypedValue outValue) {
399 if (parseUnit(end, outValue, sFloatOut)) {
436 outValue.data |=
448 if (outValue != null) {
449 outValue.type = TypedValue.TYPE_FLOAT;
450 outValue.data = Float.floatToIntBits(f);
459 private static boolean parseUnit(String str, TypedValue outValue, float[] outScale) {
464 outValue.type = unit.type;
465 outValue.data = unit.unit << TypedValue.COMPLEX_UNIT_SHIFT
    [all...]
  /frameworks/base/core/java/android/content/res/
AssetManager.java 193 TypedValue outValue,
196 int block = loadResourceValue(ident, outValue, resolveRefs);
198 if (outValue.type != TypedValue.TYPE_STRING) {
201 outValue.string = mStringBlocks[block].get(outValue.data);
228 TypedValue outValue, boolean resolveRefs) {
229 int block = loadThemeAttributeValue(theme, ident, outValue, resolveRefs);
231 if (outValue.type != TypedValue.TYPE_STRING) {
238 outValue.string = blocks[block].get(outValue.data)
    [all...]
TypedArray.java 637 * @param outValue TypedValue object in which to place the attribute's
642 public boolean getValue(int index, TypedValue outValue) {
643 return getValueAt(index*AssetManager.STYLE_NUM_ENTRIES, outValue);
699 private boolean getValueAt(int index, TypedValue outValue) {
705 outValue.type = type;
706 outValue.data = data[index+AssetManager.STYLE_DATA];
707 outValue.assetCookie = data[index+AssetManager.STYLE_ASSET_COOKIE];
708 outValue.resourceId = data[index+AssetManager.STYLE_RESOURCE_ID];
709 outValue.changingConfigurations = data[index+AssetManager.STYLE_CHANGING_CONFIGURATIONS];
710 outValue.density = data[index+AssetManager.STYLE_DENSITY]
    [all...]
Resources.java     [all...]
  /frameworks/base/libs/utils/
ResourceTypes.cpp 680 ssize_t ResXMLParser::getTextValue(Res_value* outValue) const
683 outValue->copyFrom_dtoh(((const ResXMLTree_cdataExt*)mCurExt)->typedData);
868 ssize_t ResXMLParser::getAttributeValue(size_t idx, Res_value* outValue) const
877 outValue->copyFrom_dtoh(attr->typedValue);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSONObject.cpp 664 JSValue outValue = jsNull();
698 outValue = array;
717 outValue = inValue;
722 JSValue filteredValue = callReviver(array, jsString(m_exec, UString::from(indexStack.last())), outValue);
766 outValue = object;
786 outValue = inValue;
793 JSValue filteredValue = callReviver(object, jsString(m_exec, prop.ustring()), outValue);
806 outValue = inValue;
830 finalHolder->put(m_exec, m_exec->globalData().propertyNames->emptyIdentifier, outValue, slot);
831 return callReviver(finalHolder, jsEmptyString(m_exec), outValue);
    [all...]
  /external/webkit/WebCore/bindings/js/
SerializedScriptValue.cpp 268 OutputType outValue = context.null();
308 outValue = outArray;
327 outValue = transformed;
336 context.putProperty(outArray, indexStack.last(), outValue);
374 outValue = outObject;
387 outValue = transformed;
395 context.putProperty(outputObjectStack.last(), propertyStack.last()[indexStack.last()], outValue);
405 outValue = transformed;
426 return outValue;
  /frameworks/base/test-runner/src/android/test/mock/
MockResources.java 172 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
178 public void getValue(String name, TypedValue outValue, boolean resolveRefs)
  /frameworks/base/include/utils/
ResourceTypes.h 651 ssize_t getTextValue(Res_value* outValue) const;
683 ssize_t getAttributeValue(size_t idx, Res_value* outValue) const;
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 175 bool stringToValue(Res_value* outValue, StringPool* pool,
206 Res_value* outValue);
209 Res_value* outValue);
529 Res_value* outValue);
ResourceTable.cpp     [all...]
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 79 static jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table,
83 jint copyValue(JNIEnv* env, jobject outValue, const ResTable* table,
87 env->SetIntField(outValue, gTypedValueOffsets.mType, value.dataType);
88 env->SetIntField(outValue, gTypedValueOffsets.mAssetCookie,
90 env->SetIntField(outValue, gTypedValueOffsets.mData, value.data);
91 env->SetObjectField(outValue, gTypedValueOffsets.mString, NULL);
92 env->SetIntField(outValue, gTypedValueOffsets.mResourceId, ref);
93 env->SetIntField(outValue, gTypedValueOffsets.mChangingConfigurations,
96 env->SetIntField(outValue, gTypedValueOffsets.mDensity, config->density);
704 jobject outValue,
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeResources.java 460 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
468 if (ResourceHelper.stringToFloat(v, outValue)) {
473 outValue.type = TypedValue.TYPE_STRING;
474 outValue.string = v;
484 public void getValue(String name, TypedValue outValue, boolean resolveRefs)
BridgeTypedArray.java 776 * @param outValue TypedValue object in which to place the attribute's
782 public boolean getValue(int index, TypedValue outValue) {
789 return ResourceHelper.stringToFloat(s, outValue);
841 public boolean getValueAt(int index, TypedValue outValue) {
BridgeContext.java 231 public boolean resolveThemeAttribute(int resid, TypedValue outValue, boolean resolveRefs) {
249 outValue.resourceId = getDynamicIdByStyle((StyleResourceValue)value);
267 outValue.resourceId = a;
    [all...]
  /external/jpeg/
jcsample.c 147 INT32 outvalue; local
166 outvalue = 0;
170 outvalue += (INT32) GETJSAMPLE(*inptr++);
173 *outptr++ = (JSAMPLE) ((outvalue + numpix2) / numpix);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsActor.java 196 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
198 mRes.getValue(id, outValue, resolveRefs);
  /frameworks/base/include/ui/
InputReader.h 58 bool tryGetProperty(const String8& key, String8& outValue) const;
59 bool tryGetProperty(const String8& key, int32_t& outValue) const;
60 bool tryGetProperty(const String8& key, float& outValue) const;
  /frameworks/base/libs/ui/
InputReader.cpp 150 bool InputDeviceCalibration::tryGetProperty(const String8& key, String8& outValue) const {
156 outValue = mProperties.valueAt(index);
160 bool InputDeviceCalibration::tryGetProperty(const String8& key, int32_t& outValue) const {
173 outValue = value;
177 bool InputDeviceCalibration::tryGetProperty(const String8& key, float& outValue) const {
190 outValue = value;
    [all...]
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/tools/linux/
aapt 

Completed in 1990 milliseconds