/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
CoreAPIsTest.cpp | 66 auto OnResolution = [&](Expected<SymbolMap> Result) { 67 EXPECT_TRUE(!!Result) << "Resolution unexpectedly returned error"; 68 auto &Resolved = *Result; 72 << "Resolution returned incorrect result"; 107 auto OnResolution = [&](Expected<SymbolMap> Result) { 108 EXPECT_FALSE(!!Result) << "Resolution unexpectedly returned success"; 109 auto Msg = toString(Result.takeError()); 110 EXPECT_EQ(Msg, "xyz") << "Resolution returned incorrect result"; 131 auto OnResolution = [&](Expected<SymbolMap> Result) { 132 cantFail(std::move(Result)); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
LazyValueInfo.cpp | 181 const ValueLatticeElement &Result) { 186 if (Result.isOverdefined()) 195 It->second->BlockVals[BB] = Result; 408 ValueLatticeElement &Result, Instruction *CxtI = nullptr); 502 // Abort if we have to process too many values to get a result for this one. 507 // the same overdefined result again and again. Once something like 531 "Result should be in cache!"); 699 ValueLatticeElement Result; // Start Undefined. 712 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy)); 714 Result = ValueLatticeElement::getOverdefined() [all...] |
/cts/hostsidetests/appsecurity/test-apps/UsePermissionApp29/src/com/android/cts/usepermission/ |
UsePermissionTest29.java | 49 private BasePermissionActivity.Result requestPermissions(String[] permissions, 66 private static void assertPermissionRequestResult(BasePermissionActivity.Result result, 68 BasePermissionsTest.assertPermissionRequestResult(result, REQUEST_CODE_PERMISSIONS, 82 BasePermissionActivity.Result result = requestPermissions(permissions, 84 assertPermissionRequestResult(result, permissions, true); 94 BasePermissionActivity.Result result = requestPermissions(permissions); 95 assertPermissionRequestResult(result, permissions, false) [all...] |
/cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/ |
DirectShellCommand.java | 41 * A {@link java.util.concurrent.Future} style result object. 47 * @return Non-{@code null} object is the {@link Result} becomes available within timeout. 50 Result get(long mills); 54 * Represents general information about invocation result. 56 public static final class Result { 62 private Result(int code, Bundle data, String string, Exception exception) { 102 private Result mResult; 135 mResult = new Result(resultCode, resultData, joiner.toString(), resultException); 141 Result getResult(long millis) { 182 * Synchronously invoke {@code IBinder#shellCommand()} then return the result [all...] |
/cts/tests/inputmethod/src/android/view/inputmethod/cts/util/ |
NavigationBarColorVerifier.java | 63 static final class Result { 69 Result(@NonNull ResultType result, @NonNull String assertionMessage) { 70 mResult = result; 92 static Result verify(@NonNull ScreenshotSupplier screenshotSupplier) throws Exception { 109 final Result result = verify(screenshotSupplier); local 110 assertEquals(result.getAssertionMessage(), ResultType.SUPPORTED, result.getResult()); 121 final Result result = verify(screenshotSupplier) local [all...] |
/device/generic/goldfish/wifi/ipv6proxy/ |
address.h | 18 #include "result.h" 55 Result resolveInet(const std::string& address); 59 Result resolveEth(const std::string& interfaceName);
|
/external/clang/tools/libclang/ |
CXSourceLocation.h | 35 CXSourceLocation Result = { { &SM, &LangOpts, }, 37 return Result;
|
CXString.cpp | 92 CXString Result; 93 Result.data = String.data(); 94 Result.private_flags = (unsigned) CXS_Unmanaged; 95 return Result; 99 CXString Result; 103 Result.data = Spelling; 104 Result.private_flags = (unsigned) CXS_Malloc; 105 return Result;
|
/external/google-benchmark/src/ |
thread_manager.h | 40 struct Result { 51 GUARDED_BY(GetBenchmarkMutex()) Result results;
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
BytesTrie.java | 124 public enum Result { 158 * Same as (result!=NO_MATCH). 164 * Equivalent to (result==INTERMEDIATE_VALUE || result==FINAL_VALUE). 171 * Equivalent to (result==NO_VALUE || result==INTERMEDIATE_VALUE). 180 * @return The match/value Result. 182 public Result current() /*const*/ { 185 return Result.NO_MATCH; 189 valueResults_[node&kValueIsFinal] : Result.NO_VALUE 291 Result result=branchNext(pos, node, inByte&0xff); local 776 Result result; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
BytesTrie.java | 129 public enum Result { 167 * Same as (result!=NO_MATCH). 174 * Equivalent to (result==INTERMEDIATE_VALUE || result==FINAL_VALUE). 182 * Equivalent to (result==NO_VALUE || result==INTERMEDIATE_VALUE). 192 * @return The match/value Result. 195 public Result current() /*const*/ { 198 return Result.NO_MATCH; 202 valueResults_[node&kValueIsFinal] : Result.NO_VALUE 307 Result result=branchNext(pos, node, inByte&0xff); local 807 Result result; local [all...] |
/external/junit/src/main/java/org/junit/runner/notification/ |
RunListener.java | 10 import org.junit.runner.Result; 67 * @param result the summary of the test run, including all the tests that failed 69 public void testRunFinished(Result result) throws Exception {
|
/external/junit-params/src/test/java/junitparams/ |
MultipleParameterProvidersTest.java | 6 import org.junit.runner.Result; 33 Result testResult = JUnitCore.runClasses(CantInitializeWithValueAndMethodProvider.class);
|
/external/libcxx/utils/google-benchmark/src/ |
thread_manager.h | 40 struct Result { 51 GUARDED_BY(GetBenchmarkMutex()) Result results;
|
/external/llvm/bindings/ocaml/analysis/ |
analysis_ocaml.c | 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); 32 if (0 == Result) {
|
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUIntrinsicInfo.cpp | 40 std::string Result(IntrinsicNameTable[IntrID - Intrinsic::num_intrinsics]); 41 return Result;
|
/external/llvm/unittests/ExecutionEngine/Orc/ |
OrcCAPITest.cpp | 34 Value* Result = B.CreateCall(TestFunc); 35 B.CreateRet(Result); 93 int Result = MainFn(); 94 EXPECT_EQ(Result, 42) 95 << "Eagerly JIT'd code did not return expected result"; 117 int Result = MainFn(); 118 EXPECT_EQ(Result, 42) 119 << "Lazily JIT'd code did not return expected result"; 143 int Result = FooFn(); 146 EXPECT_EQ(Result, 42 [all...] |
/external/skia/src/codec/ |
SkBmpMaskCodec.h | 40 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, 44 SkCodec::Result onPrepareToDecode(const SkImageInfo& dstInfo,
|
/external/skqp/src/codec/ |
SkBmpMaskCodec.h | 40 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, 44 SkCodec::Result onPrepareToDecode(const SkImageInfo& dstInfo,
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/analysis/ |
analysis_ocaml.c | 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); 32 if (0 == Result) {
|
/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
TargetJITInfo.h | 60 StubLayout Result = {0, 0}; 61 return Result;
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
OProfileJITEventListener.cpp | 93 debug_line_info Result; 94 Result.vma = Address; 95 Result.lineno = Loc.getLine(); 96 Result.filename = Filenames.getFilename( 98 DEBUG(dbgs() << "Mapping " << reinterpret_cast<void*>(Result.vma) << " to " 99 << Result.filename << ":" << Result.lineno << "\n"); 100 return Result;
|
/external/swiftshader/third_party/LLVM/lib/Object/ |
Archive.cpp | 75 error_code Archive::Child::getName(StringRef &Result) const { 80 Result = name; 84 Result = name; 102 Result = addr; 107 Result = name.substr(0, name.size() - 1); 109 Result = name; 126 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const { 131 Result.swap(ret);
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/analysis/ |
analysis_ocaml.c | 30 int Result = LLVMVerifyModule(M, LLVMReturnStatusAction, &Message); 32 if (0 == Result) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
ModuleSummaryAnalysis.h | 49 using Result = ModuleSummaryIndex; 51 Result run(Module &M, ModuleAnalysisManager &AM);
|