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

1 2 3 4 5 6 7

  /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;
  /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);
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
CheckBoxItem.java 56 TypedValue outValue = new TypedValue();
58 outValue, true);
62 descriptionTextView.setLineSpacing(0, outValue.getFloat());
  /frameworks/base/core/java/android/content/res/
AssetManager.java 160 final TypedValue outValue = mValue;
161 if (getResourceValue(resId, 0, outValue, true)) {
162 return outValue.coerceToString();
179 final TypedValue outValue = mValue;
180 final int block = loadResourceBagValue(resId, bagEntryId, outValue, true);
184 if (outValue.type == TypedValue.TYPE_STRING) {
185 return mStringBlocks[block].get(outValue.data);
187 return outValue.coerceToString();
204 * Populates {@code outValue} with the data associated a particular
209 * @param outValue the typed value in which to put the dat
    [all...]
  /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 34 uint32_t i, r, g, b, outValue;
57 outValue = ((((r * (1 + out->redMax)) >> shift) << out->redShift) |
60 *(uint32_t*)&t[3*i] = outValue;
78 int i,outValue;
97 outValue = ((outRed << out->redShift) |
100 *(uint32_t*)&t[3*i] = outValue;
144 uint32_t outValue;
148 outValue = ((i * outMax + inMax / 2) / inMax) << outShift;
149 *(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/app/
TimePickerDialog.java 84 final TypedValue outValue = new TypedValue();
85 context.getTheme().resolveAttribute(R.attr.timePickerDialogTheme, outValue, true);
86 return outValue.resourceId;
114 final TypedValue outValue = new TypedValue();
115 context.getTheme().resolveAttribute(R.attr.timePickerDialogTheme, outValue, true);
Presentation.java 300 TypedValue outValue = new TypedValue();
302 com.android.internal.R.attr.presentationTheme, outValue, true);
303 theme = outValue.resourceId;
  /frameworks/base/tools/aapt2/
ResourceValues.cpp 49 bool RawString::flatten(android::Res_value* outValue) const {
50 outValue->dataType = android::Res_value::TYPE_STRING;
51 outValue->data = util::hostToDevice32(static_cast<uint32_t>(value.getIndex()));
69 bool Reference::flatten(android::Res_value* outValue) const {
70 outValue->dataType = (referenceType == Reference::Type::kResource) ?
72 outValue->data = util::hostToDevice32(id ? id.value().id : 0);
125 bool String::flatten(android::Res_value* outValue) const {
131 outValue->dataType = android::Res_value::TYPE_STRING;
132 outValue->data = util::hostToDevice32(static_cast<uint32_t>(value.getIndex()));
158 bool StyledString::flatten(android::Res_value* outValue) const
    [all...]
ResourceValues.h 129 virtual bool flatten(android::Res_value* outValue) const = 0;
161 bool flatten(android::Res_value* outValue) const override;
186 bool flatten(android::Res_value* outValue) const override;
201 bool flatten(android::Res_value* outValue) const override;
219 bool flatten(android::Res_value* outValue) const override;
238 bool flatten(android::Res_value* outValue) const override;
253 bool flatten(android::Res_value* outValue) const override;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDialog.java 160 TypedValue outValue = new TypedValue();
161 context.getTheme().resolveAttribute(R.attr.dialogTheme, outValue, true);
162 themeId = outValue.resourceId;
AppCompatDelegateImplV7.java 383 TypedValue outValue = new TypedValue();
384 mContext.getTheme().resolveAttribute(R.attr.actionBarTheme, outValue, true);
387 if (outValue.resourceId != 0) {
388 themedContext = new ContextThemeWrapper(mContext, outValue.resourceId);
737 final TypedValue outValue = new TypedValue();
739 baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
742 if (outValue.resourceId != 0) {
745 actionBarTheme.applyStyle(outValue.resourceId, true);
762 R.attr.actionBarSize, outValue, true);
763 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/widget/
ResourcesWrapper.java 202 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
204 mResources.getValue(id, outValue, resolveRefs);
208 public void getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs)
210 mResources.getValueForDensity(id, density, outValue, resolveRefs);
214 public void getValue(String name, TypedValue outValue, boolean resolveRefs)
216 mResources.getValue(name, outValue, resolveRefs);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 480 * @param outValue the TypedValue to receive the parsed value
485 TypedValue outValue, boolean requireUnit) {
525 if (parseUnit(end, outValue, sFloatOut)) {
526 computeTypedValue(outValue, f, sFloatOut[0]);
536 if (outValue != null) {
538 outValue.type = TypedValue.TYPE_FLOAT;
539 outValue.data = Float.floatToIntBits(f);
542 applyUnit(sUnitNames[1], outValue, sFloatOut);
543 computeTypedValue(outValue, f, sFloatOut[0]);
559 private static void computeTypedValue(TypedValue outValue, float value, float scale)
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
BottomSheetDialog.java 121 TypedValue outValue = new TypedValue();
123 R.attr.bottomSheetDialogTheme, outValue, true)) {
124 themeId = outValue.resourceId;
  /packages/apps/TV/src/com/android/tv/menu/
MenuRowView.java 106 TypedValue outValue = new TypedValue();
107 res.getValue(R.dimen.menu_row_title_alpha_deselected, outValue, true);
108 mTitleViewAlphaDeselected = outValue.getFloat();
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 157 bool VirtualKeyMap::Parser::parseNextIntField(int32_t* outValue) {
164 *outValue = strtol(token.string(), &end, 0);
  /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 177 public void getValue(int id, TypedValue outValue, boolean resolveRefs)
183 public void getValue(String name, TypedValue outValue, boolean resolveRefs)

Completed in 1355 milliseconds

1 2 3 4 5 6 7