HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 201 - 225 of 1041) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/SemaTemplate/
instantiate-expr-4.cpp 240 template<typename T, typename Result>
243 Result result = t.m; // expected-error{{non-const lvalue reference to type}} local
262 template<typename T, typename Result>
265 Result result = t->m; // expected-error 2{{non-const lvalue reference}} local
307 template<typename T, typename Result>
310 Result result = t.f(); local
322 template<typename Result>
337 T result = x.f(); \/\/ expected-error{{non-const lvalue reference}} local
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 204 std::pair<iterator, bool> Result = DiagMap.insert(
208 if (Result.second)
209 Result.first->second = GetDefaultDiagMappingInfo(Diag);
211 return Result.first->second;
408 DiagnosticIDs::Level Result = DiagnosticIDs::Fatal;
420 Result = DiagnosticIDs::Ignored;
423 Result = DiagnosticIDs::Warning;
426 Result = DiagnosticIDs::Error;
429 Result = DiagnosticIDs::Fatal;
434 if (Diag.EnableAllWarnings && Result == DiagnosticIDs::Ignored &
    [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 43 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
166 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
167 if (Result.isInvalid())
170 Exprs[i] = Result.take();
382 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
391 if (!Result.isUsable()) return Result;
393 Result = CheckPlaceholderExpr(Result.take());
394 if (!Result.isUsable()) return Result
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
ThemeTestActivity.java 56 private Result mPendingResult;
57 private ResultFuture<Result> mResultFuture;
63 mResultFuture = new ResultFuture<Result>();
64 mPendingResult = new Result();
115 // finish with result so that generated bitmaps can be captured automatically
157 public Future<Result> getResultFuture() {
161 static class Result {
184 public void set(T result) {
185 mResult = result;
  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 59 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/chromium_org/chrome/third_party/chromevox/extensions/searchvox/
abstract_result.js 4 * @fileoverview Defines a result type interface.
18 * Checks the result if it is an unknown result.
19 * @param {Element} result Result to be checked.
20 * @return {boolean} Whether or not the element is an unknown result.
22 cvox.AbstractResult.prototype.isType = function(result) {
27 * Speak a generic search result.
28 * @param {Element} result Generic result to be spoken
    [all...]
  /external/llvm/include/llvm/ADT/
MapVector.h 79 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
80 unsigned &I = Result.first->second;
81 if (Result.second) {
95 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
96 unsigned &I = Result.first->second;
97 if (Result.second) {
  /external/chromium_org/build/android/pylib/perf/
surface_stats_collector.py 25 class Result(object):
76 SurfaceStatsCollector.Result('refresh_period', None, 'seconds'),
77 SurfaceStatsCollector.Result('jank_count', None, 'janks'),
78 SurfaceStatsCollector.Result('max_frame_delay', None, 'vsyncs'),
79 SurfaceStatsCollector.Result('frame_lengths', None, 'vsyncs'),
80 SurfaceStatsCollector.Result('avg_surface_fps', None, 'fps')
93 """Returns a list of SurfaceStatsCollector.Result."""
113 SurfaceStatsCollector.Result(
116 SurfaceStatsCollector.Result(
118 SurfaceStatsCollector.Result(
    [all...]
  /external/chromium_org/chrome/browser/chromeos/attestation/
attestation_policy_browsertest.cc 66 void Callback(PlatformVerificationFlow::Result result,
70 result_ = result;
76 PlatformVerificationFlow::Result SyncContentProtectionAttestation() {
91 PlatformVerificationFlow::Result result_;
  /external/easymock/src/org/easymock/internal/
UnorderedBehavior.java 34 public void addExpected(ExpectedInvocation expected, Result result,
38 entry.getResults().add(result, count);
43 list.add(result, count);
47 public Result addActual(Invocation actual) {
53 Result result = entry.getResults().next(); local
54 if (result != null) {
57 return result;
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 37 OwningPtr<FileOutputBuffer> &Result,
83 Result.reset(new FileOutputBuffer(MappedFile.get(), FilePath, TempFilePath));
84 if (Result)
  /external/llvm/unittests/ADT/
VariadicFunctionTest.cpp 43 long Result = 0;
45 Result += *Args[i];
46 return Result;
86 // Returns the result in *num_in_range. We make the return type void
  /frameworks/compile/mclinker/include/mcld/Support/
HandleToArea.h 57 struct Result {
59 Result(FileHandle* pHandle, MemoryArea* pArea)
84 Result findFirst(const sys::fs::Path& pPath);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
ProcessingTask.java 32 static interface Result {}
61 Object result = doInBackground(message); local
63 msg.obj = result;
64 msg.arg1 = ProcessingTaskController.RESULT;
83 public abstract Result doInBackground(Request message);
84 public abstract void onResult(Result message);
  /external/chromium/chrome/browser/debugger/
devtools_remote_service.cc 30 const char kResultKey[] = "result";
71 response.SetInteger(kResultKey, Result::kOk);
74 response.SetInteger(kResultKey, Result::kOk);
94 response.SetInteger(kResultKey, Result::kOk);
99 response.SetInteger(kResultKey, Result::kUnknownCommand);
  /external/chromium/testing/gmock/test/
gmock-generated-internal-utils_test.cc 76 CompileAssertTypesEqual<int, F::Result>();
85 CompileAssertTypesEqual<int, F::Result>();
96 CompileAssertTypesEqual<int, F::Result>();
109 CompileAssertTypesEqual<char, F::Result>();
  /external/chromium_org/chrome/browser/component_updater/
crx_downloader.cc 17 CrxDownloader::Result::Result() : error(0) {}
87 // Make a result and complete the download with a generic error for now.
88 Result result; local
89 result.error = -1;
90 download_callback_.Run(result);
106 const Result& result,
112 if (result.error)
    [all...]
  /external/chromium_org/chrome/browser/net/
dns_probe_runner_unittest.cc 48 void RunTest(MockDnsClientRule::Result query_result,
49 DnsProbeRunner::Result expected_probe_result);
56 MockDnsClientRule::Result query_result,
57 DnsProbeRunner::Result expected_probe_result) {
67 EXPECT_EQ(expected_probe_result, runner_.result());
106 EXPECT_EQ(DnsProbeRunner::UNKNOWN, runner_.result());
dns_probe_service_unittest.cc 46 void SetRules(MockDnsClientRule::Result system_query_result,
47 MockDnsClientRule::Result public_query_result) {
54 void RunTest(MockDnsClientRule::Result system_query_result,
55 MockDnsClientRule::Result public_query_result,
71 void ProbeCallback(DnsProbeStatus result) {
74 callback_result_ = result;
116 // Cached NXDOMAIN result should persist, not the result from the new rules.
  /external/chromium_org/components/policy/core/common/cloud/
external_policy_data_fetcher.h 44 // The result of a fetch job.
45 enum Result {
66 // the Result is SUCCESS and the scoped_ptr contains the retrieved data.
67 // Otherwise, Result indicates the type of error that occurred and the
69 typedef base::Callback<void(Result, scoped_ptr<std::string>)> FetchCallback;
80 // Fetch data from |url| and invoke |callback| with the result. See the
81 // documentation of FetchCallback and Result for more details. If a fetch
97 Result result,
130 // the Result is SUCCESS and the scoped_ptr contains the retrieved data
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_tap_gesture.h 21 virtual SyntheticGesture::Result ForwardInputEvents(
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_printing_host.h 38 PepperPrintSettingsManager::Result result);
  /external/chromium_org/third_party/skia/src/animator/
SkOperandInterpolator.h 36 Result timeToValues(SkMSec time, SkOperand values[]) const;
  /external/clang/lib/AST/
ExternalASTSource.cpp 58 SmallVectorImpl<Decl*> &Result) {
  /external/clang/lib/Lex/
PPLexerChange.cpp 213 SmallString<128> &Result) {
214 Result.clear();
221 Result = FilePath.substr(Path.size());
222 llvm::sys::path::append(Result,
231 Result = File->getName();
237 bool Preprocessor::HandleEndOfFile(Token &Result, bool isEndOfMacro) {
293 Result.startToken();
294 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
298 CurPTHLexer->getEOF(Result);
352 Result.startToken()
    [all...]

Completed in 1056 milliseconds

1 2 3 4 5 6 7 891011>>