Searched refs:Result (Results 126 - 150 of 799) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/Object/
H A DELFObjectFile.h119 SmallVectorImpl<char> &Result) const override;
122 SmallVectorImpl<char> &Result) const override;
226 std::error_code getPlatformFlags(unsigned &Result) const override {
227 Result = EF.getHeader()->e_flags;
259 StringRef &Result) const {
263 Result = *Name;
295 uint64_t &Result) const {
300 Result = UnknownAddressOrSize;
303 Result = ESym->st_value;
310 Result
387 uint32_t Result = SymbolRef::SF_None; local
[all...]
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.cpp263 Optional<const char *> Result = FormValue.getAsCString(U);
264 return Result.hasValue() ? Result.getValue() : FailValue;
272 Optional<uint64_t> Result = FormValue.getAsAddress(U);
273 return Result.hasValue() ? Result.getValue() : FailValue;
281 Optional<uint64_t> Result = FormValue.getAsUnsignedConstant();
282 return Result.hasValue() ? Result.getValue() : FailValue;
290 Optional<uint64_t> Result
[all...]
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-4.cpp240 template<typename T, typename Result>
243 Result result = t.m; // expected-error{{non-const lvalue reference to type}}
262 template<typename T, typename Result>
265 Result result = t->m; // expected-error 2{{non-const lvalue reference}}
307 template<typename T, typename Result>
310 Result result = t.f();
322 template<typename Result>
324 Result g();
327 Result r1 = g();
328 Result r
[all...]
/external/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp82 bool Result = InnerMatcher->dynMatches(DynNode, Finder, Builder); variable
83 if (Result) Builder->setBinding(ID, DynNode);
84 return Result;
211 auto Result = *this;
212 Result.Implementation = new IdDynMatcher(ID, Result.Implementation);
213 return Result;
269 BoundNodesTreeBuilder Result; local
275 Result.addMatch(BuilderInner);
278 *Builder = std::move(Result);
287 BoundNodesTreeBuilder Result = *Builder; local
[all...]
/external/clang/lib/Tooling/Core/
H A DReplacement.cpp229 bool Result = true; local
234 Result = I->apply(Rewrite) && Result;
236 Result = false;
239 return Result;
246 bool Result = true; local
251 Result = I->apply(Rewrite) && Result;
253 Result = false;
256 return Result;
280 std::string Result; local
[all...]
/external/vogar/test/vogar/target/
H A DJUnitRunnerTest.java26 import vogar.Result;
77 verify(monitor).outcomeFinished(Result.SUCCESS);
93 verify(monitor, times(4)).outcomeFinished(Result.SUCCESS);
108 verify(monitor, times(3)).outcomeFinished(Result.SUCCESS);
119 verify(monitor).outcomeFinished(Result.SUCCESS);
132 verify(monitor, times(2)).outcomeFinished(Result.SUCCESS);
143 verify(monitor).outcomeFinished(Result.SUCCESS);
169 verify(monitor).outcomeFinished(Result.EXEC_FAILED);
185 verify(monitor).outcomeFinished(Result.SUCCESS);
204 verify(monitor).outcomeFinished(Result
[all...]
/external/llvm/lib/Target/R600/
H A DSIInsertWaits.cpp143 Counters Result; local
145 Result.Named.VM = !!(TSFlags & SIInstrFlags::VM_CNT);
148 Result.Named.EXP = !!(TSFlags & SIInstrFlags::EXP_CNT &&
161 Result.Named.LGKM = Size > 4 ? 2 : 1;
165 Result.Named.LGKM = 1;
169 Result.Named.LGKM = 0;
172 return Result;
237 RegInterval Result; local
238 Result.first = TRI->getEncodingValue(Reg);
239 Result
385 Counters Result = ZeroCounts; local
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscnvrt.c261 // Result is stored in a 3x3 matrix
430 cmsBool AddConversion(cmsPipeline* Result, cmsColorSpaceSignature InPCS, cmsColorSpaceSignature OutPCS, cmsMAT3* m, cmsVEC3* off) argument
444 !cmsPipelineInsertStage(Result, cmsAT_END, cmsStageAllocMatrix(Result ->ContextID, 3, 3, m_as_dbl, off_as_dbl)))
450 !cmsPipelineInsertStage(Result, cmsAT_END, cmsStageAllocMatrix(Result ->ContextID, 3, 3, m_as_dbl, off_as_dbl)))
452 if (!cmsPipelineInsertStage(Result, cmsAT_END, _cmsStageAllocXYZ2Lab(Result ->ContextID)))
467 if (!cmsPipelineInsertStage(Result, cmsAT_END, _cmsStageAllocLab2XYZ(Result
529 cmsPipeline* Result; local
722 cmsPipeline* Result; local
914 cmsPipeline* Result = NULL; local
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-more-actions.h59 template <typename Result, typename ArgumentTuple>
60 Result Perform(const ArgumentTuple& args) {
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
77 template <typename Result, typename ArgumentTuple>
78 Result Perform(const ArgumentTuple& args) const {
79 return InvokeHelper<Result, ArgumentTuple>::InvokeMethod(
/external/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp32 void sendExecutionComplete(int Result);
165 int32_t Result = -1; local
166 RT->executeCode(Addr, Result);
169 sendExecutionComplete(Result);
220 void LLIChildTarget::sendExecutionComplete(int Result) { argument
234 rc = WriteBytes(&Result, 4);
/external/llvm/utils/TableGen/
H A DAsmWriterInst.cpp39 std::string Result = Str + "(MI";
41 Result += ", " + utostr(MIOpNo);
43 Result += ", STI";
44 Result += ", O";
46 Result += ", \"" + MiModifier + '"';
47 return Result + "); ";
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h50 llvm::APSInt Result(Value, Value.isUnsigned());
51 apply(Result); variable
52 return Result;
/external/clang/lib/Basic/
H A DVersionTuple.cpp20 std::string Result; local
22 llvm::raw_string_ostream Out(Result);
25 return Result;
H A DFileSystemStatCache.cpp123 LookupResult Result = statChained(Path, Data, isFile, F, FS); local
129 if (Result == CacheMissing)
130 return Result;
136 return Result;
/external/easymock/src/org/easymock/internal/
H A DUnorderedBehavior.java34 public void addExpected(ExpectedInvocation expected, Result result,
47 public Result addActual(Invocation actual) {
53 Result result = entry.getResults().next();
/external/llvm/include/llvm/ADT/
H A DAPFloat.h304 APFloat Result = *this; local
305 Result.add(RHS, rmNearestTiesToEven);
306 return Result;
312 APFloat Result = *this; local
313 Result.subtract(RHS, rmNearestTiesToEven);
314 return Result;
320 APFloat Result = *this; local
321 Result.multiply(RHS, rmNearestTiesToEven);
322 return Result;
328 APFloat Result local
[all...]
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp43 long Result = 0; local
45 Result += *Args[i];
46 return Result;
/external/skia/include/utils/
H A DSkInterpolator.h17 enum Result { enum in class:SkInterpolatorBase
62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
114 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
/external/clang/tools/libclang/
H A DCIndexCXX.cpp101 ClassTemplatePartialSpecializationDecl *> Result local
103 if (Result.is<ClassTemplateDecl *>())
104 Template = Result.get<ClassTemplateDecl *>();
106 Template = Result.get<ClassTemplatePartialSpecializationDecl *>();
/external/google-breakpad/src/testing/test/
H A Dgmock-generated-internal-utils_test.cc76 CompileAssertTypesEqual<int, F::Result>();
85 CompileAssertTypesEqual<int, F::Result>();
96 CompileAssertTypesEqual<int, F::Result>();
109 CompileAssertTypesEqual<char, F::Result>();
/external/iputils/
H A Dipg21 result=`cat ${PGDEV} | fgrep "Result: OK:"`
23 cat ${PGDEV} | fgrep Result:
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.h73 std::vector<T> Result; local
74 Result.push_back(A);
76 Result.push_back(Val);
78 return Result;
/external/llvm/unittests/Analysis/
H A DAliasAnalysisTest.cpp30 void CheckModRef(Instruction *I, AliasAnalysis::ModRefResult Result) { argument
34 CheckModRefTestPass(Instruction *I, AliasAnalysis::ModRefResult Result) argument
35 : FunctionPass(ID), ExpectResult(Result), I(I) {}
59 CheckModRefTestPass *P = new CheckModRefTestPass(I, Result);
/external/lzma/CPP/7zip/Archive/Common/
H A DCrossThreadProgress.h17 HRESULT Result; member in class:CCrossThreadProgress
/external/skia/src/animator/
H A DSkOperandInterpolator.h36 Result timeToValues(SkMSec time, SkOperand values[]) const;

Completed in 982 milliseconds

1234567891011>>