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

1 2 34 5 6 7 8 91011>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagVerifier.java 28 Result verifyTag(Tag tag) throws FormatException, IOException;
31 public static class Result {
39 public Result(CharSequence expectedContent, CharSequence actualContent, boolean isMatch) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
OsPath.c 239 CHAR8 *Result;
242 Result = (CHAR8 *) malloc (strlen (OldPath) + strlen (Peer) + 1);
243 if (Result == NULL) {
247 strcpy (Result, OldPath);
253 for (Offset = strlen (Result); Offset >= 0; Offset--) {
254 if ((Result[Offset] == '/') || (Result[Offset] == '\\')) {
255 Result[Offset + 1] = '\0';
256 strcat (Result, Peer);
257 return Result;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringSwitch.h 46 /// \brief The pointer to the result of this switch statement, once known,
48 const T *Result;
52 : Str(Str), Result(0) { }
56 if (!Result && N-1 == Str.size() &&
58 Result = &Value;
66 if (!Result && Str.size() >= N-1 &&
68 Result = &Value;
76 if (!Result && Str.size() >= N-1 &&
78 Result = &Value;
112 if (Result)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
ListReducer.h 51 Expected<TestResult> Result = doTest(TheList, empty);
52 if (Error E = Result.takeError())
54 switch (*Result) {
99 Expected<TestResult> Result = doTest(ShuffledList, empty);
103 assert(!Result.takeError() && "Shuffling caused internal error?");
105 if (*Result == KeepPrefix) {
124 Expected<TestResult> Result = doTest(Prefix, Suffix);
125 if (Error E = Result.takeError())
127 switch (*Result) {
187 Expected<TestResult> Result = doTest(EmptyList, TestList)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cfi-verify/lib/
GraphBuilder.cpp 98 GraphResult Result;
99 Result.BaseAddress = Address;
105 return Result;
107 buildFlowGraphImpl(Analysis, OpenedNodes, Result, Address, 0);
108 return Result;
112 GraphResult &Result,
184 Result.IntermediateNodes[CurrentAddress] = NextAddress;
198 GraphResult &Result, uint64_t Address,
202 Result.OrphanedNodes.push_back(Address);
208 Result.OrphanedNodes.push_back(Address)
    [all...]
  /external/vogar/src/vogar/tasks/
PrepareUserDirTask.java 21 import vogar.Result;
34 @Override protected Result execute() throws Exception {
41 return Result.SUCCESS;
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Attributes.cpp 30 std::string Result;
32 Result += "zeroext ";
34 Result += "signext ";
36 Result += "noreturn ";
38 Result += "nounwind ";
40 Result += "uwtable ";
42 Result += "returns_twice ";
44 Result += "inreg ";
46 Result += "noalias ";
48 Result += "nocapture "
    [all...]
  /frameworks/av/media/libaudiohal/impl/
EffectsFactoryHalHidl.cpp 48 Result retval = Result::NOT_INITIALIZED;
50 [&](Result r, const hidl_vec<EffectDescriptor>& result) {
52 if (retval == Result::OK) {
53 mLastDescriptors = result;
57 return retval == Result::OK ? OK : NO_INIT;
91 Result retval = Result::NOT_INITIALIZED;
93 [&](Result r, const EffectDescriptor& result)
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 373 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result);
375 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result);
377 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result);
395 std::string &Result);
397 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result);
401 std::string &Result);
403 bool RewriteObjCFieldDeclType(QualType &Type, std::string &Result);
406 std::string &Result);
446 std::string &Result);
448 std::string &Result);
    [all...]
  /art/cmdline/
cmdline_types.h 59 Result Parse(const std::string& args) {
61 return Result::Success(Unit{});
63 return Result::Failure("Unexpected extra characters " + args);
73 Result Parse(const std::string& option) {
75 return Result::Usage(
81 return Result::Success(JdwpProvider::kDefaultJdwpProvider);
83 return Result::Success(JdwpProvider::kInternal);
85 return Result::Success(JdwpProvider::kAdbConnection);
87 return Result::Success(JdwpProvider::kNone);
89 return Result::Failure(std::string("not a valid jdwp provider: ") + option)
213 long long int result = strtoll(begin, &end, 10); \/\/ NOLINT [runtime\/int] [4] local
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuFwCfgLib/
QemuFwCfgLib.c 252 UINT8 Result;
254 QemuFwCfgReadBytes (sizeof (Result), &Result);
256 return Result;
272 UINT16 Result;
274 QemuFwCfgReadBytes (sizeof (Result), &Result);
276 return Result;
292 UINT32 Result;
294 QemuFwCfgReadBytes (sizeof (Result), &Result);
    [all...]
  /external/clang/tools/libclang/
CXComment.h 33 CXComment Result;
34 Result.ASTNode = C;
35 Result.TranslationUnit = TU;
36 return Result;
  /external/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 47 /// Analysis pass providing a never-invalidated alias analysis result.
56 typedef CFLAndersAAResult Result;
63 std::unique_ptr<CFLAndersAAResult> Result;
70 CFLAndersAAResult &getResult() { return *Result; }
71 const CFLAndersAAResult &getResult() const { return *Result; }
ScalarEvolutionAliasAnalysis.h 40 /// Analysis pass providing a never-invalidated alias analysis result.
46 typedef SCEVAAResult Result;
53 std::unique_ptr<SCEVAAResult> Result;
60 SCEVAAResult &getResult() { return *Result; }
61 const SCEVAAResult &getResult() const { return *Result; }
CFLSteensAliasAnalysis.h 47 /// By definition, this result is stateless and so remains valid.
96 FunctionHandle(Function *Fn, CFLSteensAAResult *Result)
97 : CallbackVH(Fn), Result(Result) {
99 assert(Result != nullptr);
106 CFLSteensAAResult *Result;
109 assert(Result != nullptr);
111 Result->evict(cast<Function>(Val));
129 /// Analysis pass providing a never-invalidated alias analysis result.
138 typedef CFLSteensAAResult Result;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ScalarEvolutionAliasAnalysis.h 40 /// Analysis pass providing a never-invalidated alias analysis result.
46 typedef SCEVAAResult Result;
53 std::unique_ptr<SCEVAAResult> Result;
60 SCEVAAResult &getResult() { return *Result; }
61 const SCEVAAResult &getResult() const { return *Result; }
  /external/junit/src/main/java/org/junit/runner/
JUnitCore.java 19 * @see org.junit.runner.Result
36 Result result = new JUnitCore().runMain(new RealSystem(), args); local
37 System.exit(result.wasSuccessful() ? 0 : 1);
46 * @return a {@link Result} describing the details of the test run and the failed tests.
48 public static Result runClasses(Class<?>... classes) {
59 * @return a {@link Result} describing the details of the test run and the failed tests.
61 public static Result runClasses(Computer computer, Class<?>... classes) {
69 Result runMain(JUnitSystem system, String... args) {
91 * @return a {@link Result} describing the details of the test run and the failed tests
132 Result result = new Result(); local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/Disassembler/
AVRDisassembler.cpp 121 DecodeStatus Result;
125 Result = readInstruction16(Bytes, Address, Size, Insn);
127 if (Result == MCDisassembler::Fail) return MCDisassembler::Fail;
130 Result = decodeInstruction(getDecoderTable(Size), Instr,
133 if (Result != MCDisassembler::Fail)
134 return Result;
139 Result = readInstruction32(Bytes, Address, Size, Insn);
141 if (Result == MCDisassembler::Fail) return MCDisassembler::Fail;
143 Result = decodeInstruction(getDecoderTable(Size), Instr, Insn,
146 if (Result != MCDisassembler::Fail)
    [all...]
  /external/clang/test/CXX/temp/temp.res/temp.dep.res/temp.point/
p1.cpp 16 template<typename T, typename Result>
19 Result r = f0(t);
  /external/junit-params/src/test/java/junitparams/
SamplesOfUsageVerificationTest.java 7 import org.junit.runner.Result;
15 Result result = JUnitCore.runClasses(SamplesOfUsageTest.class); local
17 assertEquals(0, result.getFailureCount());
20 assertEquals(5, result.getIgnoreCount());
  /external/skia/src/codec/
SkJpegDecoderMgr.h 31 SkCodec::Result returnFailure(const char caller[], SkCodec::Result result);
  /external/skqp/src/codec/
SkJpegDecoderMgr.h 31 SkCodec::Result returnFailure(const char caller[], SkCodec::Result result);
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVValue.cpp 57 SPIRVValue::hasAlignment(SPIRVWord *Result)const {
58 return hasDecorate(DecorationAlignment, 0, Result);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/Utils/
Local.h 25 /// pointer). Return the result as a signed integer of intptr size.
33 Value *Result = Constant::getNullValue(IntPtrTy);
62 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size),
71 Result = Builder->CreateAdd(Result, Scale, GEP->getName()+".offs");
84 Result = Builder->CreateAdd(Op, Result, GEP->getName()+".offs");
86 return Result;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAUtils.h 20 HRESULT Result = (Object.*Func)(&Str16);
21 if (S_OK != Result)

Completed in 696 milliseconds

1 2 34 5 6 7 8 91011>>