HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 101 - 125 of 552) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/xml/transform/sax/
SAXResult.java 22 import javax.xml.transform.Result;
27 * <p>Acts as an holder for a transformation Result.</p>
31 public class SAXResult implements Result {
36 * the Transformer supports Result output of this type.
66 * Get the {@link org.xml.sax.ContentHandler} that is the Result.
  /libcore/luni/src/main/java/javax/xml/transform/stream/
StreamResult.java 25 import javax.xml.transform.Result;
28 * <p>Acts as an holder for a transformation result,
33 public class StreamResult implements Result {
37 * the Transformer supports Result output of this type.
115 * Set the writer that is to receive the result. Normally,
  /external/chromium/chrome/browser/debugger/
devtools_remote_service.h 36 // Operation result returned in the "result" field.
37 struct Result {
devtools_remote_service.cc 30 const char kResultKey[] = "result";
71 response.SetInteger(kResultKey, Result::kOk);
74 response.SetInteger(kResultKey, Result::kOk);
94 response.SetInteger(kResultKey, Result::kOk);
99 response.SetInteger(kResultKey, Result::kUnknownCommand);
  /external/chromium/chrome/browser/remoting/
setup_flow_register_step.h 31 void OnRequestDone(DirectoryAddRequest::Result result,
  /external/llvm/include/llvm/ADT/
SetOperations.h 52 S1Ty Result;
56 Result.insert(*SI);
57 return Result;
  /external/llvm/lib/MC/MCDisassembler/
EDInst.h 35 /// CachedResult - Encapsulates the result of a function along with the validity
36 /// of that result, so that slow functions don't need to run twice
38 /// True if the result has been obtained by executing the function
40 /// The result last obtained from the function
41 int Result;
43 /// Constructor - Initializes an invalid result
45 /// valid - Returns true if the result has been obtained by executing the
48 /// result - Returns the result of the function or an undefined value if
50 int result() { return Result; function in struct:llvm::CachedResult
    [all...]
  /external/skia/include/utils/
SkInterpolator.h 24 enum Result {
69 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
115 those values are the result of pinning to either the first
121 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
for_each.h 59 typename Functionality, typename Red, typename Result>
64 Red reduction, Result reduction_start,
65 Result& output, typename
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 183 StringRef Result(TokStart, CurPtr - TokStart);
186 if (Result.getAsInteger(10, Value)) {
190 if (Result.getAsInteger(10, UValue))
199 return AsmToken(AsmToken::Integer, Result, Value);
207 StringRef Result(TokStart, CurPtr - TokStart);
208 return AsmToken(AsmToken::Integer, Result, 0);
218 StringRef Result(TokStart, CurPtr - TokStart);
221 if (Result.substr(2).getAsInteger(2, Value))
228 return AsmToken(AsmToken::Integer, Result, Value);
241 unsigned long long Result;
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 326 std::string &Result);
329 std::string &Result);
337 std::string &Result);
342 std::string &Result);
346 std::string &Result);
348 std::string &Result);
350 std::string &Result);
352 void SynthesizeMetaDataIntoBuffer(std::string &Result);
455 QualType getSimpleFunctionType(QualType result,
461 return Context->getFunctionType(result, args, numArgs, fpi)
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_MapTools.c 67 NFCSTATUS Result = NFCSTATUS_SUCCESS;
106 Result = PHNFCSTVAL(CID_FRI_NFC_NDEF_MAP,
111 Result = ((NdefMap->CardState ==
115 Result);
116 return Result;
  /cts/libs/vogar-expect/src/vogar/
Outcome.java 34 private final Result result; field in class:Outcome
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
40 this.result = result;
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
47 this.result = result;
    [all...]
  /external/easymock/src/org/easymock/internal/
RecordState.java 35 private Result lastResult;
100 lastResult = Result.createReturnResult(value);
109 lastResult = Result.createThrowResult(throwable);
118 lastResult = Result.createAnswerResult(answer);
127 lastResult = Result.createDelegatingResult(delegateTo);
137 behavior.addStub(lastInvocation, Result.createReturnResult(value));
150 lastInvocation.withMatcher(org.easymock.MockControl.ALWAYS_MATCHER), Result
158 behavior.addStub(lastInvocation, Result.createReturnResult(null));
167 lastInvocation.withMatcher(org.easymock.MockControl.ALWAYS_MATCHER), Result
178 behavior.addStub(lastInvocation, Result.createThrowResult(throwable));
    [all...]
UnorderedBehavior.java 34 public void addExpected(ExpectedInvocation expected, Result result,
38 entry.getResults().add(result, count);
43 list.add(result, count);
47 public Result addActual(Invocation actual) {
53 Result result = entry.getResults().next(); local
54 if (result != null) {
57 return result;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 56 SDValue TranslateLegalizeResults(SDValue Op, SDValue Result);
66 // operands to a different type and bitcasting the result back to the
101 SDValue VectorLegalizer::TranslateLegalizeResults(SDValue Op, SDValue Result) {
104 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
105 return Result.getValue(Op.getResNo());
121 SDValue Result =
130 return TranslateLegalizeResults(Op, Result);
135 return TranslateLegalizeResults(Op, Result);
200 Result = PromoteVectorOp(Op);
207 Result = Tmp1
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-expr-4.cpp 223 template<typename T, typename Result>
226 Result result = t.m; // expected-error{{non-const lvalue reference to type}} local
245 template<typename T, typename Result>
248 Result result = t->m; // expected-error 2{{non-const lvalue reference}} local
280 template<typename T, typename Result>
283 Result result = t.f(); local
295 template<typename Result>
310 T result = x.f(); \/\/ expected-error{{non-const lvalue reference}} local
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionNormalization.cpp 101 const SCEV *Result = SE.getAddRecExpr(Operands, L, SCEV::FlagAnyWrap);
109 Result = SE.getMinusSCEV(Result, TransformedStep);
117 assert(S == TransformForPostIncUse(Denormalize, Result,
128 Result = SE.getMinusSCEV(Result, TransformedStep);
132 assert(S == TransformForPostIncUse(Denormalize, Result,
140 Result = cast<SCEVAddRecExpr>(Result)->getPostIncExpr(SE);
143 return Result;
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 104 MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary);
106 return Result;
213 MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags,
215 Entry.setValue(Result);
216 return Result;
220 MCSectionELF *Result =
223 return Result;
238 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(),
242 Entry.setValue(Result);
243 return Result;
    [all...]
  /external/llvm/utils/TableGen/
TGParser.cpp 330 Record *Result = Records.getClass(Lex.getCurStrVal());
331 if (Result == 0)
335 return Result;
349 MultiClass *Result = MultiClasses[Lex.getCurStrVal()];
350 if (Result == 0)
354 return Result;
382 SubClassReference Result;
383 Result.RefLoc = Lex.getLoc();
386 Result.Rec = ParseDefmID();
388 Result.Rec = ParseClassID()
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 59 template <typename Result, typename ArgumentTuple>
60 Result Perform(const ArgumentTuple& args) {
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
77 template <typename Result, typename ArgumentTuple>
78 Result Perform(const ArgumentTuple& args) const {
79 return InvokeHelper<Result, ArgumentTuple>::InvokeMethod(
  /external/llvm/lib/Object/
ELFObjectFile.cpp 239 bool &Result) const;
276 SymbolRef &Result) const {
293 Result = SymbolRef(Symb, this);
300 StringRef &Result) const {
306 Result = "";
308 Result = getString(dot_shstrtab_sec, section->sh_name);
313 Result = getString(dot_strtab_sec, symb->st_name);
320 uint64_t &Result) const {
328 Result = UnknownAddressOrSize;
331 Result = symb->st_value
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
AddrModeMatcher.h 88 ExtAddrMode Result;
92 MemoryInst, Result).MatchAddr(V, 0);
94 return Result;
  /packages/apps/Email/src/com/android/email/
ControllerResultUiThreadWrapper.java 21 import com.android.email.Controller.Result;
27 * A {@link Result} that wraps another {@link Result} and makes sure methods gets called back
33 public class ControllerResultUiThreadWrapper<T extends Result> extends Result {
61 public void loadAttachmentCallback(final MessagingException result, final long accountId,
70 mWrappee.loadAttachmentCallback(result, accountId, messageId, attachmentId,
77 public void loadMessageForViewCallback(final MessagingException result, final long accountId,
82 mWrappee.loadMessageForViewCallback(result, accountId, messageId, progress);
88 public void sendMailCallback(final MessagingException result, final long accountId
    [all...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockCorpus.java 96 return new Result(query, mSource.getSuggestions(query, queryLimit, true));
118 private class Result extends SuggestionCursorWrapper implements CorpusResult {
119 public Result(String userQuery, SuggestionCursor cursor) {

Completed in 614 milliseconds

1 2 3 45 6 7 8 91011>>