/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;
|
/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/apps/TV/src/com/android/tv/ui/sidepanel/ |
CheckBoxItem.java | 56 TypedValue outValue = new TypedValue(); 58 outValue, true); 62 descriptionTextView.setLineSpacing(0, outValue.getFloat());
|
/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);
|
/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;
|
/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/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/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/layoutlib/bridge/src/android/content/res/ |
TypedArray_Delegate.java | 26 public static boolean getValueAt(TypedArray theTypedArray, int index, TypedValue 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);
|
/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';
|
/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);
|
/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;
|
/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/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/native/include/input/ |
VirtualKeyMap.h | 71 bool parseNextIntField(int32_t* outValue);
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/ |
dictionary_header_structure_policy.h | 47 virtual void readHeaderValueOrQuestionMark(const char *const key, int *outValue,
|
/external/deqp/executor/tools/ |
xeTestLogCompare.cpp | 74 DE_DECLARE_COMMAND_LINE_OPT(OutValue, OutputValue); 99 << Option<OutValue> ("v", "value", "Value to extract", s_outputValues, "code"); 109 , outValue (OUTPUTVALUE_STATUS_CODE) 115 OutputValue outValue; 344 dst << "," << (cmdLine.outValue == OUTPUTVALUE_STATUS_CODE ? getStatusCodeName(iter->statusCode) : iter->statusDetails.c_str()); 386 cmdLine.outValue = opts.getOption<opt::OutValue>();
|
/developers/build/prebuilts/gradle/BasicTransition/Application/src/main/java/com/example/android/common/view/ |
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/developers/build/prebuilts/gradle/SlidingTabsBasic/Application/src/main/java/com/example/android/common/view/ |
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/developers/build/prebuilts/gradle/SlidingTabsColors/Application/src/main/java/com/example/android/common/view/ |
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/developers/build/prebuilts/gradle/SwipeRefreshLayoutBasic/Application/src/main/java/com/example/android/common/view/ |
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|
/developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/src/main/java/com/example/android/common/view/ |
SlidingTabStrip.java | 67 TypedValue outValue = new TypedValue(); 68 context.getTheme().resolveAttribute(R.attr.colorForeground, outValue, true); 69 final int themeForegroundColor = outValue.data;
|