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

1 2 3 4 5 67 8 91011>>

  /external/valgrind/main/auxprogs/
ppcfround.c 15 Result;
99 static void showResult ( Result r, ULong hideMask )
101 /* hidemask should have 1 for every result bit we **don't**
118 in f1, f2, f3, and result should go in f4. */
121 static Result insn_##name ( double arg1, double arg2, double arg3 ) \
153 { Result result; \
154 result.fres = foo.res; \
155 result.cr = foo.cr_after; \
156 result.fpscr = foo.fpscr_after;
    [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 366 // Add the prefix to the result.
406 /// successful match, with ResOp set to the result operand to be used.
407 bool CodeGenInstAlias::tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo,
411 Init *Arg = Result->getArg(AliasOpNo);
417 if (Result->getArgName(AliasOpNo).empty())
418 throw TGError(Loc, "result argument #" + utostr(AliasOpNo) +
420 ResOp = ResultOperand(Result->getArgName(AliasOpNo), ADI->getDef());
438 if (!Result->getArgName(AliasOpNo).empty())
439 throw TGError(Loc, "result fixed register argument must "
451 throw TGError(Loc, "reg0 used for result that is not an
    [all...]
  /external/easymock/src/org/easymock/internal/
MocksBehavior.java 56 public final void addStub(ExpectedInvocation expected, Result result) {
57 stubResults.add(new ExpectedInvocationAndResult(expected, result));
60 public void addExpected(ExpectedInvocation expected, Result result,
67 lastBehaviorList().addExpected(expected, result, count);
70 private final Result getStubResult(Invocation actual) {
92 public final Result addActual(Invocation actual) {
96 Result result = behaviorLists.get(position).addActual(actual); local
    [all...]
  /external/llvm/include/llvm/ADT/
BitVector.h 406 BitVector Result(LHS);
407 Result &= RHS;
408 return Result;
412 BitVector Result(LHS);
413 Result |= RHS;
414 return Result;
418 BitVector Result(LHS);
419 Result ^= RHS;
420 return Result;
SmallBitVector.h 432 SmallBitVector Result(LHS);
433 Result &= RHS;
434 return Result;
439 SmallBitVector Result(LHS);
440 Result |= RHS;
441 return Result;
446 SmallBitVector Result(LHS);
447 Result ^= RHS;
448 return Result;
  /external/clang/include/clang/AST/
GlobalDecl.h 84 GlobalDecl Result(*this);
85 Result.Value.setPointer(D);
86 return Result;
  /external/clang/include/clang/Sema/
IdentifierResolver.h 137 iterator Result;
138 Result.Ptr = P;
139 return Result;
  /external/clang/lib/Basic/
FileManager.cpp 337 // without a 'sys' subdir will get a cached failure result.
468 llvm::OwningPtr<llvm::MemoryBuffer> Result;
474 ec = llvm::MemoryBuffer::getOpenFile(Entry->FD, Filename, Result,
481 return Result.take();
487 ec = llvm::MemoryBuffer::getFile(Filename, Result, Entry->getSize());
490 return Result.take();
495 ec = llvm::MemoryBuffer::getFile(FilePath.str(), Result, Entry->getSize());
498 return Result.take();
503 llvm::OwningPtr<llvm::MemoryBuffer> Result;
506 ec = llvm::MemoryBuffer::getFile(Filename, Result);
    [all...]
DiagnosticIDs.cpp 444 DiagnosticIDs::Level Result = DiagnosticIDs::Fatal;
472 Result = DiagnosticIDs::Warning;
473 if (Diag.ExtBehavior == Diagnostic::Ext_Error) Result = DiagnosticIDs::Error;
474 if (Result == DiagnosticIDs::Error && Diag.ErrorsAsFatal)
475 Result = DiagnosticIDs::Fatal;
478 Result = DiagnosticIDs::Error;
480 Result = DiagnosticIDs::Fatal;
483 Result = DiagnosticIDs::Fatal;
493 Result = DiagnosticIDs::Warning;
500 Result = DiagnosticIDs::Error
    [all...]
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 21 bool Result = ExecuteOneTest(Changes);
22 if (!Result)
25 return Result;
  /frameworks/base/services/sensorservice/
traits.h 68 typedef T Result;
72 typedef U Result;
95 enum { result = false }; enumerator in enum:android::TypeTraits::PointerTraits::__anon15479
99 enum { result = true }; enumerator in enum:android::TypeTraits::PointerTraits::__anon15480
108 enum { isPointer = PointerTraits<T>::result };
112 typedef typename Select<isStdArith || isPointer, T, const T&>::Result ParameterType;
  /external/clang/lib/Sema/
TreeTransform.h 429 /// new template argument from the transformed result. Subclasses may
516 /// The result vectors should be kept in sync; null entries in the
7707 ExprResult result = getDerived().TransformExpr(E->getSubExpr()); local
    [all...]
SemaLookup.cpp 324 /// Resolves the result kind of this lookup.
465 Out << Decls.size() << " result(s)";
620 // given lookup result. Returns true if any matches were found.
679 // result), perform template argument deduction and place the
680 // specialization into the result set. We do this to avoid forcing all
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp 541 void Preprocessor::HandleDirective(Token &Result) {
557 Token SavedHash = Result;
561 LexUnexpandedToken(Result);
570 Diag(Result, diag::ext_embedded_directive);
573 switch (Result.getKind()) {
578 LexUnexpandedToken(Result);
588 return HandleDigitDirective(Result);
590 IdentifierInfo *II = Result.getIdentifierInfo();
598 return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
600 return HandleIfdefDirective(Result, false, true/*not valid for miopt*/)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_ANIM_NOT_FOUND;
20 import static com.android.ide.common.rendering.api.Result.Status.ERROR_INFLATION;
21 import static com.android.ide.common.rendering.api.Result.Status.ERROR_NOT_INFLATED;
22 import static com.android.ide.common.rendering.api.Result.Status.ERROR_UNKNOWN;
23 import static com.android.ide.common.rendering.api.Result.Status.ERROR_VIEWGROUP_NO_CHILDREN;
24 import static com.android.ide.common.rendering.api.Result.Status.SUCCESS;
35 import com.android.ide.common.rendering.api.Result;
38 import com.android.ide.common.rendering.api.Result.Status;
164 public Result init(long timeout) {
165 Result result = super.init(timeout) local
418 Pair<Integer, Integer> result = measureView( local
657 Result result = addView(parentView, child, index); local
726 Result result = moveView(previousParent, newParentView, childView, index, local
791 Result result = moveView(previousParent, newParentView, childView, index, layoutParams); local
923 Result result = removeView(parent, childView); local
1294 ViewInfo result = new ViewInfo(view.getClass().getName(), local
    [all...]
RenderDrawable.java 19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_UNKNOWN;
23 import com.android.ide.common.rendering.api.Result;
24 import com.android.ide.common.rendering.api.Result.Status;
57 public Result render() {
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.h 115 class Result {
117 Result()
149 const Result& result() const { return result_; } function in class:chrome_browser_net_websocket_experiment::WebSocketExperimentTask
171 void DoLoop(int result);
174 int DoURLFetchComplete(int result);
176 int DoWebSocketConnectComplete(int result);
178 int DoWebSocketReceiveHello(int result);
180 int DoWebSocketKeepIdleComplete(int result);
181 int DoWebSocketReceivePushMessage(int result);
    [all...]
  /external/clang/lib/AST/
ExternalASTSource.cpp 57 llvm::SmallVectorImpl<Decl*> &Result) {
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 258 void *Result;
263 Result = 0;
266 Result = CurBufferPtr;
270 return Result;
  /external/llvm/include/llvm/
LLVMContext.h 52 void getMDKindNames(SmallVectorImpl<StringRef> &Result) const;
  /external/llvm/lib/Linker/
Linker.cpp 86 Module* result = Composite; local
91 return result;
100 Module *Result = 0;
107 Result = ParseBitcodeFile(Buffer.get(), Context, &ParseErrorMessage);
109 if (Result)
110 return std::auto_ptr<Module>(Result);
  /external/oprofile/libutil++/tests/
file_manip_tests.cpp 29 template <typename Input, typename Output, typename Result>
31 Output const & output, Result const & result)
33 if (result != output) {
37 << "found:\n\"" << result << "\"\n"; local
42 template <typename Input, typename Output, typename Result>
44 Input input2, Output const & output, Result const & result)
46 if (result != output) {
51 << "found:\n\"" << result << "\"\n" local
82 string result = op_dirname(cur->input); local
110 string result = op_basename(cur->input); local
132 bool result = is_directory(cur->input); local
156 bool result = is_files_identical(cur->input.first, local
182 bool result = op_file_readable(cur->input); local
207 string result = op_realpath(cur->input); local
219 list<string> result; local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebStorageAreaImpl.h 48 virtual void setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*);
  /libcore/luni/src/main/java/javax/xml/transform/
Transformer.java 26 * source tree into a result tree.
79 * <p>Transform the XML <code>Source</code> to a <code>Result</code>.
87 * The result of transforming an empty <code>Source</code> depends on
89 * <code>Result</code>.</p>
92 * @param outputTarget The <code>Result</code> of transforming the
98 public abstract void transform(Source xmlSource, Result outputTarget)
  /external/valgrind/main/none/tests/arm/
neon64.stdout.exp     [all...]

Completed in 943 milliseconds

1 2 3 4 5 67 8 91011>>