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

1 2 3 4 5 6 7 8 910

  /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;
  /external/r8/src/main/java/com/android/tools/r8/ir/code/
Instruction.java 24 protected Value outValue = null;
30 protected Instruction(Value outValue) {
31 setOutValue(outValue);
34 protected Instruction(Value outValue, Value inValue) {
36 setOutValue(outValue);
39 protected Instruction(Value outValue, List<? extends Value> inValues) {
45 setOutValue(outValue);
59 public Value outValue() {
60 return outValue;
64 assert outValue == null || !outValue.hasUsersInfo() || outValue.numberOfAllUsers() == 0
    [all...]
Argument.java 18 public Argument(Value outValue) {
19 super(outValue);
20 outValue.markAsArgument();;
Invoke.java 61 Invoke template, Value outValue, List<Value> inValues) {
66 outValue,
71 return new InvokeNewArray(template.asInvokeNewArray().getArrayType(), outValue, inValues);
76 return new InvokeCustom(custom.getCallSite(), outValue, inValues);
139 if (outValue != null && outValue.needsRegister()) {
140 int register = builder.allocatedRegister(outValue, getNumber());
Unop.java 18 return outValue;
  /frameworks/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/libutils/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 54 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const {
60 outValue = mProperties.valueAt(index);
64 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const {
70 outValue = intValue;
74 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const {
87 outValue = value;
91 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const {
104 outValue = value;
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
MoveEliminator.java 39 if (instruction.outValue() != null && instruction.outValue().needsRegister()) {
40 Value defined = instruction.outValue();
44 int moveDstRegister = allocator.getRegisterForValue(m.outValue(), m.getNumber());
InstructionEquivalence.java 27 if (instruction.outValue() != null && instruction.outValue().needsRegister()) {
28 hash += allocator.getRegisterForValue(instruction.outValue(), instruction.getNumber());
MemberValuePropagation.java 75 MoveType moveType = instruction.outValue().outType();
109 if (current.outValue() != null) {
110 assert replacement.outValue() != null;
111 current.outValue().replaceUsers(replacement.outValue());
140 && (invoke.outValue() == null || invoke.outValue().numberOfAllUsers() == 0)) {
152 setValueRangeFromProguardRule(lookup.rule, current.outValue());
159 if (!invokeReplaced && liveSet != null && invoke.outValue() != null) {
163 invoke.outValue().markNeverNull()
    [all...]
PeepholeOptimizer.java 217 } else if (current.outValue() != null && current.outValue().needsRegister()) {
218 Value outValue = current.outValue();
220 if (outValue.isConstant() && current.isConstNumber()) {
227 int outRegister = allocator.getRegisterForValue(outValue, instructionNumber);
243 int outRegister = allocator.getRegisterForValue(outValue, instructionNumber);
244 for (int i = 0; i < outValue.requiredRegisters(); i++) {
255 if (constNumber.outValue().isFixedRegisterValue()) {
259 constNumber.outValue().getLiveIntervals().getSplitCovering(constNumber.getNumber())
    [all...]
DeadCodeRemover.java 107 && current.outValue() != null
108 && current.outValue().numberOfAllUsers() == 0) {
115 Value outValue = current.outValue();
118 assert outValue != null;
119 if (!outValue.isDead(options)) {
126 outValue.clearUsers();
BasicBlockInstructionsEquivalence.java 70 if (instruction.outValue() != null && instruction.outValue().needsRegister()) {
71 hashPart += allocator.getRegisterForValue(instruction.outValue(), instruction.getNumber());
Outliner.java 158 if ((i0.outValue() != null) != (i1.outValue() != null)) {
217 result = (i0.outValue() != null ? 1 : 0) - (i1.outValue() != null ? 1 : 0);
258 if (instruction.outValue() != null) {
397 if (instruction.outValue() != null && returnValueUsersLeftIfIncluded > 0) {
403 if (instruction.outValue().numberOfAllUsers() > 0) {
480 if (!previous.isNewInstance() || previous.outValue() != returnValue) {
510 updateReturnValueState(instruction.outValue(), instruction.asNewInstance().clazz);
562 if (!instruction.isConstInstruction() && instruction.outValue() != null)
    [all...]
  /frameworks/support/compat/java/android/support/v4/view/
ViewConfigurationCompat.java 115 TypedValue outValue = new TypedValue();
117 android.R.attr.listPreferredItemHeight, outValue, true)) {
118 return outValue.getDimension(context.getResources().getDisplayMetrics());
  /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/dvr/ui/
DvrGuidedActionsStylist.java 73 TypedValue outValue = new TypedValue();
75 outValue, true);
76 sWidthWeight = outValue.getFloat();
  /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 163 final TypedValue outValue = mValue;
164 if (getResourceValue(resId, 0, outValue, true)) {
165 return outValue.coerceToString();
182 final TypedValue outValue = mValue;
183 final int block = loadResourceBagValue(resId, bagEntryId, outValue, true);
189 outValue.changingConfigurations = ActivityInfo.activityInfoConfigNativeToJava(
190 outValue.changingConfigurations);
192 if (outValue.type == TypedValue.TYPE_STRING) {
193 return mStringBlocks[block].get(outValue.data);
195 return outValue.coerceToString()
    [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';
  /packages/apps/DocumentsUI/src/com/android/documentsui/
IconUtils.java 63 final TypedValue outValue = new TypedValue();
64 context.getTheme().resolveAttribute(tintAttrId, outValue, true);
65 return applyTintColor(context, drawableId, outValue.resourceId);
  /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;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AppCompatDialog.java 166 TypedValue outValue = new TypedValue();
167 context.getTheme().resolveAttribute(R.attr.dialogTheme, outValue, true);
168 themeId = outValue.resourceId;

Completed in 714 milliseconds

1 2 3 4 5 6 7 8 910