/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/llvm/include/llvm/Support/ |
MD5.h | 57 /// \brief Finishes off the hash and puts the result in result. 58 void final(MD5Result &Result); 61 /// deposited into \p Str. The result will be of length 32. 62 static void stringifyResult(MD5Result &Result, SmallString<32> &Str);
|
/external/skia/src/codec/ |
SkJpegDecoderMgr.h | 33 SkCodec::Result returnFailure(const char caller[], SkCodec::Result result);
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
AbstractStatementRetriever.java | 56 * result = retrieveStatements(AssetFactory.create( 59 * {@code result} will contain the statements and the expiration time of this result. The statements 69 public abstract Result retrieveStatements(AbstractAsset source) 75 public interface Result {
|
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
aio.hpp | 89 * @return mraa::Result type 91 Result 94 return (Result) mraa_aio_set_bit(m_aio, bits);
|
/hardware/bsp/intel/peripheral/libupm/src/ |
upm.i | 9 %apply int { mraa::Result };
|
/libcore/luni/src/main/java/javax/xml/transform/sax/ |
TransformerHandler.java | 22 import javax.xml.transform.Result; 31 * them to a Result. 37 * <p>Set the <code>Result</code> associated with this 40 * @param result A <code>Result</code> instance, should not be 43 * @throws IllegalArgumentException if result is invalid for some reason. 45 public void setResult(Result result) throws IllegalArgumentException;
|
/system/connectivity/shill/ |
mock_http_request.h | 33 MOCK_METHOD3(Start, HTTPRequest::Result( 36 const base::Callback<void(Result, const ByteString&)>& result_callback));
|
connectivity_trial.h | 52 // given URL. Any result that deviates from the expected behavior (DNS or HTTP 72 struct Result { 73 Result() 75 Result(Phase phase_in, Status status_in) 87 const base::Callback<void(Result)>& trial_callback); 95 // Static method to map from the result of a portal detection phase to a 100 // phases for portal detection. For example, if the HTTPRequest result is 102 // ConnectivityTrial::Result with the phase set to 105 static Result GetPortalResultForRequestResult(HTTPRequest::Result result) [all...] |
portal_detector_unittest.cc | 62 MATCHER_P(IsResult, result, "") { 63 return (result.trial_result.phase == arg.trial_result.phase && 64 result.trial_result.status == arg.trial_result.status && 65 result.final == arg.final); 119 MOCK_METHOD1(ResultCallback, void(const PortalDetector::Result& result)); 120 Callback<void(const PortalDetector::Result&)>& result_callback() { 125 Callback<void(const PortalDetector::Result&)> result_callback_; 145 void ExpectAttemptRetry(const PortalDetector::Result& result) { [all...] |
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/ |
MyActivity.java | 28 private final SynchronousQueue<Result> mResult = new SynchronousQueue<>(); 30 public static class Result { 35 public Result(int requestCode, int resultCode, Intent data) { 54 mResult.offer(new Result(requestCode, resultCode, data), 5, TimeUnit.SECONDS); 60 public Result getResult() { 61 final Result result; local 63 result = mResult.poll(30, TimeUnit.SECONDS); 67 if (result == null) { 68 throw new IllegalStateException("Activity didn't receive a Result in 30 seconds") [all...] |
/external/vogar/src/vogar/tasks/ |
Task.java | 23 import vogar.Result; 28 * Tasks may be run at most once; running a task produces a result. 34 volatile Result result; field in class:Task 71 if (task.result == null) { 76 if (task.result != Result.SUCCESS) { 83 protected abstract Result execute() throws Exception; 86 if (result != null) { 91 result = execute() [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
WeakAsyncTask.java | 23 public abstract class WeakAsyncTask<Params, Progress, Result, WeakTarget> extends 24 AsyncTask<Params, Progress, Result> { 42 protected final Result doInBackground(Params... params) { 53 protected final void onPostExecute(Result result) { 56 this.onPostExecute(target, result); 64 protected abstract Result doInBackground(WeakTarget target, Params... params); 66 protected void onPostExecute(WeakTarget target, Result result) {
|
/external/gmock/include/gmock/ |
gmock-actions.h | 254 typedef typename internal::Function<F>::Result Result; 264 virtual Result Perform(const ArgumentTuple& args) = 0; 282 typedef typename internal::Function<F>::Result Result; 312 Result Perform(const ArgumentTuple& args) const { 339 // template <typename Result, typename ArgumentTuple> 340 // Result Perform(const ArgumentTuple& args) const { 341 // // Processes the arguments and returns a result, using 365 typedef typename internal::Function<F>::Result Result [all...] |
/external/google-breakpad/src/testing/include/gmock/ |
gmock-actions.h | 254 typedef typename internal::Function<F>::Result Result; 264 virtual Result Perform(const ArgumentTuple& args) = 0; 282 typedef typename internal::Function<F>::Result Result; 312 Result Perform(const ArgumentTuple& args) const { 339 // template <typename Result, typename ArgumentTuple> 340 // Result Perform(const ArgumentTuple& args) const { 341 // // Processes the arguments and returns a result, using 365 typedef typename internal::Function<F>::Result Result [all...] |
/external/opencv3/samples/cpp/tutorial_code/core/mat_mask_operations/ |
mat_mask_operations.cpp | 21 void Sharpen(const Mat& myImage,Mat& Result); 62 void Sharpen(const Mat& myImage,Mat& Result) 67 Result.create(myImage.size(),myImage.type()); 75 uchar* output = Result.ptr<uchar>(j); 84 Result.row(0).setTo(Scalar(0)); 85 Result.row(Result.rows-1).setTo(Scalar(0)); 86 Result.col(0).setTo(Scalar(0)); 87 Result.col(Result.cols-1).setTo(Scalar(0)) [all...] |
/frameworks/support/compat/java/android/support/v4/content/ |
ModernAsyncTask.java | 49 abstract class ModernAsyncTask<Params, Progress, Result> { 81 private final WorkerRunnable<Params, Result> mWorker; 82 private final FutureTask<Result> mFuture; 125 mWorker = new WorkerRunnable<Params, Result>() { 127 public Result call() throws Exception { 129 Result result = null; 133 result = doInBackground(mParams); 136 postResult(result); 138 return result; 489 AsyncTaskResult result = (AsyncTaskResult) msg.obj; local [all...] |
/external/clang/include/clang/Lex/ |
Lexer.h | 139 bool Lex(Token &Result); 148 void IndirectLex(Token &Result) override { Lex(Result); } 154 bool LexFromRawLexer(Token &Result) { 156 Lex(Result); 208 void ReadToEndOfLine(SmallVectorImpl<char> *Result = nullptr); 241 /// Tok.getLength() bytes long. The length of the actual result is returned. 287 static bool getRawToken(SourceLocation Loc, Token &Result, 408 /// name is spelled. Thus, the result shouldn't out-live that SourceManager. 468 bool LexTokenInternal(Token &Result, bool TokAtPhysicalStartOfLine) [all...] |
/frameworks/base/core/java/android/os/ |
AsyncTask.java | 50 * whose result is published on the UI thread. An asynchronous task is defined by 3 generic 51 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>, 86 * protected void onPostExecute(Long result) { 87 * showDialog("Downloaded " + result + " bytes"); 104 * <li><code>Result</code>, the type of the result of the background 122 * of the asynchronous task are passed to this step. The result of the computation must 133 * computation finishes. The result of the background computation is passed to 180 public abstract class AsyncTask<Params, Progress, Result> { 227 private final WorkerRunnable<Params, Result> mWorker 673 AsyncTaskResult<?> result = (AsyncTaskResult<?>) msg.obj; local [all...] |
/external/clang/unittests/Tooling/ |
CompilationDatabaseTest.cpp | 352 std::vector<std::string> Result = unescapeJsonCommandLine(""); 353 EXPECT_TRUE(Result.empty()); 357 std::vector<std::string> Result = unescapeJsonCommandLine("a b c"); 358 ASSERT_EQ(3ul, Result.size()); 359 EXPECT_EQ("a", Result[0]); 360 EXPECT_EQ("b", Result[1]); 361 EXPECT_EQ("c", Result[2]); 365 std::vector<std::string> Result = unescapeJsonCommandLine(" a b "); 366 ASSERT_EQ(2ul, Result.size()); 367 EXPECT_EQ("a", Result[0]) [all...] |
/external/llvm/unittests/ProfileData/ |
SampleProfTest.cpp | 104 sampleprof_error Result; 108 Result = FooSamples.addTotalSamples(1); 109 ASSERT_EQ(Result, sampleprof_error::success); 111 Result = FooSamples.addHeadSamples(1); 112 ASSERT_EQ(Result, sampleprof_error::success); 114 Result = FooSamples.addBodySamples(10, 0, 1); 115 ASSERT_EQ(Result, sampleprof_error::success); 117 Result = FooSamples.addTotalSamples(Max); 118 ASSERT_EQ(Result, sampleprof_error::counter_overflow); 121 Result = FooSamples.addHeadSamples(Max) [all...] |
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
ExtractEngine.cpp | 34 HRESULT Result;
43 Result = E_FAIL;
55 Result = ArchiveLink.Open2(options, ExtractCallbackSpec);
56 if (Result != S_OK)
58 if (Result != S_OK)
73 Result = E_FAIL;
79 Result = ArchiveLink.GetArchive()->Extract(0, (UInt32)(Int32)-1 , BoolToInt(false), ExtractCallback);
91 catch(...) { Result = E_FAIL; }
137 return t.Result;
|
/hardware/bsp/intel/peripheral/libupm/src/lcd/ |
ssd1306.h | 128 * @return Result of the operation 130 mraa::Result draw(uint8_t* data, int bytes); 136 * @return Result of the operation 138 mraa::Result write(std::string msg); 144 * @return Result of the operation 146 mraa::Result setCursor(int row, int column); 150 * @return Result of the operation 152 mraa::Result clear(); 156 * @return Result of the operation 158 mraa::Result home() [all...] |
/cts/hostsidetests/appsecurity/test-apps/UsePermissionApp23/src/com/android/cts/usepermission/ |
BasePermissionActivity.java | 30 private final SynchronousQueue<Result> mResult = new SynchronousQueue<>(); 33 public static class Result { 38 public Result(int requestCode, String[] permissions, int[] grantResults) { 60 mResult.offer(new Result(requestCode, permissions, grantResults), 5, TimeUnit.SECONDS); 74 public Result getResult() {
|
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
AsyncTask.java | 67 * whose result is published on the UI thread. An asynchronous task is defined by 3 generic 68 * types, called <code>Params</code>, <code>Progress</code> and <code>Result</code>, 103 * protected void onPostExecute(Long result) { 104 * showDialog("Downloaded " + result + " bytes"); 121 * <li><code>Result</code>, the type of the result of the background 139 * of the asynchronous task are passed to this step. The result of the computation must 150 * computation finishes. The result of the background computation is passed to 197 public abstract class AsyncTask<Params, Progress, Result> { 239 private final WorkerRunnable<Params, Result> mWorker 666 AsyncTaskResult result = (AsyncTaskResult) msg.obj; local [all...] |