HomeSort by relevance Sort by last modified time
    Searched refs:outValue (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 30 final TypedValue outValue = new TypedValue();
31 theme.resolveAttribute(attrId, outValue, true);
32 return outValue.resourceId;
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
TypedArray_Delegate.java 26 public static boolean getValueAt(TypedArray theTypedArray, int index, TypedValue outValue) {
Resources_Theme_Delegate.java 92 int resid, TypedValue outValue,
96 outValue, resolveRefs);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
dictionary_header_structure_policy.h 47 virtual void readHeaderValueOrQuestionMark(const char *const key, int *outValue,
  /system/core/include/utils/
PropertyMap.h 66 * Returns true and sets outValue if the key was found and its value was parsed successfully.
67 * Otherwise returns false and does not modify outValue. (Also logs a warning.)
69 bool tryGetProperty(const String8& key, String8& outValue) const;
70 bool tryGetProperty(const String8& key, bool& outValue) const;
71 bool tryGetProperty(const String8& key, int32_t& outValue) const;
72 bool tryGetProperty(const String8& key, float& outValue) const;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/header/
header_policy.cpp 60 void HeaderPolicy::readHeaderValueOrQuestionMark(const char *const key, int *outValue,
64 outValue[0] = '\0';
73 outValue[0] = '?';
74 outValue[1] = '\0';
79 outValue[i] = it->second[i];
81 outValue[terminalIndex] = '\0';
  /frameworks/base/libs/hwui/utils/
TinyHashMap.h 51 bool get(TKey key, TValue& outValue) {
57 outValue = mTable.entryAt(index).value;
  /system/core/libutils/
PropertyMap.cpp 58 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const {
64 outValue = mProperties.valueAt(index);
68 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const {
74 outValue = intValue;
78 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const {
91 outValue = value;
95 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const {
108 outValue = value;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollBarView.java 43 TypedValue outValue = new TypedValue();
45 android.R.attr.scrollbarThumbHorizontal, outValue, true);
47 context, outValue.resourceId);
  /external/chromium_org/third_party/angle/src/libGLESv2/
BinaryStream.h 43 void readInt(IntT *outValue)
45 *outValue = readInt<IntT>();
55 void readBool(bool *outValue)
57 *outValue = readBool();
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 370 * @param outValue the TypedValue to receive the parsed value
375 TypedValue outValue, boolean requireUnit) {
415 if (parseUnit(end, outValue, sFloatOut)) {
416 computeTypedValue(outValue, f, sFloatOut[0]);
426 if (outValue != null) {
428 outValue.type = TypedValue.TYPE_FLOAT;
429 outValue.data = Float.floatToIntBits(f);
432 applyUnit(sUnitNames[1], outValue, sFloatOut);
433 computeTypedValue(outValue, f, sFloatOut[0]);
449 private static void computeTypedValue(TypedValue outValue, float value, float scale)
    [all...]
  /frameworks/base/core/java/android/content/res/
AssetManager.java 193 TypedValue outValue,
196 int block = loadResourceValue(ident, (short) density, 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) {
239 outValue.string = blocks[block].get(outValue.data)
    [all...]
TypedArray.java 780 * @param outValue TypedValue object in which to place the attribute's
785 public boolean getValue(int index, TypedValue outValue) {
790 return getValueAt(index*AssetManager.STYLE_NUM_ENTRIES, outValue);
    [all...]
  /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/native/include/input/
VirtualKeyMap.h 71 bool parseNextIntField(int32_t* outValue);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ResourcesWrapper.java 205 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
207 mResources.getValue(id, outValue, resolveRefs);
211 public void getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs)
213 mResources.getValueForDensity(id, density, outValue, resolveRefs);
217 public void getValue(String name, TypedValue outValue, boolean resolveRefs)
219 mResources.getValue(name, outValue, resolveRefs);
TintTypedArray.java 152 public boolean getValue(int index, TypedValue outValue) {
153 return mWrapped.getValue(index, outValue);
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 87 final TypedValue outValue = new TypedValue();
88 context.getTheme().resolveAttribute(R.attr.datePickerDialogTheme, outValue, true);
89 return outValue.resourceId;
Presentation.java 298 TypedValue outValue = new TypedValue();
300 com.android.internal.R.attr.presentationTheme, outValue, true);
301 theme = outValue.resourceId;
TimePickerDialog.java 82 final TypedValue outValue = new TypedValue();
83 context.getTheme().resolveAttribute(R.attr.timePickerDialogTheme, outValue, true);
84 return outValue.resourceId;
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 157 bool VirtualKeyMap::Parser::parseNextIntField(int32_t* outValue) {
164 *outValue = strtol(token.string(), &end, 0);
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /frameworks/base/tools/aapt/
AaptXml.cpp 164 uint32_t attrRes, Res_value* outValue, String8* outError) {
172 if (tree.getAttributeValue(idx, outValue) != NO_ERROR) {
173 if (outValue->dataType == Res_value::TYPE_REFERENCE) {
174 resTable.resolveReference(outValue, 0);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsRowPresenter.java 298 TypedValue outValue = new TypedValue();
299 context.getTheme().resolveAttribute(R.attr.defaultBrandColor, outValue, true);
300 return context.getResources().getColor(outValue.resourceId);
304 TypedValue outValue = new TypedValue();
305 context.getTheme().resolveAttribute(R.attr.playbackProgressPrimaryColor, outValue, true);
306 return context.getResources().getColor(outValue.resourceId);
  /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)

Completed in 1289 milliseconds

1 2 3 4 5 6