Home
last modified time | relevance | path

Searched refs:constValue (Results 1 – 4 of 4) sorted by relevance

/external/turbine/java/com/google/turbine/processing/
DTurbineAnnotationProxy.java90 return constValue(method.getReturnType(), factory, loader, value); in invoke()
94 return constValue(method.getReturnType(), factory, loader, m.defaultValue()); in invoke()
115 static Object constValue( in constValue() method in TurbineAnnotationProxy
144 Object v = constValue(returnType, factory, loader, element); in constArrayValue()
/external/llvm-project/mlir/lib/Transforms/Utils/
DFoldUtils.cpp122 Attribute constValue; in notifyRemoval() local
123 matchPattern(op, m_Constant(&constValue)); in notifyRemoval()
124 assert(constValue); in notifyRemoval()
133 uniquedConstants.erase(std::make_tuple(dialect, constValue, type)); in notifyRemoval()
/external/angle/src/tests/compiler_tests/
DIntermNode_test.cpp161 TConstantUnion *constValue = new TConstantUnion[1]; in TEST_F() local
162 constValue[0].setIConst(101); in TEST_F()
163 TIntermConstantUnion *original = new TIntermConstantUnion(constValue, type); in TEST_F()
/external/llvm-project/flang/lib/Semantics/
Druntime-type-info.cpp92 if (auto constValue{evaluate::ToInt64(expr)}) { in GetValue() local
93 return PackageIntValue(explicitEnum_, *constValue); in GetValue()