HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 126 - 150 of 467) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 372 unsigned Result = static_cast<unsigned>(ShiftMO.getImm()) << 16;
375 Result |= UImm16MO.getImm();
376 return Result;
429 return Result | getAddressWithFixup(UImm16MO, requestedFixup, Fixups);
444 // eventual result could be either a MOVZ or a MOVN. It's the MCCodeEmitter's
  /external/llvm/lib/Target/Mips/
MipsJITInfo.cpp 198 StubLayout Result = { 4*4, 4 };
199 return Result;
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.cpp 357 StubLayout Result = {10*4, 4};
358 return Result;
  /external/llvm/lib/Target/
TargetMachineC.cpp 209 bool Result = LLVMTargetMachineEmit(T, M, destf, codegen, ErrorMessage);
211 return Result;
220 bool Result = LLVMTargetMachineEmit(T, M, Out, codegen, ErrorMessage);
226 return Result;
  /external/llvm/tools/lli/
lli.cpp 478 int Result;
505 if (Target.executeCode(Entry, Result))
518 Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp);
532 ResultGV.IntVal = APInt(32, Result);
535 errs() << "ERROR: exit(" << Result << ") returned!\n";
542 return Result;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 80 Function *Result = Function::Create(
83 Value *Arg = Result->arg_begin();
84 BasicBlock *BB = BasicBlock::Create(M->getContext(), "entry", Result);
86 return Result;
JITEventListenerTestCommon.h 102 Function *Result = Function::Create(
105 Value *Arg = Result->arg_begin();
106 BasicBlock *BB = BasicBlock::Create(M->getContext(), "entry", Result);
117 return Result;
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 51 Function *Result = Function::Create(
55 BasicBlock *BB = BasicBlock::Create(Context, Name, Result);
58 return Result;
69 Function *Result = startFunction<Signature>(M, "caller");
73 Function::arg_iterator arg_iter = Result->arg_begin();
74 for(;arg_iter != Result->arg_end(); ++arg_iter)
79 return Result;
86 Function *Result = startFunction<int32_t(void)>(M, "main");
89 endFunctionWithRet(Result, ReturnVal);
91 return Result;
    [all...]
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 129 unsigned Result = 0;
141 Result |= ResElt << (4*i);
143 return Result;
514 OP_VUZPL, // VUZP, left result
515 OP_VUZPR, // VUZP, right result
516 OP_VZIPL, // VZIP, left result
517 OP_VZIPR, // VZIP, right result
518 OP_VTRNL, // VTRN, left result
519 OP_VTRNR // VTRN, right result
  /external/v8/src/
regexp-macro-assembler.h 182 // Result of calling generated native RegExp code.
191 enum Result { RETRY = -2, EXCEPTION = -1, FAILURE = 0, SUCCESS = 1 };
197 static Result Match(Handle<Code> regexp,
230 static Result Execute(Code* code,
  /external/valgrind/main/auxprogs/
ppcfround.c 15 Result;
99 static void showResult ( Result r, ULong hideMask )
101 /* hidemask should have 1 for every result bit we **don't**
118 in f1, f2, f3, and result should go in f4. */
121 static Result insn_##name ( double arg1, double arg2, double arg3 ) \
153 { Result result; \
154 result.fres = foo.res; \
155 result.cr = foo.cr_after; \
156 result.fpscr = foo.fpscr_after;
    [all...]
  /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...]
  /frameworks/native/services/sensorservice/
traits.h 68 typedef T Result;
72 typedef U Result;
95 enum { result = false }; enumerator in enum:android::TypeTraits::PointerTraits::__anon32396
99 enum { result = true }; enumerator in enum:android::TypeTraits::PointerTraits::__anon32397
108 enum { isPointer = PointerTraits<T>::result };
112 typedef typename Select<isStdArith || isPointer, T, const T&>::Result ParameterType;
  /packages/apps/Email/src/com/android/email/activity/
ContactStatusLoader.java 40 public class ContactStatusLoader extends AsyncTaskLoader<ContactStatusLoader.Result> {
62 * Class that encapsulates the result.
64 public static class Result {
65 public static final Result UNKNOWN = new Result(null, PRESENCE_UNKNOWN_RESOURCE_ID, null);
76 public Result(Bitmap photo, int presenceResId, Uri lookupUri) {
94 public Result loadInBackground() {
103 public static Result getContactInfo(Context context, String emailAddress) {
110 return Result.UNKNOWN;
116 return Result.UNKNOWN
    [all...]
  /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);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSource.java 127 return new Result(query, cursor);
157 private class Result extends SuggestionCursorWrapper implements SourceResult {
159 public Result(String userQuery, SuggestionCursor cursor) {
  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.cc 85 virtual bool GetNextNameValue(Result* result) OVERRIDE;
195 virtual bool GetNextNameValue(Result* result) OVERRIDE;
211 // doubly escaped. For example, for literal == "abc\\Edef" the result is
289 // Implementation of FormDataParser and FormDataParser::Result.
291 FormDataParser::Result::Result() {}
292 FormDataParser::Result::~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/chrome/browser/net/websocket_experiment/
websocket_experiment_task.h 115 class Result {
117 Result()
149 const Result& result() const { return result_; } function in class:chrome_browser_net_websocket_experiment::WebSocketExperimentTask
171 void DoLoop(int result);
174 int DoURLFetchComplete(int result);
176 int DoWebSocketConnectComplete(int result);
178 int DoWebSocketReceiveHello(int result);
180 int DoWebSocketKeepIdleComplete(int result);
181 int DoWebSocketReceivePushMessage(int result);
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
search_provider.h 160 // The Result classes are intermediate representations of AutocompleteMatches,
166 // highly fragmented SearchProvider logic for each Result type.
167 class Result {
169 Result(bool from_keyword_provider,
172 virtual ~Result();
184 // Returns if this result is inlineable against the current input |input|.
188 // Returns the default relevance value for this result (which may
196 // True if the result came from the keyword provider.
203 // Whether this result's relevance score was fully or partly calculated
211 class SuggestResult : public Result {
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_messages_apitest.cc 133 // Result codes from the test. These must match up with |results| in
135 enum Result {
145 Result CanConnectAndSendMessages(const std::string& extension_id) {
149 Result CanConnectAndSendMessages(Browser* browser,
151 int result; local
155 &result));
156 return static_cast<Result>(result);
  /external/chromium_org/net/dns/
dns_test_util.h 180 enum Result {
189 Result result_arg)
190 : result(result_arg), prefix(prefix_arg), qtype(qtype_arg) { }
192 Result result; member in struct:net::MockDnsClientRule
  /external/chromium_org/net/http/
mock_http_cache.h 71 void CallbackLater(const net::CompletionCallback& callback, int result);
73 void RunCallback(const net::CompletionCallback& callback, int result);
79 int result);
147 void CallbackLater(const net::CompletionCallback& callback, int result);
239 int Result() { return fail_ ? net::ERR_FAILED : net::OK; }
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Decimal.cpp 69 enum Result {
77 Result m_result;
335 Decimal result(*this);
336 result.m_data.setSign(invertSign(m_data.sign()));
337 return result;
366 const uint64_t result = lhsSign == rhsSign
370 if (lhsSign == Negative && rhsSign == Positive && !result)
373 return static_cast<int64_t>(result) >= 0
374 ? Decimal(lhsSign, alignedOperands.exponent, result)
375 : Decimal(invertSign(lhsSign), alignedOperands.exponent, -static_cast<int64_t>(result));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
CheckedArithmetic.h 227 template <typename U, typename V> struct Result : ResultBase<typename RemoveChecked<U>::CleanType, typename RemoveChecked<V>::CleanType> {
230 template <typename LHS, typename RHS, typename ResultType = typename Result<LHS, RHS>::ResultType,
242 static inline bool add(LHS lhs, RHS rhs, ResultType& result) WARN_UNUSED_RETURN
254 result = lhs + rhs;
258 static inline bool sub(LHS lhs, RHS rhs, ResultType& result) WARN_UNUSED_RETURN
269 result = lhs - rhs;
273 static inline bool multiply(LHS lhs, RHS rhs, ResultType& result) WARN_UNUSED_RETURN
294 result = lhs * rhs;
304 static inline bool add(LHS lhs, RHS rhs, ResultType& result) WARN_UNUSED_RETURN
309 result = temp
579 double result = rhs * m_value; local
654 typename Result<U, V>::ResultType result = 0; local
666 typename Result<U, V>::ResultType result = 0; local
678 typename Result<U, V>::ResultType result = 0; local
    [all...]

Completed in 916 milliseconds

1 2 3 4 56 7 8 91011>>