/external/easymock/src/org/easymock/internal/ |
Result.java | 23 public class Result implements IAnswer<Object>, Serializable {
31 private Result(IAnswer<?> value, boolean shouldFillInStackTrace) {
36 public static Result createThrowResult(final Throwable throwable) {
50 return new Result(new ThrowingAnswer(), true);
53 public static Result createReturnResult(final Object value) {
67 return new Result(new ReturningAnswer(), true);
70 public static Result createDelegatingResult(final Object value) {
95 return new Result(new DelegatingAnswer(), false);
98 public static Result createAnswerResult(IAnswer<?> answer) {
99 return new Result(answer, false); [all...] |
/external/llvm/include/llvm/Analysis/ |
CGSCCPassManager.h | 50 /// pass manager unless your parent module pass has received a proxy result 54 class Result { 56 explicit Result(CGSCCAnalysisManager &CGAM) : CGAM(&CGAM) {} 59 Result(const Result &Arg) : CGAM(Arg.CGAM) {} 60 Result(Result &&Arg) : CGAM(std::move(Arg.CGAM)) {} 61 Result &operator=(Result RHS) { 65 ~Result(); [all...] |
ScalarEvolutionAliasAnalysis.h | 41 /// Analysis pass providing a never-invalidated alias analysis result. 44 typedef SCEVAAResult Result; 60 std::unique_ptr<SCEVAAResult> Result; 67 SCEVAAResult &getResult() { return *Result; } 68 const SCEVAAResult &getResult() const { return *Result; }
|
CFLAliasAnalysis.h | 40 /// By definition, this result is stateless and so remains valid. 82 FunctionHandle(Function *Fn, CFLAAResult *Result) 83 : CallbackVH(Fn), Result(Result) { 85 assert(Result != nullptr); 92 CFLAAResult *Result; 95 assert(Result != nullptr); 97 Result->evict(cast<Function>(Val)); 113 /// Analysis pass providing a never-invalidated alias analysis result. 119 typedef CFLAAResult Result; [all...] |
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
uart.hpp | 173 * @return Result of operation 175 Result 178 return (Result) mraa_uart_flush(m_uart); 187 * @return Result of operation 189 Result 192 return (Result) mraa_uart_set_baudrate(m_uart, baud); 203 * @return Result of operation 205 Result 208 return (Result) mraa_uart_set_mode(m_uart, bytesize, (mraa_uart_parity_t) parity, stopbits); 216 * @return Result of operatio [all...] |
/prebuilts/go/darwin-x86/doc/progs/ |
timeout2.go | 9 func (c Conn) DoQuery(query string) Result { 10 return Result("result") 13 type Result string 15 func Query(conns []Conn, query string) Result { 16 ch := make(chan Result, 1)
|
/prebuilts/go/linux-x86/doc/progs/ |
timeout2.go | 9 func (c Conn) DoQuery(query string) Result { 10 return Result("result") 13 type Result string 15 func Query(conns []Conn, query string) Result { 16 ch := make(chan Result, 1)
|
/hardware/bsp/intel/peripheral/libupm/src/stepmotor/ |
stepmotor.cxx | 37 mraa::Result error = mraa::SUCCESS; 62 mraa::Result 68 mraa::Result 74 mraa::Result 76 mraa::Result error = mraa::SUCCESS; 88 mraa::Result 90 mraa::Result error = mraa::SUCCESS; 100 mraa::Result 102 mraa::Result error = mraa::SUCCESS;
|
/external/clang/lib/Lex/ |
Lexer.cpp | 203 std::string Result = Str; 205 for (unsigned i = 0, e = Result.size(); i != e; ++i) { 206 if (Result[i] == '\\' || Result[i] == Quote) { 207 Result.insert(Result.begin()+i, '\\'); 211 return Result; 342 std::string Result; 343 Result.resize(Tok.getLength()); 344 Result.resize(getSpellingSlow(Tok, TokStart, LangOpts, &*Result.begin())) [all...] |
/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) {
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAsyncTask.java | 18 public class ShadowAsyncTask<Params, Progress, Result> { 20 @RealObject private AsyncTask<Params, Progress, Result> realAsyncTask; 22 private final FutureTask<Result> future; 28 future = new FutureTask<Result>(worker) { 33 final Result result = get(); 36 getBridge().onPostExecute(result); 66 public Result get() throws InterruptedException, ExecutionException { 71 public Result get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { 76 public AsyncTask<Params, Progress, Result> execute(final Params... params) [all...] |
/external/vogar/src/vogar/tasks/ |
PrepareUserDirTask.java | 21 import vogar.Result; 34 @Override protected Result execute() throws Exception { 41 return Result.SUCCESS;
|
/hardware/bsp/intel/peripheral/libupm/src/my9221/ |
my9221.h | 82 mraa::Result setBarLevel (uint8_t level, bool direction=true); 92 mraa::Result lockData (); 93 mraa::Result send16bitBlock (short data);
|
/external/clang/lib/Frontend/Rewrite/ |
RewriteModernObjC.cpp | 375 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result); 377 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result); 379 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result); 397 std::string &Result); 399 void RewriteObjCFieldDecl(FieldDecl *fieldDecl, std::string &Result); 403 std::string &Result); 405 bool RewriteObjCFieldDeclType(QualType &Type, std::string &Result); 408 std::string &Result); 448 std::string &Result); 450 std::string &Result); [all...] |
/art/cmdline/ |
cmdline_types.h | 51 Result Parse(const std::string& args) { 53 return Result::Success(Unit{}); // NOLINT [whitespace/braces] [5] 55 return Result::Failure("Unexpected extra characters " + args); 78 Result Parse(const std::string& options) { 82 return Result::Usage( 97 return Result::Failure(s + 101 Result parse_attempt = ParseJdwpOption(jdwp_option.substr(0, equals_pos), 111 return Result::Failure(s + "Must specify JDWP transport: " + options); 114 return Result::Failure(s + "Must specify JDWP host and port when server=n: " + options); 117 return Result::Success(std::move(jdwp_options)) 295 long long int result = strtoll(begin, &end, 10); \/\/ NOLINT [runtime\/int] [4] local [all...] |
/hardware/bsp/intel/peripheral/libupm/src/lcd/ |
lcm1602.cxx | 50 mraa::Result error = mraa::SUCCESS; 111 mraa::Result error = mraa::SUCCESS; 190 mraa::Result 193 mraa::Result error = mraa::SUCCESS; 200 mraa::Result 203 mraa::Result error = mraa::SUCCESS; 256 mraa::Result 259 mraa::Result ret; 265 mraa::Result 268 mraa::Result ret [all...] |
/external/clang/unittests/AST/ |
MatchVerifier.h | 66 void run(const MatchFinder::MatchResult &Result) override; 67 virtual void verify(const MatchFinder::MatchResult &Result, 70 void setFailure(const Twine &Result) { 72 VerifyResult = Result.str(); 84 /// \brief Runs a matcher over some code, and returns the result of the 131 void MatchVerifier<NodeType>::run(const MatchFinder::MatchResult &Result) { 132 const NodeType *Node = Result.Nodes.getNodeAs<NodeType>(""); 138 verify(Result, *Node); 144 const MatchFinder::MatchResult &Result) { 145 BoundNodes::IDToNodeMap M = Result.Nodes.getMap() [all...] |
/external/clang/tools/libclang/ |
CXComment.h | 33 CXComment Result; 34 Result.ASTNode = C; 35 Result.TranslationUnit = TU; 36 return Result;
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/ |
btDiscreteCollisionDetectorInterface.h | 31 struct Result 34 virtual ~Result(){} 60 virtual void getClosestPoints(const ClosestPointInput& input,Result& output,class btIDebugDraw* debugDraw,bool swapResults=false) = 0; 64 struct btStorageResult : public btDiscreteCollisionDetectorInterface::Result
|
/external/lzma/CPP/7zip/Archive/Common/ |
CrossThreadProgress.cpp | 13 return Result;
|
/external/valgrind/none/tests/amd64/ |
cmpxchg.stdout.exp | 2 al!=cl so al should equal cl (Result al=33 bl=44 cl=33) 4 al==cl so cl should equal bl (Result al=55 bl=55 cl=55) 6 ax!=cx so ax should equal cx (Result ax=3333 bx=4444 cx=3333) 8 ax==cx so cx should equal bx (Result ax=5555 bx=5555 cx=5555) 10 eax!=ecx so eax should equal ecx (Result eax=33333333 ebx=44444444 ecx=33333333) 12 eax==ecx so ecx should equal ebx (Result eax=55555555 ebx=55555555 ecx=55555555) 14 rax!=rcx so rax should equal rcx (Result rax=333333333 rbx=444444444 rcx=333333333) 16 rax==rcx so ecx should equal rbx (Result rax=555555555 rbx=555555555 rcx=555555555)
|
/hardware/ti/omap3/dspbridge/libbridge/ |
perfutils.c | 40 INT Result = 0; 42 Result = gettimeofday(tv, &tz); 43 if (Result != 0) 46 return Result; 69 fprintf(stdout, "LOG: RESULT: %lu\n", totalTimeuSec);
|
/system/connectivity/shill/ |
mock_connectivity_trial.cc | 28 base::Callback<void(ConnectivityTrial::Result)>()) {}
|
/frameworks/base/core/java/android/database/ |
CursorJoiner.java | 30 * for (CursorJointer.Result joinerResult : joiner) { 46 implements Iterator<CursorJoiner.Result>, Iterable<CursorJoiner.Result> { 50 private Result mCompareResult; 56 * The result of a call to next(). 58 public enum Result { 98 public Iterator<Result> iterator() { 142 * Returns the comparison result of the next row from each cursor. If one cursor 148 * Once next() has been called the cursors specified in the result of the call to 150 * from the cursor that was not indicated in the call to next() will result i [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
ContentProviderTask.java | 42 public class ContentProviderTask extends AsyncTask<Void, Void, ContentProviderTask.Result> { 50 public static class Result { 55 * Create a new result. 59 private Result(Exception exception, ContentProviderResult[] results) { 65 * Create a new success result. 69 private static Result newSuccess(ContentProviderResult[] success) { 70 return new Result(null, success); 74 * Create a new failure result. 77 private static Result newFailure(Exception failure) { 78 return new Result(failure, null) 84 Result result; local [all...] |