HomeSort by relevance Sort by last modified time
    Searched defs:Success (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/testng/src/test/java/test/invokedmethodlistener/
Success.java 3 public class Success extends Base {
4 public Success() {
  /external/clang/tools/driver/
cc1_main.cpp 92 bool Success = CompilerInvocation::CreateFromArgs(
112 if (!Success)
116 Success = ExecuteCompilerInvocation(Clang.get());
132 return !Success;
139 return !Success;
cc1as_main.cpp 162 bool Success = true;
176 Success = false;
182 Success = false;
220 Success = false;
235 Success = false;
256 return Success;
  /frameworks/base/libs/hwui/
Readback.h 29 Success = 0,
  /art/cmdline/
cmdline_parse_result.h 49 static CmdlineParseResult<T> Success(const T& value) {
54 static CmdlineParseResult<T> Success(T&& value) {
105 // Whether or not the result has a value (e.g. created with Result::Success).
106 // Error results never have values, success results commonly, but not always, have values.
  /external/llvm/include/llvm/MC/
MCDisassembler.h 29 /// Success, however some have a concept of an instruction with
39 /// from Success->SoftFail ->Fail can be done with a simple
42 /// LEFT & TOP = | Success Unpredictable Fail
44 /// Success | Success Unpredictable Fail
49 /// Success, SoftFail, Fail respectively.
53 Success = 3
72 /// \return - MCDisassembler::Success if the instruction is valid,
  /frameworks/base/packages/Osu/src/com/android/anqp/
HSIconFileElement.java 17 public enum StatusCode {Success, FileNotFound, Unspecified}
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 31 enum Action { Success, Warning, Abort, LastAction };
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
HSIconFileElement.java 17 public enum StatusCode {Success, FileNotFound, Unspecified}
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
gtest_progress_reporter.py 80 def Success(self, test):
87 self.Success(test)
progress_reporter.py 40 def Success(self, test):
126 progress_reporter.Success(test)
  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 24 bool Success = convertUTF16ToUTF8String(Ref, Result);
25 EXPECT_TRUE(Success);
35 bool Success = convertUTF16ToUTF8String(Ref, Result);
36 EXPECT_TRUE(Success);
46 bool Success = convertUTF8ToUTF16String(Ref, Result);
47 EXPECT_TRUE(Success);
56 bool Success = convertUTF16ToUTF8String(makeArrayRef("xxxxx", 5), Result);
57 EXPECT_FALSE(Success);
62 bool Success = convertUTF16ToUTF8String(None, Result);
63 EXPECT_TRUE(Success);
    [all...]
  /external/clang/lib/Driver/
Compilation.cpp 103 bool Success = true;
106 Success &= CleanupFile(*it, IssueErrors);
107 return Success;
113 bool Success = true;
121 Success &= CleanupFile(it->second, IssueErrors);
123 return Success;
  /device/google/contexthub/util/nanotool/
nanopacket.h 50 Success,
contexthub.h 113 * true on success, false on failure.
183 Success,
  /external/compiler-rt/lib/profile/
InstrProfilingValue.c 137 uint32_t Success = 0;
139 Success =
142 Success = COMPILER_RT_BOOL_CMPXCHG(&(PrevVNode->Next), 0, CurrentVNode);
144 if (!Success) {
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonInstPrinter.cpp 132 bool Success = MI->getOperand(OpNo).getExpr()->evaluateAsAbsolute(Imm);
134 assert(Success); (void)Success;
142 bool Success = MI->getOperand(OpNo).getExpr()->evaluateAsAbsolute(Imm);
144 assert(Success); (void)Success;
152 bool Success = MI->getOperand(OpNo).getExpr()->evaluateAsAbsolute(Imm);
154 assert(Success); (void)Success;
162 bool Success = MI->getOperand(OpNo).getExpr()->evaluateAsAbsolute(Imm)
    [all...]
HexagonMCCompound.cpp 209 bool Success;
281 Success = L.getOperand(2).getExpr()->evaluateAsAbsolute(Value);
282 (void)Success;
283 assert(Success);
300 Success = L.getOperand(2).getExpr()->evaluateAsAbsolute(Value);
301 (void)Success;
302 assert(Success);
  /external/clang/lib/Tooling/
Tooling.cpp 302 const bool Success = Compiler.ExecuteAction(*ScopedToolAction);
305 return Success;
  /external/libchrome/base/files/
file_path_watcher_unittest.cc 68 bool Success() {
186 // Write |content| to |file|. Returns true on success.
200 return collector_->Success();
  /external/llvm/lib/Target/Hexagon/
HexagonAsmPrinter.cpp 369 bool Success = Expr->evaluateAsAbsolute(Imm);
370 assert (Success && "Expected immediate and none was found");(void)Success;
393 bool Success = Expr->evaluateAsAbsolute(Imm);
394 assert (Success && "Expected immediate and none was found");(void)Success;
426 bool Success = Expr->evaluateAsAbsolute(Imm);
427 assert (Success && "Expected immediate and none was found");(void)Success;
470 bool Success = MO.getExpr()->evaluateAsAbsolute(Imm)
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 179 bool Success = false;
184 Success = ::GetFileSizeEx(FileHandle, &FileSize);
186 if (!Success)
208 Success = ::GetMappedFileNameA(::GetCurrentProcess(),
213 if (!Success)
225 /// @return If ec == errc::success, The absolute path to the program. Otherwise
353 BOOL success = ::CreateProcessA(ProgramToRun.c_str(), local
363 if (!success) {
387 success = ::GetProcessTimes(ProcessInfo.hProcess,
392 if (!success) {
    [all...]
  /ndk/tests/
tests.py 65 elif isinstance(result, Success):
136 class Success(TestResult):
196 return '{} {}: unexpected success for {} ({})'.format(
288 return Success(name)
432 return Success(test_name)
450 return Success(test_name)
482 success, failure_message = module.run_test(
485 if success:
486 return [Success(self.name)]
664 results.append(Success(case_name)
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 554 bool Success = true;
566 Success = false;
569 Success = Success && OldTypes.size() == NewTypes.size();
571 if (Success) {
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 632 bool Success = ASTUnit::LoadFromCompilerInvocationAction(
645 if (!Success)
    [all...]

Completed in 639 milliseconds

1 2 3