HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 176 - 200 of 1269) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/extensions/common/
extension_utility_messages.h 14 IPC_STRUCT_TRAITS_BEGIN(UpdateManifest::Result)
  /external/clang/lib/Lex/
PPCaching.cpp 48 void Preprocessor::CachingLex(Token &Result) {
53 Result = CachedTokens[CachedLexPos++];
58 Lex(Result);
63 CachedTokens.push_back(Result);
PPExpressions.cpp 82 static bool EvaluateDefined(PPValue &Result, Token &PeekTok, DefinedTracker &DT,
85 Result.setBegin(beginLoc);
111 Result.Val = II->hasMacroDefinition();
112 Result.Val.setIsUnsigned(false); // Result is signed intmax_t.
116 if (Result.Val != 0 && ValueLive) {
127 Result.setEnd(PeekTok.getLocation());
137 Result.setEnd(PeekTok.getLocation());
141 Result.setEnd(PeekTok.getLocation());
149 if (!MD && Result.Val != 0
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 82 llvm::APSInt Result;
83 if (CE->EvaluateAsInt(Result, C.getASTContext(), Expr::SE_NoSideEffects)) {
84 // Make sure the result has the correct type.
87 BVF.getAPSIntType(CE->getType()).apply(Result);
88 V = SVB.makeIntVal(Result);
  /external/clang/tools/libclang/
CXSourceLocation.cpp 44 CXSourceLocation Result = { { nullptr, nullptr }, 0 };
45 return Result;
55 CXSourceRange Result = { { nullptr, nullptr }, 0, 0 };
56 return Result;
63 CXSourceRange Result = { { begin.ptr_data[0], end.ptr_data[0] }, 0, 0 };
64 return Result;
71 CXSourceRange Result = { { begin.ptr_data[0], begin.ptr_data[1] },
74 return Result;
92 CXSourceLocation Result = { { range.ptr_data[0], nullptr }, 0 };
93 return Result;
    [all...]
  /external/deqp/modules/glshared/
glsShaderPerformanceMeasurer.hpp 69 struct Result
74 Result (float megaVertPerSec_, float megaFragPerSec_) : megaVertPerSec(megaVertPerSec_), megaFragPerSec(megaFragPerSec_) {}
86 Result getResult (void) const { DE_ASSERT(m_state == STATE_FINISHED); return m_result; }
120 Result m_result;
  /external/junit/src/org/junit/internal/
TextListener.java 8 import org.junit.runner.Result;
25 public void testRunFinished(Result result) {
26 printHeader(result.getRunTime());
27 printFailures(result);
28 printFooter(result);
59 protected void printFailures(Result result) {
60 List<Failure> failures= result.getFailures();
77 protected void printFooter(Result result)
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Results.cpp 23 AddResultToArray (CFCMutableArray &array, Results::Result *result);
26 AddResultToDictionary (CFCMutableDictionary &parent_dict, const char *key, Results::Result *result);
29 AddResultToArray (CFCMutableArray &parent_array, Results::Result *result)
31 switch (result->GetType())
33 case Results::Result::Type::Invalid:
36 case Results::Result::Type::Array:
38 Results::Array *value = result->GetAsArray()
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
CrossThreadProgress.h 17 HRESULT Result;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
MifareUltralightTagTester.java 66 public Result verifyTag(Tag tag) throws IOException {
72 return new Result(expectedContent, actualContent,
75 return new Result(expectedContent, null, false);
  /cts/common/util/src/com/android/compatibility/common/util/
MetricsXmlSerializer.java 39 ReportLog.Result summary = reportLog.getSummary();
40 List<ReportLog.Result> detailedMetrics = reportLog.getDetailedMetrics();
53 for (ReportLog.Result result : detailedMetrics) {
55 mXmlSerializer.attribute(null, "source", result.getLocation());
56 mXmlSerializer.attribute(null, "message", result.getMessage());
57 mXmlSerializer.attribute(null, "scoreType", result.getType().getXmlString());
58 mXmlSerializer.attribute(null, "unit", result.getUnit().getXmlString());
60 for (double value : result.getValues()) {
  /external/chromium_org/chrome/browser/extensions/api/gcm/
gcm_api.h 54 gcm::GCMClient::Result result);
70 void CompleteFunctionWithResult(gcm::GCMClient::Result result);
87 gcm::GCMClient::Result result);
  /external/chromium_org/chrome/browser/services/gcm/
gcm_profile_service_unittest.cc 75 GCMClient::Result result);
77 GCMClient::Result result);
80 GCMClient::Result result);
84 GCMClient::Result registration_result() const { return registration_result_; }
85 GCMClient::Result unregistration_result() const {
89 GCMClient::Result send_result() const { return send_result_; }
98 GCMClient::Result registration_result_
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_controller.cc 43 SyntheticGesture::Result result = local
46 if (result == SyntheticGesture::GESTURE_RUNNING) {
55 pending_gesture_result_.reset(new SyntheticGesture::Result(result));
83 SyntheticGesture::Result result) {
84 DCHECK_NE(result, SyntheticGesture::GESTURE_RUNNING);
89 completion_callback.Run(result);
synthetic_gesture_controller.h 32 typedef base::Callback<void(SyntheticGesture::Result)>
49 SyntheticGesture::Result result);
52 scoped_ptr<SyntheticGesture::Result> pending_gesture_result_;
  /external/chromium_org/extensions/browser/api/web_request/
upload_data_presenter.h 51 // 3. If that check passed then retrieve object->Result().
57 virtual scoped_ptr<base::Value> Result() = 0;
77 virtual scoped_ptr<base::Value> Result() OVERRIDE;
107 virtual scoped_ptr<base::Value> Result() OVERRIDE;
  /external/chromium_org/mojo/spy/
spy_server_impl.cc 44 const mojo::Callback<void(spy_api::Result, mojo::String)>& callback) {
54 const mojo::Callback<void(spy_api::Result)>& callback) {
66 const mojo::Callback<void(spy_api::Result)>& callback) {
websocket_server.h 54 virtual void OnFatalError(spy_api::Result result) OVERRIDE;
55 virtual void OnSessionEnd(spy_api::Result result) OVERRIDE;
63 void OnStartSession(spy_api::Result, mojo::String);
  /external/chromium_org/net/quic/
quic_crypto_server_stream.h 87 const ValidateClientHelloResultCallback::Result& result,
106 const Result& result) OVERRIDE;
119 const ValidateClientHelloResultCallback::Result& result);
124 // Pointer to the active callback that will receive the result of
  /external/chromium_org/third_party/skia/include/utils/
SkInterpolator.h 17 enum Result {
62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
108 those values are the result of pinning to either the first
114 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
  /external/clang/include/clang/AST/
ASTTypeTraits.h 243 DynTypedNode Result;
244 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>();
245 new (Result.Storage.buffer) const BaseT * (&Node);
246 return Result;
258 DynTypedNode Result;
259 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>();
260 new (Result.Storage.buffer) const T * (&Node);
261 return Result;
273 DynTypedNode Result;
274 Result.NodeKind = ASTNodeKind::getFromNodeKind<T>()
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 40 // is signed, /then/ match the signedness of the result type.
50 llvm::APSInt Result(Value, Value.isUnsigned());
51 apply(Result);
52 return Result;
  /external/clang/lib/Basic/
ObjCRuntime.cpp 20 std::string Result;
22 llvm::raw_string_ostream Out(Result);
25 return Result;
VersionTuple.cpp 20 std::string Result;
22 llvm::raw_string_ostream Out(Result);
25 return Result;
  /external/clang/lib/Index/
SimpleFormatContext.h 59 std::string Result;
60 llvm::raw_string_ostream OS(Result);
63 return Result;

Completed in 7616 milliseconds

1 2 3 4 5 6 78 91011>>