HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 301 - 325 of 2352) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/
GraphBuilder.h 65 // The canonical graph result structure returned by GraphBuilder. The members
94 // Print the DOT representation of this result.
115 // `Result.OrphanedNodes`. `OpenedNodes` keeps track of the list of nodes
117 // to be cyclic, it will be added to `Result.OrphanedNodes`.
120 GraphResult &Result, uint64_t Address,
129 GraphResult &Result,
  /frameworks/base/cmds/idmap2/idmap2/
Verify.cpp 24 #include "idmap2/Result.h"
30 using android::idmap2::Result;
33 Result<Unit> Verify(const std::vector<std::string>& args) {
  /frameworks/base/cmds/idmap2/tests/
ResourceUtilsTests.cpp 25 #include "idmap2/Result.h"
52 Result<std::string> name = utils::ResToTypeEntryName(GetAssetManager(), 0x7f010000U);
58 Result<std::string> name = utils::ResToTypeEntryName(GetAssetManager(), 0x7f123456U);
  /cts/tests/core/runner/src/com/android/cts/core/runner/support/
SingleTestNgTestExecutor.java 40 public static Result execute(Class<?> klass, String methodName) {
69 return new Result(testng.hasFailure(), listener.getFailures());
114 public static class Result {
119 Result(boolean hasFailure, Map<String, Throwable> failures) {
  /cts/tests/core/runner-axt/src/com/android/cts/core/runner/support/
SingleTestNgTestExecutor.java 40 public static Result execute(Class<?> klass, String methodName) {
69 return new Result(testng.hasFailure(), listener.getFailures());
114 public static class Result {
119 Result(boolean hasFailure, Map<String, Throwable> failures) {
  /device/google/cuttlefish_common/guest/hals/health/storage/
Storage.cpp 32 auto ret = cb->onFinish(Result::SUCCESS);
34 LOG(WARNING) << "Cannot return result to callback: " << ret.description();
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
OhciSched.c 80 @Param Result Result to return
90 OUT UINT32 *Result
95 *Result = EFI_USB_NOERROR;
100 *Result |= ConvertErrorCode(TdCompletionCode);
104 if (*Result) {
  /external/boringssl/src/util/testresult/
testresult.go 15 // testresult is an implementation of Chromium's JSON test result format. See
32 Tests map[string]Result `json:"tests"`
41 Tests: make(map[string]Result),
45 func (t *Results) addResult(name, result, expected string) {
49 t.Tests[name] = Result{
50 Actual: result,
52 IsUnexpected: result != expected,
54 t.NumFailuresByType[result]++
57 // AddResult records a test result with the given result string. The test is
    [all...]
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 112 LookupResult Result = statChained(Path, Data, isFile, F, FS);
118 if (Result == CacheMissing)
119 return Result;
125 return Result;
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 85 llvm::APSInt Result;
86 if (CE->EvaluateAsInt(Result, C.getASTContext(), Expr::SE_NoSideEffects)) {
87 // Make sure the result has the correct type.
90 BVF.getAPSIntType(CE->getType()).apply(Result);
91 V = SVB.makeIntVal(Result);
  /external/clang/tools/libclang/
CXSourceLocation.cpp 44 CXSourceLocation Result = { { nullptr, nullptr }, 0 };
45 return Result;
55 CXSourceRange Result = { { nullptr, nullptr }, 0, 0 };
56 return Result;
63 CXSourceRange Result = { { begin.ptr_data[0], end.ptr_data[0] }, 0, 0 };
64 return Result;
71 CXSourceRange Result = { { begin.ptr_data[0], begin.ptr_data[1] },
74 return Result;
92 CXSourceLocation Result = { { range.ptr_data[0], nullptr }, 0 };
93 return Result;
    [all...]
  /external/clang/unittests/Format/
FormatTestProto.cpp 28 auto Result = applyAllReplacements(Code, Replaces);
29 EXPECT_TRUE(static_cast<bool>(Result));
30 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
31 return *Result;
  /external/compiler-rt/lib/scudo/
scudo_utils.cpp 107 ssize_t Result = read(Fd, Buffer + AmountRead, Count - AmountRead);
108 if (Result > 0)
109 AmountRead += Result;
110 else if (!Result)
  /external/deqp/modules/glshared/
glsShaderPerformanceMeasurer.hpp 69 struct Result
74 Result (float megaVertPerSec_, float megaFragPerSec_) : megaVertPerSec(megaVertPerSec_), megaFragPerSec(megaFragPerSec_) {}
86 Result getResult (void) const { DE_ASSERT(m_state == STATE_FINISHED); return m_result; }
120 Result m_result;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BytesDictionaryMatcher.java 15 import com.ibm.icu.util.BytesTrie.Result;
52 Result result = bt.first(transform(c)); local
57 if (result.hasValue()) {
65 if (result == Result.FINAL_VALUE) {
68 } else if (result == Result.NO_MATCH) {
81 result = bt.next(transform(c));
  /external/junit/src/main/java/org/junit/internal/
TextListener.java 8 import org.junit.runner.Result;
25 public void testRunFinished(Result result) {
26 printHeader(result.getRunTime());
27 printFailures(result);
28 printFooter(result);
59 protected void printFailures(Result result) {
60 List<Failure> failures = result.getFailures();
80 protected void printFooter(Result result)
    [all...]
  /external/libcxx/test/std/utilities/function.objects/refwrap/
weak_result.pass.cpp 14 // has weak result type
19 template <class Arg, class Result>
23 typedef Result result_type;
26 template <class Arg1, class Arg2, class Result>
31 typedef Result result_type;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFThumb.h 153 uint64_t Result =
157 assert(static_cast<int32_t>(Result) <= INT32_MAX &&
159 assert(static_cast<int32_t>(Result) >= INT32_MIN &&
164 << " Value: " << format("0x%08" PRIx32, Result) << '\n');
165 writeBytesUnaligned(Result, Target, 4);
171 uint64_t Result = Sections[RE.Sections.SectionA].getLoadAddress() -
173 assert(static_cast<int32_t>(Result) <= INT32_MAX &&
175 assert(static_cast<int32_t>(Result) >= INT32_MIN &&
180 << " Value: " << format("0x%08" PRIx32, Result) << '\n');
181 writeBytesUnaligned(Result, Target, 4)
    [all...]
  /external/skia/include/codec/
SkAndroidCodec.h 159 * result in a valid subset. If false is returned,
251 * @return Result kSuccess, or another value explaining the type of failure.
257 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
264 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
266 SkCodec::Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
279 virtual SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels,
  /external/skqp/include/codec/
SkAndroidCodec.h 159 * result in a valid subset. If false is returned,
251 * @return Result kSuccess, or another value explaining the type of failure.
257 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
264 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
266 SkCodec::Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
279 virtual SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 52 /// By definition, this result is stateless and so remains valid.
106 /// Analysis pass providing a never-invalidated alias analysis result.
116 using Result = CFLSteensAAResult;
123 std::unique_ptr<CFLSteensAAResult> Result;
130 CFLSteensAAResult &getResult() { return *Result; }
131 const CFLSteensAAResult &getResult() const { return *Result; }
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
ObjDumper.h 100 std::unique_ptr<ObjDumper> &Result);
104 std::unique_ptr<ObjDumper> &Result);
108 std::unique_ptr<ObjDumper> &Result);
112 std::unique_ptr<ObjDumper> &Result);
  /external/vogar/src/vogar/
Target.java 87 @Override protected Result execute() throws Exception {
89 return Result.SUCCESS;
96 @Override protected Result execute() throws Exception {
98 return Result.SUCCESS;
  /frameworks/base/cmds/idmap2/include/idmap2/
Policies.h 20 #include "Result.h"
41 Result<PolicyBitmask> PoliciesToBitmask(const std::vector<std::string>& policies);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
StringRef.cpp 123 std::string Result(size(), char());
125 Result[i] = ascii_tolower(Data[i]);
127 return Result;
131 std::string Result(size(), char());
133 Result[i] = ascii_toupper(Data[i]);
135 return Result;
426 unsigned long long &Result) {
436 Result = 0;
454 unsigned long long PrevResult = Result;
455 Result = Result * Radix + CharVal
    [all...]

Completed in 2389 milliseconds

<<11121314151617181920>>