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

1 2 3 4 5 6 7

  /external/r8/src/test/java/com/android/tools/r8/shaking/
ProguardConfigurationParserTest.java 182 assertTrue(rule.getReturnValue().isBoolean());
183 assertFalse(rule.getReturnValue().isValueRange());
184 assertFalse(rule.getReturnValue().isField());
185 assertEquals(rule.getName().matches("returnsTrue"), rule.getReturnValue().getBoolean());
187 assertFalse(rule.getReturnValue().isBoolean());
188 assertTrue(rule.getReturnValue().isValueRange());
189 assertFalse(rule.getReturnValue().isField());
190 assertTrue(rule.getReturnValue().isSingleValue());
191 assertEquals(1, rule.getReturnValue().getValueRange().getMin());
192 assertEquals(1, rule.getReturnValue().getValueRange().getMax())
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceCompileServer.cpp 112 ErrorCodes getReturnValue(ErrorCodes Val) {
202 return transferErrorCode(getReturnValue(Ice::EC_Args));
209 return transferErrorCode(getReturnValue(Ice::EC_Args));
223 return transferErrorCode(getReturnValue(Ice::EC_Args));
242 return transferErrorCode(getReturnValue(Ice::EC_Bitcode));
247 return transferErrorCode(getReturnValue(Ice::EC_None));
267 getReturnValue(static_cast<ErrorCodes>(Ctx->getErrorStatus()->value())));
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLAPISpecTest.java 40 assertEquals(Type.VOID, spec.getReturnValue().getDataType());
41 assertEquals(returnType, spec.getReturnValue().getCType());
  /external/r8/src/main/java/com/android/tools/r8/ir/optimize/
MemberValuePropagation.java 76 if (rule != null && rule.hasReturnValue() && rule.getReturnValue().isSingleValue()) {
80 ConstType.fromMoveType(moveType), value, rule.getReturnValue().getSingleValue());
83 rule != null && rule.hasReturnValue() && rule.getReturnValue().isField()) {
84 DexField field = rule.getReturnValue().getField();
98 if (rule.hasReturnValue() && rule.getReturnValue().isValueRange()) {
99 assert !rule.getReturnValue().isSingleValue();
100 value.setValueRange(rule.getReturnValue().getValueRange());
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatter.java 51 if (apiSpec.getReturnValue().getDataType() == Type.VOID) {
55 GLDataTypeSpec returnSpec = apiSpec.getReturnValue();
57 formatDataValue(glMessage.getReturnValue(),
GLAPISpec.java 52 public GLDataTypeSpec getReturnValue() {
  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 222 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 218 RetEffect getReturnValue() const { return Ret; }
  /external/proguard/src/proguard/optimize/evaluation/
StoringInvocationUnit.java 204 info.getReturnValue() :
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 266 public Value getReturnValue()
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
TailRecursionElimination.cpp 454 if (Ret->getNumOperands() == 1 && Ret->getReturnValue() != CI &&
455 !isa<UndefValue>(Ret->getReturnValue()) &&
461 if (!isDynamicConstant(Ret->getReturnValue(), CI, Ret))
563 AccPN->addIncoming(Ret->getReturnValue(), BB);
  /external/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 78 const Value *Ret = cast<ReturnInst>(Inst).getReturnValue();
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 539 if (Ret->getNumOperands() == 1 && Ret->getReturnValue() != CI &&
540 !isa<UndefValue>(Ret->getReturnValue()) &&
546 if (!isDynamicConstant(Ret->getReturnValue(), CI, Ret))
650 AccPN->addIncoming(Ret->getReturnValue(), BB);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
MethodExitWithReturnValueTest.java 197 .getReturnValue();
  /external/clang/lib/StaticAnalyzer/Checkers/
SimpleStreamChecker.cpp 127 SymbolRef FileDesc = Call.getReturnValue().getAsSymbol();
VforkChecker.cpp 155 SVal VforkRetVal = Call.getReturnValue();
  /external/llvm/lib/Transforms/IPO/
GlobalDCE.cpp 78 return RI.getReturnValue() == nullptr;

Completed in 2172 milliseconds

1 2 3 4 5 6 7