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

1 2 3 4 56 7 8 91011>>

  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
DirectStatementRetriever.java 51 public static class Result implements AbstractStatementRetriever.Result {
66 private Result(List<Statement> statements, Long expireMillis) {
71 public static Result create(List<Statement> statements, Long expireMillis) {
72 return new Result(statements, expireMillis);
77 StringBuilder result = new StringBuilder(); local
78 result.append("Result: ");
79 result.append(mStatements.toString());
80 result.append(", mExpireMillis=")
94 Result result = (Result) o; local
108 int result = mStatements.hashCode(); local
164 ParsedStatement result = StatementParser local
196 ParsedStatement result = local
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 33 /** \class Resolver::Result
34 * \brief the result of symbol resolution
39 struct Result {
64 Result& pResult) const {
  /hardware/bsp/intel/peripheral/libupm/src/grovecircularled/
grovecircularled.cxx 41 mraa::Result error = mraa::SUCCESS;
53 mraa::Result
68 mraa::Result
93 mraa::Result
104 mraa::Result
106 mraa::Result error = mraa::SUCCESS;
117 mraa::Result
119 mraa::Result error = mraa::SUCCESS;
  /hardware/bsp/intel/peripheral/libupm/src/max5487/
max5487.h 105 mraa::Result CSOn ();
110 mraa::Result CSOff ();
  /system/connectivity/shill/
connectivity_trial.cc 62 const Callback<void(Result)>& callback)
127 HTTPRequest::Result result = local
129 if (result != HTTPRequest::kResultInProgress) {
130 CompleteTrial(ConnectivityTrial::GetPortalResultForRequestResult(result));
164 CompleteTrial(Result(kPhaseContent, kStatusSuccess));
168 CompleteTrial(Result(kPhaseContent, kStatusFailure));
173 HTTPRequest::Result result, const ByteString& /*response_data*/) {
174 CompleteTrial(GetPortalResultForRequestResult(result));
    [all...]
connectivity_trial_unittest.cc 62 MATCHER_P(IsResult, result, "") {
63 return (result.phase == arg.phase &&
64 result.status == arg.status);
115 MOCK_METHOD1(ResultCallback, void(ConnectivityTrial::Result result));
116 Callback<void(ConnectivityTrial::Result)>& result_callback() {
121 Callback<void(ConnectivityTrial::Result)> result_callback_;
149 void ExpectTrialReturn(const ConnectivityTrial::Result& result) {
150 EXPECT_CALL(callback_target(), ResultCallback(IsResult(result)));
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 503 * Returns the result of saturated addition of the two inputs Value1, Value2
510 * [out] Result of operation
517 OMX_S32 Result;
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
704 OMX_S32 result; local
859 OMX_S32 result; local
896 OMX_S32 result; local
933 OMX_F64 result; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 503 * Returns the result of saturated addition of the two inputs Value1, Value2
510 * [out] Result of operation
517 OMX_S32 Result;
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
704 OMX_S32 result; local
859 OMX_S32 result; local
896 OMX_S32 result; local
933 OMX_F64 result; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 503 * Returns the result of saturated addition of the two inputs Value1, Value2
510 * [out] Result of operation
517 OMX_S32 Result;
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
704 OMX_S32 result; local
859 OMX_S32 result; local
896 OMX_S32 result; local
933 OMX_F64 result; local
    [all...]
  /external/easymock/src/org/easymock/internal/
Results.java 31 private final List<Result> results = new ArrayList<Result>();
33 public void add(Result result, Range range) {
42 results.add(result);
45 public Result next() {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BytesDictionaryMatcher.java 14 import android.icu.util.BytesTrie.Result;
50 Result result = bt.first(transform(c)); local
55 if (result.hasValue()) {
63 if (result == Result.FINAL_VALUE) {
66 } else if (result == Result.NO_MATCH) {
79 result = bt.next(transform(c));
CharsDictionaryMatcher.java 12 import android.icu.util.BytesTrie.Result;
29 Result result = uct.firstForCodePoint(c); local
34 if (result.hasValue()) {
43 if (result == Result.FINAL_VALUE) {
46 } else if (result == Result.NO_MATCH) {
58 result = uct.nextForCodePoint(c);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java 11 import com.ibm.icu.util.BytesTrie.Result;
28 Result result = uct.firstForCodePoint(c); local
33 if (result.hasValue()) {
42 if (result == Result.FINAL_VALUE) {
45 } else if (result == Result.NO_MATCH) {
57 result = uct.nextForCodePoint(c);
  /external/libnfc-nxp/src/
phFriNfc_SmtCrdFmt.c 83 NFCSTATUS result = NFCSTATUS_SUCCESS; local
91 result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, NFCSTATUS_INVALID_PARAMETER);
162 return (result);
200 NFCSTATUS result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT, local
215 result = phFriNfc_MfUL_ConvertToReadOnly (NdefSmtCrdFmt);
220 result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT,
228 result = phFriNfc_Desfire_ConvertToReadOnly (NdefSmtCrdFmt);
236 result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT,
242 return result;
255 NFCSTATUS Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_SMTCRDFMT,
    [all...]
  /external/llvm/include/llvm/Analysis/
ObjCARCAliasAnalysis.h 52 /// By definition, this result is stateless and so remains valid.
65 /// Analysis pass providing a never-invalidated alias analysis result.
68 typedef ObjCARCAAResult Result;
84 std::unique_ptr<ObjCARCAAResult> Result;
91 ObjCARCAAResult &getResult() { return *Result; }
92 const ObjCARCAAResult &getResult() const { return *Result; }
ScopedNoAliasAA.h 25 /// A simple AA result which uses scoped-noalias metadata to answer queries.
37 /// By definition, this result is stateless and so remains valid.
50 /// Analysis pass providing a never-invalidated alias analysis result.
53 typedef ScopedNoAliasAAResult Result;
69 std::unique_ptr<ScopedNoAliasAAResult> Result;
76 ScopedNoAliasAAResult &getResult() { return *Result; }
77 const ScopedNoAliasAAResult &getResult() const { return *Result; }
TypeBasedAliasAnalysis.h 25 /// A simple AA result that uses TBAA metadata to answer queries.
36 /// By definition, this result is stateless and so remains valid.
51 /// Analysis pass providing a never-invalidated alias analysis result.
54 typedef TypeBasedAAResult Result;
70 std::unique_ptr<TypeBasedAAResult> Result;
77 TypeBasedAAResult &getResult() { return *Result; }
78 const TypeBasedAAResult &getResult() const { return *Result; }
  /external/llvm/lib/Analysis/
ScalarEvolutionNormalization.cpp 119 const SCEV *Result = SE.getAddRecExpr(Operands, L, SCEV::FlagAnyWrap);
137 Result = SE.getMinusSCEV(Result, TransformedStep);
145 assert(S == TransformSubExpr(Result, User, OperandValToReplace) &&
168 Result = SE.getMinusSCEV(Result, TransformedStep);
172 assert(S == TransformSubExpr(Result, User, OperandValToReplace) &&
183 Result = SE.getAddExpr(Result, TransformedStep);
187 return Result;
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 68 LineNumberInfo Result;
70 Result.Offset = Address - StartAddress;
71 Result.LineNumber = Line.Line;
73 return Result;
81 iJIT_Method_Load Result;
82 memset(&Result, 0, sizeof(iJIT_Method_Load));
84 Result.method_id = Wrapper.iJIT_GetNewMethodID();
85 Result.method_name = const_cast<char*>(FnName);
86 Result.method_load_address = reinterpret_cast<void*>(FnStart);
87 Result.method_size = FnSize
    [all...]
  /external/skia/include/codec/
SkAndroidCodec.h 103 * result in a valid subset. If false is returned,
221 * @return Result kSuccess, or another value explaining the type of failure.
227 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
237 SkCodec::Result getAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes);
239 SkCodec::Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) {
253 virtual SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels,
  /external/skia/src/codec/
SkRawAdapterCodec.h 35 SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
SkWebpAdapterCodec.h 30 SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
  /external/vogar/src/vogar/
Expectation.java 25 * The expected result of an action execution. This is typically encoded in the
29 * result UNSUPPORTED
34 * result COMPILE_FAILED
45 static final Expectation SUCCESS = new Expectation(Result.SUCCESS, MATCH_ALL_PATTERN,
51 /** The action's expected result, such as {@code EXEC_FAILED}. */
52 private final Result result; field in class:Expectation
69 public Expectation(Result result,
75 if (result == null || description == null || pattern == null)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
RenderResult.java 20 import com.android.ide.common.rendering.api.Result;
33 private final Result mRenderResult;
35 private RenderResult(@Nullable Result result, @Nullable List<ViewInfo> systemViewInfoList,
39 mRenderResult = result;
50 Result getResult() {
  /hardware/bsp/intel/peripheral/libupm/src/adxl345/
adxl345.h 101 mraa::Result update();

Completed in 1666 milliseconds

1 2 3 4 56 7 8 91011>>