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

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/
OpDescriptor.cpp 35 std::vector<Constant *> Result;
36 makeConstantsWithType(T, Result);
37 return Result;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
VersionTuple.cpp 20 std::string Result;
22 llvm::raw_string_ostream Out(Result);
25 return Result;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
BugDriver.cpp 69 std::string Result;
72 Result += " ";
73 Result += "-";
74 Result += Passes[i];
76 return Result;
96 std::unique_ptr<Module> Result = parseIRFile(Filename, Err, Ctxt);
97 if (!Result) {
99 return Result;
102 if (verifyModule(*Result, &errs())) {
110 Triple TheTriple(Result->getTargetTriple())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
OrcCAPITest.cpp 35 Value* Result = B.CreateCall(TestFunc);
36 B.CreateRet(Result);
107 int Result = MainFn();
108 EXPECT_EQ(Result, 42)
109 << "Eagerly JIT'd code did not return expected result";
117 int Result = MainFn();
118 EXPECT_EQ(Result, 42)
119 << "Eagerly JIT'd code did not return expected result";
144 int Result = MainFn();
145 EXPECT_EQ(Result, 42
    [all...]
  /external/v4l2_codec2/include/
VideoDecodeAcceleratorAdaptor.h 32 enum Result {
69 virtual void notifyError(Result error) = 0;
74 virtual Result initialize(media::VideoCodecProfile profile, bool secureMode,
  /external/vogar/src/vogar/
JarSuggestions.java 42 Result result = outcome.getResult(); local
43 if (result != Result.COMPILE_FAILED && result != Result.EXEC_FAILED) {
Outcome.java 34 private final Result result; field in class:Outcome
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
40 this.result = result;
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
47 this.result = result;
    [all...]
  /external/vogar/src/vogar/android/
DexTask.java 23 import vogar.Result;
53 @Override protected Result execute() throws Exception {
63 return Result.SUCCESS;
  /external/vogar/src/vogar/tasks/
PrepareTarget.java 20 import vogar.Result;
35 @Override protected Result execute() throws Exception {
59 return Result.SUCCESS;
  /frameworks/av/media/libaudiohal/impl/
VersionUtils.h 24 using ::android::hardware::audio::CPP_VERSION::Result;
41 Return<Result> setParameters(T& object, hidl_vec<ParameterValue> /*context*/,
53 Return<Result> setParameters(T& object, hidl_vec<ParameterValue> context,
  /external/clang/lib/Tooling/Core/
Replacement.cpp 76 std::string Result;
77 llvm::raw_string_ostream Stream(Result);
222 bool Result = true;
227 Result = I->apply(Rewrite) && Result;
229 Result = false;
232 return Result;
239 bool Result = true;
244 Result = I->apply(Rewrite) && Result;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
AsmLexer.cpp 184 StringRef Result(TokStart, CurPtr - TokStart);
187 if (Result.getAsInteger(10, Value)) {
191 if (Result.getAsInteger(10, UValue))
200 return AsmToken(AsmToken::Integer, Result, Value);
208 StringRef Result(TokStart, CurPtr - TokStart);
209 return AsmToken(AsmToken::Integer, Result, 0);
219 StringRef Result(TokStart, CurPtr - TokStart);
222 if (Result.substr(2).getAsInteger(2, Value))
229 return AsmToken(AsmToken::Integer, Result, Value);
242 unsigned long long Result;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
StringExtras.h 46 std::vector<StringRef> Result;
48 Result.push_back(*Strings++);
49 return Result;
260 /// delimiters, appending the result fragments to the output list.
332 inline void join_items_impl(std::string &Result, Sep Separator) {}
335 inline void join_items_impl(std::string &Result, Sep Separator,
337 Result += Item;
341 inline void join_items_impl(std::string &Result, Sep Separator, const Arg1 &A1,
343 Result += A1;
344 Result += Separator
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFThumb.h 184 uint64_t Result =
188 Result |= ISASelectionBit;
189 assert(Result <= UINT32_MAX && "relocation overflow");
193 << " Value: " << format("0x%08" PRIx32, Result)
195 writeBytesUnaligned(Result, Target, 4);
201 uint64_t Result = Sections[RE.Sections.SectionA].getLoadAddress() -
203 assert(Result <= UINT32_MAX && "relocation overflow");
207 << " Value: " << format("0x%08" PRIx32, Result)
209 Result |= ISASelectionBit;
210 writeBytesUnaligned(Result, Target, 4)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
COFFObjectFile.cpp 70 static bool decodeBase64StringEntry(StringRef Str, uint32_t &Result) {
98 Result = static_cast<uint32_t>(Value);
152 StringRef Result;
153 if (std::error_code EC = getSymbolName(Symb, Result))
155 return Result;
170 uint64_t Result = getSymbolValue(Ref);
176 return Result;
181 Result += Section->VirtualAddress;
185 Result += getImageBase();
187 return Result;
    [all...]
  /cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
IntentSenderActivity.java 37 private final SynchronousQueue<Result> mResult = new SynchronousQueue<>();
41 public static class Result {
45 public Result(int resultCode, Intent data) {
61 mResult.offer(new Result(resultCode, data), 5, TimeUnit.SECONDS);
71 final Result result = mResult.poll(30, TimeUnit.SECONDS); local
72 if (result != null) {
73 Log.d(TAG, "Result intent: " + result.data);
75 return (result != null) ? result.data : null
    [all...]
  /external/libcxx/test/libcxx/type_traits/
lazy_metafunctions.pass.cpp 66 typedef std::__lazy_enable_if<true, NextInt<0> > Result;
67 static_assert(HasType<Result>::value, "");
68 static_assert(Result::type::value == 1, "");
71 typedef std::__lazy_enable_if<false, CannotInst<int> > Result;
72 static_assert(!HasType<Result>::value, "");
  /external/swiftshader/third_party/LLVM/lib/Object/
ELFObjectFile.cpp 346 bool &Result) const;
359 SmallVectorImpl<char> &Result) const;
363 SmallVectorImpl<char> &Result) const;
405 SymbolRef &Result) const {
422 Result = SymbolRef(Symb, this);
429 StringRef &Result) const {
432 return getSymbolName(symb, Result);
457 uint64_t &Result) const {
465 Result = UnknownAddressOrSize;
468 Result = symb->st_value
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
MetaDataParser.py 128 for Result in ResultSet:
130 EccGlobalData.gDb.TblReport.Insert(ERROR_DOXYGEN_CHECK_FILE_HEADER, Msg, "File", Result[0])
191 for Result in ResultSet:
193 EccGlobalData.gDb.TblReport.Insert(ERROR_DOXYGEN_CHECK_FILE_HEADER, Msg, "File", Result[0])
198 for Result in ResultSet:
200 EccGlobalData.gDb.TblReport.Insert(ERROR_DOXYGEN_CHECK_FILE_HEADER, Msg, "File", Result[0])
205 for Result in ResultSet:
207 EccGlobalData.gDb.TblReport.Insert(ERROR_DOXYGEN_CHECK_FILE_HEADER, Msg, "File", Result[0])
220 Result = False
224 Result = True
    [all...]
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
TextReporter.java 35 private static class Result {
41 boolean result; field in class:TextReporter.Result
48 * @param result If the test is successful or not
51 public Result(String objenesisDescription, String candidateDescription, boolean result,
55 this.result = result;
78 private Map<Object, Map<String, Result>> objenesisResults = new HashMap<Object, Map<String, Result>>();
105 objenesisResults.put(desc, new HashMap<String, Result>());
116 public void result(boolean instantiatedObject) { method in class:TextReporter
189 Result result = objenesisResults.get(instDesc).get(candidateDesc); local
253 int result = 0; local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/X86/
Target.cpp 149 std::vector<llvm::MCInst> Result;
150 Result.push_back(allocateStackSpace(8));
151 Result.push_back(fillStackSpace(llvm::X86::MOV64mi32, 0, kImmValue));
152 Result.push_back(llvm::MCInstBuilder(llvm::X86::POPF64)); // Also pops.
153 return Result;
186 std::vector<llvm::MCInst> Result;
187 Result.push_back(allocateStackSpace(RegSizeBytes));
190 Result.push_back(fillStackSpace(llvm::X86::MOV32mi, Disp, kImmValue));
192 Result.push_back(loadToReg(Reg, RMOpcode));
193 Result.push_back(releaseStackSpace(RegSizeBytes))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
StreamUtil.cpp 35 StreamInfo Result;
36 Result.Name = Name;
37 Result.StreamIndex = StreamIndex;
38 Result.Purpose = Purpose;
39 return Result;
44 StreamInfo Result;
45 Result.Name = Module;
46 Result.StreamIndex = StreamIndex;
47 Result.ModuleIndex = Modi;
48 Result.Purpose = StreamPurpose::ModuleStream
    [all...]
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 34 private final Result result; field in class:Outcome
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
40 this.result = result;
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
47 this.result = result;
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/Dw8250SerialPortRuntimeLib/
Dw8250SerialPortRuntimeLib.c 140 UINTN Result;
146 Result = NumberOfBytes;
154 return Result;
176 UINTN Result;
182 Result = 0;
190 Result++;
193 return Result;
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StrictStubbingEndToEndTest.java 10 import org.junit.runner.Result;
37 Result result = junit.run(UnnecessaryStubbing.class); local
38 assertThat(result)
45 Result result = junit.run(ReportMismatchButNotUnusedStubbing.class); local
46 assertThat(result).fails(1, PotentialStubbingProblem.class);
50 Result result = junit.run(LenientStrictness1.class, StrictStubsPassing.class, LenientStrictness2.class); local
52 assertThat(result).succeeds(5)
56 Result result = junit.run(UnfinishedMocking.class); local
    [all...]

Completed in 1977 milliseconds

<<11121314151617181920>>