Home
last modified time | relevance | path

Searched refs:ConstantValue (Results 1 – 25 of 48) sorted by relevance

12

/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DConstantValue.java34 public final class ConstantValue extends Attribute { class
43 public ConstantValue(final ConstantValue c) { in ConstantValue() method in ConstantValue
56ConstantValue(final int name_index, final int length, final DataInput input, final ConstantPool co… in ConstantValue() method in ConstantValue
68 public ConstantValue(final int name_index, final int length, final int constantvalue_index, in ConstantValue() method in ConstantValue
156 final ConstantValue c = (ConstantValue) clone(); in copy()
DField.java102 public final ConstantValue getConstantValue() { in getConstantValue()
105 return (ConstantValue) attribute; in getConstantValue()
131 final ConstantValue cv = getConstantValue(); in toString()
136 if (!(attribute instanceof ConstantValue)) { in toString()
DVisitor.java59 void visitConstantValue(ConstantValue obj); in visitConstantValue()
DEmptyVisitor.java141 public void visitConstantValue(final ConstantValue obj) in visitConstantValue()
DAttribute.java216 return new ConstantValue(name_index, length, file, constant_pool); in readAttribute()
/external/libchrome/base/android/jni_generator/
DtestMotionEvent.javap730 #16 = Utf8 ConstantValue
324 ConstantValue: int -1
330 ConstantValue: int 255
336 ConstantValue: int 0
342 ConstantValue: int 1
348 ConstantValue: int 2
354 ConstantValue: int 3
360 ConstantValue: int 4
366 ConstantValue: int 5
372 ConstantValue: int 6
[all …]
/external/tensorflow/tensorflow/compiler/jit/
Dnode_matchers_test.cc33 using testing::matchers::ConstantValue;
136 EXPECT_THAT(const_0d.node(), NodeWith(ConstantValue(42))); in TEST()
137 EXPECT_THAT(const_0d.node(), NodeWith(ConstantValue(42), Name("const_0d"))); in TEST()
139 EXPECT_THAT(const_2d.node(), NodeWith(ConstantValue({{1, 2}, {4, 3}}))); in TEST()
141 EXPECT_EQ(Explain(placeholder.node(), NodeWith(ConstantValue(42))), in TEST()
144 Explain(const_0d.node(), NodeWith(ConstantValue(43))), in TEST()
147 Explain(const_0d.node(), NodeWith(ConstantValue({{1, 2}, {4, 3}}))), in TEST()
150 Explain(const_2d.node(), NodeWith(ConstantValue(42))), in TEST()
Dnode_matchers.cc510 NodeMatcherProperties ConstantValue( in ConstantValue() function
520 return Out(NodeWith(ConstantValue(val))); in Const()
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
Dconstant_resolver.py15 assert isinstance(named_value, (mojom.EnumValue, mojom.ConstantValue))
37 if isinstance(constant.value, (mojom.EnumValue, mojom.ConstantValue)):
82 if isinstance(field.default, (mojom.ConstantValue, mojom.EnumValue)):
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h587 Constant *ConstantValue = nullptr;
592 : Expression(ET_Constant), ConstantValue(constantValue) {} in ConstantExpression()
600 Constant *getConstantValue() const { return ConstantValue; } in getConstantValue()
601 void setConstantValue(Constant *V) { ConstantValue = V; } in setConstantValue()
605 return ConstantValue == OC.ConstantValue; in equals()
610 ConstantValue->getType(), ConstantValue); in getHashValue()
618 OS << " constant = " << *ConstantValue; in printInternal()
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.h45 union ConstantValue { union
46 ConstantValue(int64_t i) in ConstantValue() function
49 ConstantValue(double d) in ConstantValue() function
52 bool operator==(const ConstantValue& other) const {
73 struct hash<std::pair<ConstantValue, ConstantType>> {
74 size_t operator()(const std::pair<ConstantValue, ConstantType>& key) const {
387 std::unordered_map<std::pair<ConstantValue, ConstantType>, SpvId> fNumberConstants;
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DFieldGen.java30 import org.apache.bcel.classfile.ConstantValue;
93 if (attr instanceof ConstantValue) { in FieldGen()
94 setValue(((ConstantValue) attr).getConstantValueIndex()); in FieldGen()
222 … addAttribute(new ConstantValue(super.getConstantPool().addUtf8("ConstantValue"), 2, index, in getField()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DMethodHTML.java27 import org.apache.bcel.classfile.ConstantValue;
93 final String str = ((ConstantValue) attributes[i]).toString(); in writeField()
DAttributeHTML.java30 import org.apache.bcel.classfile.ConstantValue;
129 index = ((ConstantValue) attribute).getConstantValueIndex(); in writeAttribute()
DBCELifier.java28 import org.apache.bcel.classfile.ConstantValue;
170 final ConstantValue cv = field.getConstantValue(); in visitField()
/external/turbine/java/com/google/turbine/bytecode/
DAttribute.java147 class ConstantValue implements Attribute { class
151 public ConstantValue(Value value) { in ConstantValue() method in Attribute.ConstantValue
DLowerAttributes.java21 import com.google.turbine.bytecode.Attribute.ConstantValue;
79 attributes.add(new ConstantValue(field.value())); in fieldAttributes()
DAttributeWriter.java22 import com.google.turbine.bytecode.Attribute.ConstantValue;
64 writeConstantValue((ConstantValue) attribute); in write()
122 public void writeConstantValue(ConstantValue attribute) { in writeConstantValue()
/external/apache-commons-bcel/docs/eps/
Ddiagram.fig309 4 0 0 931 -1 16 10 1.5708 4 120 1035 3247 9827 ConstantValue\001
Djavaclass.fig312 4 0 0 931 -1 16 10 1.5708 4 120 1035 2707 9526 ConstantValue\001
/external/apache-commons-bcel/src/test/java/org/apache/bcel/visitors/
DCounterVisitor.java44 import org.apache.bcel.classfile.ConstantValue;
268 public void visitConstantValue(final ConstantValue obj) in visitConstantValue()
/external/gemmlowp/internal/
Dsimd_wrappers.h468 template <int ConstantValue, typename RegisterBlockType>
472 const RegisterType dup = Dup<RegisterType>(ConstantValue);
486 template <int ConstantValue, typename RegisterBlockType>
488 AddConstantImpl<ConstantValue, RegisterBlockType>::Run(block);
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DStringRepresentation.java42 import org.apache.bcel.classfile.ConstantValue;
236 public void visitConstantValue(final ConstantValue obj) { in visitConstantValue()
DPass2Verifier.java47 import org.apache.bcel.classfile.ConstantValue;
604 if ((!(att instanceof ConstantValue)) && in visitField()
610 if (!(att instanceof ConstantValue)) { in visitField()
910 public void visitConstantValue(final ConstantValue obj) {//vmspec2 4.7.2 in visitConstantValue()
/external/apache-commons-bcel/src/examples/
DJasminVisitor.java32 import org.apache.bcel.classfile.ConstantValue;
110 public void visitConstantValue(ConstantValue cv) { in visitConstantValue()

12