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

12 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.cpp 63 int64_t Result = Value.getConstant();
68 Result = Result & 0xffff;
71 Result = (Result >> 16) & 0xffff;
74 Result = ((Result + 0x8000) >> 16) & 0xffff;
77 Result = (Result >> 32) & 0xffff;
80 Result = ((Result + 0x8000) >> 32) & 0xffff
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
Result.java 18 // $Id: Result.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to build a transformation result tree.</p>
28 public interface Result {
32 * result tree disables output escaping.
34 * <p>Normally, result tree serialization escapes & and < (and
44 * <p>Result DOM trees may also have PI_DISABLE_OUTPUT_ESCAPING and
54 * if the result tree enables output escaping at some point after having
63 * Set the system identifier for this Result.
65 * <p>If the Result is not to be written to a file, the system identifier is optional.
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 41 const ast_matchers::MatchFinder::MatchResult &Result) {
42 if (const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId)) {
44 *Result.SourceManager,
54 const ast_matchers::MatchFinder::MatchResult &Result) {
55 const Stmt *FromMatch = Result.Nodes.getStmtAs<Stmt>(FromId);
56 const Stmt *ToMatch = Result.Nodes.getStmtAs<Stmt>(ToId);
59 *Result.SourceManager, *FromMatch, *ToMatch));
67 const ast_matchers::MatchFinder::MatchResult &Result) {
68 if (const IfStmt *Node = Result.Nodes.getStmtAs<IfStmt>(Id)) {
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body))
    [all...]
  /external/llvm/include/llvm/Object/
ObjectFile.h 49 std::error_code getAddress(uint64_t &Result) const;
50 std::error_code getOffset(uint64_t &Result) const;
52 std::error_code getType(uint64_t &Result) const;
57 std::error_code getHidden(bool &Result) const;
62 std::error_code getTypeName(SmallVectorImpl<char> &Result) const;
68 std::error_code getValueString(SmallVectorImpl<char> &Result) const;
95 std::error_code getName(StringRef &Result) const;
96 std::error_code getAddress(uint64_t &Result) const;
97 std::error_code getSize(uint64_t &Result) const;
98 std::error_code getContents(StringRef &Result) const
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 202 llvm::raw_svector_ostream &Result) {
203 Result << "<" << C->getTagName();
207 Result << " ";
209 Result << Attr.Name;
211 Result << "=\"" << Attr.Value << "\"";
216 Result << ">";
218 Result << "/>";
228 FC(FC), Result(Str), Traits(Traits)
259 llvm::raw_svector_ostream Result;
284 Result << " ";
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
incident_report_uploader.h 18 // The result of a report upload. Values here are used for UMA so they must
20 enum Result {
32 // indicates the result of the upload, while the second contains the response
34 typedef base::Callback<void(Result, scoped_ptr<ClientIncidentResponse>)>
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture.h 36 enum Result {
46 virtual Result ForwardInputEvents(
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_print_settings_manager.h 18 typedef std::pair<PP_PrintSettings_Dev, int32_t> Result;
19 typedef base::Callback<void(Result)> Callback;
  /external/chromium_org/net/websockets/
websocket_deflate_predictor.h 20 enum Result {
27 // Returning this result implies that the deflater is running on
41 virtual Result Predict(const ScopedVector<WebSocketFrame>& frames,
  /external/chromium_org/printing/
printing_context_win.h 28 virtual Result UseDefaultSettings() OVERRIDE;
30 virtual Result UpdatePrinterSettings(bool external_preview,
32 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
33 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
34 virtual Result NewPage() OVERRIDE;
35 virtual Result PageDone() OVERRIDE;
36 virtual Result DocumentDone() OVERRIDE;
46 virtual Result InitializeSettings(const base::string16& device_name,
printing_context_android.h 38 virtual Result UseDefaultSettings() OVERRIDE;
40 virtual Result UpdatePrinterSettings(bool external_preview,
42 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
43 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
44 virtual Result NewPage() OVERRIDE;
45 virtual Result PageDone() OVERRIDE;
46 virtual Result DocumentDone() OVERRIDE;
printing_context_linux.h 45 virtual Result UseDefaultSettings() OVERRIDE;
46 virtual Result UpdatePrinterSettings(bool external_preview,
48 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
49 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
50 virtual Result NewPage() OVERRIDE;
51 virtual Result PageDone() OVERRIDE;
52 virtual Result DocumentDone() OVERRIDE;
printing_context_mac.h 32 virtual Result UseDefaultSettings() OVERRIDE;
34 virtual Result UpdatePrinterSettings(bool external_preview,
36 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
37 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
38 virtual Result NewPage() OVERRIDE;
39 virtual Result PageDone() OVERRIDE;
40 virtual Result DocumentDone() OVERRIDE;
  /external/skia/tools/skpdiff/
SkImageDiffer.h 24 struct Result {
25 double result; member in struct:SkImageDiffer::Result
50 Result* result) const = 0;
  /frameworks/support/v4/honeycomb/android/support/v4/os/
AsyncTaskCompatHoneycomb.java 26 static <Params, Progress, Result> void executeParallel(
27 AsyncTask<Params, Progress, Result> task,
  /cts/common/util/src/com/android/compatibility/common/util/
ReportLog.java 31 private Result mSummary;
32 private final List<Result> mDetails = new ArrayList<Result>();
34 class Result implements Serializable {
43 * Creates a result object to be included in the report. Each object has a message
44 * describing its values and enums to interpret them. In addition, each result also includes
45 * class, method and line number information about the test which added this result which is
56 private Result(String message, double[] values, ResultType type,
94 mDetails.add(new Result(message, values, type, unit, 0));
102 mDetails.add(new Result(message, values, type, unit, depth))
    [all...]
  /external/chromium_org/components/variations/
variations_seed_simulator.h 23 // VariationsSeedSimulator simulates the result of creating a set of studies
24 // and detecting which studies would result in group changes.
27 // The result of variations seed simulation, counting the number of experiment
30 struct Result {
43 Result();
44 ~Result();
53 // the result of evaluating |seed| with the given parameters. Returns the
56 Result SimulateSeedStudies(const VariationsSeed& seed,
75 // the result of evaluating the |processed_studies| list. It is expected that
79 Result ComputeDifferences
    [all...]
  /external/chromium_org/content/renderer/android/
content_detector.h 21 struct Result {
22 Result();
23 Result(const blink::WebRange& content_boundaries,
26 ~Result();
38 Result FindTappedContent(const blink::WebHitTestResult& hit_test);
content_detector.cc 17 ContentDetector::Result::Result() : valid(false) {}
19 ContentDetector::Result::Result(const blink::WebRange& content_boundaries,
28 ContentDetector::Result::~Result() {}
30 ContentDetector::Result ContentDetector::FindTappedContent(
33 return Result();
38 return Result();
41 return Result(range, content_text, intent_url)
    [all...]
  /external/chromium_org/extensions/browser/api/web_request/
form_data_parser.h 24 // Result encapsulates name-value pairs returned by GetNextNameValue.
25 class Result {
27 Result();
28 ~Result();
40 DISALLOW_COPY_AND_ASSIGN(Result);
59 // |result|. Returns true if a pair was found. Callers must have previously
61 virtual bool GetNextNameValue(Result* result) = 0;
  /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/clang/lib/Lex/
Lexer.cpp 209 std::string Result = Str;
211 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
212 if (Result[i] == '\\' || Result[i] == Quote) {
213 Result.insert(Result.begin()+i, '\\');
217 return Result;
348 std::string Result;
349 Result.resize(Tok.getLength());
350 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/chromium_org/chrome/browser/download/
download_target_determiner.h 93 // Result indicating how the workflow should proceed. The loop ends when a
110 // Result code returned by each step of the workflow below. Controls execution
112 enum Result {
145 // COMPLETE. Note that as a result, this object might be deleted. So |this|
156 Result DoGenerateTargetPath();
163 Result DoNotifyExtensions();
175 Result DoReserveVirtualPath();
183 Result DoPromptUserForDownloadPath();
195 Result DoDetermineLocalPath();
207 Result DoDetermineMimeType()
    [all...]
  /external/llvm/include/llvm/ADT/
StringSwitch.h 46 /// \brief The pointer to the result of this switch statement, once known,
48 const T *Result;
52 : Str(S), Result(nullptr) { }
56 if (!Result && N-1 == Str.size() &&
58 Result = &Value;
66 if (!Result && Str.size() >= N-1 &&
68 Result = &Value;
76 if (!Result && Str.size() >= N-1 &&
78 Result = &Value;
112 if (Result)
    [all...]

Completed in 637 milliseconds

12 3 4 5 6 7 8 91011>>