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

12 3 4 5 6 7 8 91011>>

  /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/chromium_org/chrome/browser/captive_portal/
captive_portal_login_detector.h 30 void OnCaptivePortalResults(Result previous_result, Result result);
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_gesture.h 37 enum Result {
48 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/skia/tools/skpdiff/
SkImageDiffer.h 24 struct Result {
25 double result; member in struct:SkImageDiffer::Result
50 Result* result) const = 0;
  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser.h 24 class Result {
26 Result();
27 ~Result();
48 DISALLOW_COPY_AND_ASSIGN(Result);
66 // Returns the next name-value pair as |result|. After SetSource has
69 virtual bool GetNextNameValue(Result* result) = 0;
  /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/clang/test/CodeGenCXX/
explicit-instantiation.cpp 6 template<typename T, typename U, typename Result>
8 Result operator()(const T& t, const U& u) const;
11 template<typename T, typename U, typename Result>
12 Result plus<T, U, Result>::operator()(const T& t, const U& u) const {
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
par_loop.h 54 * @param r Functor to "add" a single result to the already
57 * @param output Pointer to position where final result is written to
60 * @return User-supplied functor (that may contain a part of the result).
66 typename Result>
70 Op o, Fu& f, Red r, Result base,
71 Result& output,
79 Result *thread_results;
90 thread_results = static_cast<Result*>(
91 ::operator new(num_threads * sizeof(Result)));
98 Result* reduct = static_cast<Result*>(::operator new(sizeof(Result)))
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 217 std::string Result = Str;
219 for (unsigned i = 0, e = Result.size(); i != e; ++i) {
220 if (Result[i] == '\\' || Result[i] == Quote) {
221 Result.insert(Result.begin()+i, '\\');
225 return Result;
356 std::string Result;
357 Result.resize(Tok.getLength());
358 Result.resize(getSpellingSlow(Tok, TokStart, LangOpts, &*Result.begin()))
    [all...]
  /external/chromium_org/printing/
printing_context_android.h 39 virtual Result UseDefaultSettings() OVERRIDE;
41 virtual Result UpdatePrinterSettings(bool external_preview) OVERRIDE;
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_mac.h 33 virtual Result UseDefaultSettings() OVERRIDE;
35 virtual Result UpdatePrinterSettings(bool external_preview) OVERRIDE;
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;
printing_context_win.h 34 virtual Result UseDefaultSettings() OVERRIDE;
36 virtual Result UpdatePrinterSettings(bool external_preview) OVERRIDE;
37 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
38 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
39 virtual Result NewPage() OVERRIDE;
40 virtual Result PageDone() OVERRIDE;
41 virtual Result DocumentDone() OVERRIDE;
83 // Parses the result of a PRINTDLGEX result.
84 Result ParseDialogResultEx(const PRINTDLGEX& dialog_options)
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 132 void Lex(Token &Result) {
134 Result.startToken();
139 Result.setFlag(Token::StartOfLine);
145 LexTokenInternal(Result);
153 void IndirectLex(Token &Result) { Lex(Result); }
158 bool LexFromRawLexer(Token &Result) {
160 Lex(Result);
212 void ReadToEndOfLine(SmallVectorImpl<char> *Result = 0);
243 /// Tok.getLength() bytes long. The length of the actual result is returned
    [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/profile_resetter/
jtl_interpreter.h 18 enum Result {
37 Result result() const { return result_; } function in class:JtlInterpreter
52 Result result_;
  /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(0) { }
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...]
  /external/llvm/tools/llvm-readobj/
ObjDumper.h 49 OwningPtr<ObjDumper> &Result);
53 OwningPtr<ObjDumper> &Result);
57 OwningPtr<ObjDumper> &Result);
  /external/robolectric/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/chromium/chrome/browser/first_run/
try_chrome_dialog_view.h 43 enum Result {
60 static Result Show(size_t version, ProcessSingleton* process_singleton);
72 Result ShowModal(ProcessSingleton* process_singleton);
104 Result result_;
  /external/chromium_org/chrome/common/extensions/
update_manifest.h 42 // The result of parsing one <app> tag in an xml update check manifest.
43 struct Result {
44 Result();
45 ~Result();
68 std::vector<Result> list;
76 // Parses an update manifest xml string into Result data. Returns a bool

Completed in 446 milliseconds

12 3 4 5 6 7 8 91011>>