HomeSort by relevance Sort by last modified time
    Searched refs:outValue (Results 1 - 25 of 139) 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) {
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/
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;
  /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);
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 46 bool RawString::flatten(android::Res_value& outValue) const {
47 outValue.dataType = ExtendedTypes::TYPE_RAW_STRING;
48 outValue.data = static_cast<uint32_t>(value.getIndex());
66 bool Reference::flatten(android::Res_value& outValue) const {
67 outValue.dataType = (referenceType == Reference::Type::kResource)
70 outValue.data = id.id;
120 bool String::flatten(android::Res_value& outValue) const {
126 outValue.dataType = android::Res_value::TYPE_STRING;
127 outValue.data = static_cast<uint32_t>(value.getIndex());
142 bool StyledString::flatten(android::Res_value& outValue) const
    [all...]
ResourceValues.h 101 virtual bool flatten(android::Res_value& outValue) const = 0;
134 bool flatten(android::Res_value& outValue) const override;
159 bool flatten(android::Res_value& outValue) const override;
169 bool flatten(android::Res_value& outValue) const override;
179 bool flatten(android::Res_value& outValue) const override;
190 bool flatten(android::Res_value& outValue) const override;
204 bool flatten(android::Res_value& outValue) const override;
  /frameworks/base/core/java/android/app/
TimePickerDialog.java 86 final TypedValue outValue = new TypedValue();
87 context.getTheme().resolveAttribute(R.attr.timePickerDialogTheme, outValue, true);
88 return outValue.resourceId;
116 final TypedValue outValue = new TypedValue();
117 context.getTheme().resolveAttribute(R.attr.timePickerDialogTheme, outValue, true);
118 final int layoutResId = outValue.resourceId;
Presentation.java 300 TypedValue outValue = new TypedValue();
302 com.android.internal.R.attr.presentationTheme, outValue, true);
303 theme = outValue.resourceId;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_policy.cpp 52 void HeaderPolicy::readHeaderValueOrQuestionMark(const char *const key, int *outValue,
56 outValue[0] = '\0';
65 outValue[0] = '?';
66 outValue[1] = '\0';
71 outValue[i] = it->second[i];
73 outValue[terminalIndex] = '\0';
  /external/libvncserver/libvncserver/
tableinit24.c 30 uint32_t i, r, g, b, outValue;
53 outValue = ((((r * (1 + out->redMax)) >> shift) << out->redShift) |
56 *(uint32_t*)&t[3*i] = outValue;
74 int i,outValue;
93 outValue = ((outRed << out->redShift) |
96 *(uint32_t*)&t[3*i] = outValue;
140 uint32_t outValue;
144 outValue = ((i * outMax + inMax / 2) / inMax) << outShift;
145 *(uint32_t *)&table[3*i] = outValue;
tabletrans24template.c 102 uint32_t outValue,inValue;
110 outValue = (redTable[(inValue >> in->redShift) & in->redMax] |
113 memcpy(op,&outValue,3);
256 uint32_t outValue;
262 outValue = (redTable[(*ip >> in->redShift) & in->redMax] |
265 memcpy(op,&outValue,3);
  /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     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDialog.java 150 TypedValue outValue = new TypedValue();
151 context.getTheme().resolveAttribute(R.attr.dialogTheme, outValue, true);
152 themeId = outValue.resourceId;
AppCompatDelegateImplV7.java 346 TypedValue outValue = new TypedValue();
347 mContext.getTheme().resolveAttribute(R.attr.actionBarTheme, outValue, true);
350 if (outValue.resourceId != 0) {
351 themedContext = new ContextThemeWrapper(mContext, outValue.resourceId);
679 final TypedValue outValue = new TypedValue();
681 baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
684 if (outValue.resourceId != 0) {
687 actionBarTheme.applyStyle(outValue.resourceId, true);
704 R.attr.actionBarSize, outValue, true);
705 final int height = TypedValue.complexToDimensionPixelSize(outValue.data
    [all...]
  /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);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 395 * @param outValue the TypedValue to receive the parsed value
400 TypedValue outValue, boolean requireUnit) {
440 if (parseUnit(end, outValue, sFloatOut)) {
441 computeTypedValue(outValue, f, sFloatOut[0]);
451 if (outValue != null) {
453 outValue.type = TypedValue.TYPE_FLOAT;
454 outValue.data = Float.floatToIntBits(f);
457 applyUnit(sUnitNames[1], outValue, sFloatOut);
458 computeTypedValue(outValue, f, sFloatOut[0]);
474 private static void computeTypedValue(TypedValue outValue, float value, float scale)
    [all...]
  /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/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 716 milliseconds

1 2 3 4 5 6