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

1 2 3 45 6 7 8 91011>>

  /external/skia/tools/timer/
TimerData.h 42 enum Result {
59 * @param result the type of result desired
66 Result result,
71 Result result,
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
PlayAnimationThread.java 20 import com.android.ide.common.rendering.api.Result;
21 import com.android.ide.common.rendering.api.Result.Status;
37 public Result preAnimation() {
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 43 // The 'unless' matcher will always discard the result:
46 // If the inner matcher matches, the result is false, and
75 BoundNodesTreeBuilder Result;
81 Result.addMatch(BuilderInner);
84 *Builder = Result;
93 BoundNodesTreeBuilder Result = *Builder;
94 if (InnerMatchers[i].matches(DynNode, Finder, &Result)) {
95 *Builder = Result;
  /external/clang/test/SemaTemplate/
instantiate-expr-3.cpp 28 template<typename T, typename U, typename Result>
31 Result r = t += u; // expected-error{{ambiguous}}
51 template<typename T, typename U, typename Result>
54 Result result = t? : u; local
80 template<bool Cond, typename T, typename U, typename Result>
83 Result r = __builtin_choose_expr(Cond, t, u); // expected-error{{lvalue}}
instantiate-subscript.cpp 16 template<typename T, typename U, typename Result>
19 Result &result = t[u]; // expected-error{{no viable overloaded operator[] for type}} local
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 111 public enum Result {
121 public Result timeToValues(float[] values) {
136 public Result timeToValues(int msec, float[] values) {
141 case 0: return Result.NORMAL;
142 case 1: return Result.FREEZE_START;
143 default: return Result.FREEZE_END;
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 230 // a function. The correct result is to pick up RHS.
367 LVILatticeVal &Result);
535 LVILatticeVal Result;
587 LVILatticeVal Result; // Start Undefined.
617 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
619 Result.markOverdefined();
621 BBLV = Result;
626 // result.
634 Result.mergeIn(EdgeResult);
638 if (Result.isOverdefined())
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_programs.cc 86 GetUniformiv::Result* result = local
87 static_cast<GetUniformiv::Result*>(shared_memory_address_);
88 result->size = 0;
98 result->size);
102 GetUniformiv::Result* result = local
103 static_cast<GetUniformiv::Result*>(shared_memory_address_);
104 result->size = 0;
115 result->size)
119 GetUniformiv::Result* result = local
163 GetUniformiv::Result* result = local
194 GetUniformfv::Result* result = local
210 GetUniformfv::Result* result = local
227 GetUniformfv::Result* result = local
271 GetUniformfv::Result* result = local
304 Result* result = static_cast<Result*>(shared_memory_address_); local
321 Result* result = static_cast<Result*>(shared_memory_address_); local
334 Result* result = static_cast<Result*>(shared_memory_address_); local
366 Result* result = static_cast<Result*>(shared_memory_address_); local
389 Result* result = static_cast<Result*>(shared_memory_address_); local
401 Result* result = static_cast<Result*>(shared_memory_address_); local
437 Result* result = static_cast<Result*>(shared_memory_address_); local
462 Result* result = static_cast<Result*>(shared_memory_address_); local
477 Result* result = static_cast<Result*>(shared_memory_address_); local
504 Result* result = static_cast<Result*>(shared_memory_address_); local
539 Result* result = static_cast<Result*>(shared_memory_address_); local
563 Result* result = static_cast<Result*>(shared_memory_address_); local
578 Result* result = static_cast<Result*>(shared_memory_address_); local
605 Result* result = static_cast<Result*>(shared_memory_address_); local
841 Result* result = GetSharedMemoryAs<Result*>(); local
858 Result* result = GetSharedMemoryAs<Result*>(); local
889 Result* result = GetSharedMemoryAs<Result*>(); local
906 Result* result = GetSharedMemoryAs<Result*>(); local
    [all...]
  /external/chromium_org/chrome/common/extensions/
chrome_extension_messages.h 25 IPC_ENUM_TRAITS_MAX_VALUE(extensions::webstore_install::Result,
51 extensions::webstore_install::Result /* result */)
webstore_install_result.h 12 // Result codes returned by WebstoreStandaloneInstaller and its subclasses.
16 enum Result {
73 // The final (and unused) result type for enum verification.
  /external/chromium_org/media/filters/
h264_parser.h 317 enum Result {
356 Result AdvanceToNextNALU(H264NALU* nalu);
369 // TODO(posciak,fischman): consider replacing returning Result from Parse*()
372 Result ParseSPS(int* sps_id);
373 Result ParsePPS(int* pps_id);
387 Result ParseSliceHeader(const H264NALU& nalu, H264SliceHeader* shdr);
391 Result ParseSEI(H264SEIMessage* sei_msg);
411 Result ReadUE(int* val);
414 Result ReadSE(int* val);
417 Result ParseScalingList(int size, int* scaling_list, bool* use_default)
    [all...]
  /external/chromium_org/printing/
printing_context_system_dialog_win.h 44 // Parses the result of a PRINTDLGEX result.
45 Result ParseDialogResultEx(const PRINTDLGEX& dialog_options);
46 Result ParseDialogResult(const PRINTDLG& dialog_options);
  /external/clang/test/CXX/basic/basic.def.odr/
p2-typeid.cpp 19 template<typename T, typename Result = T>
21 Result f(T t) { return t + t; } // expected-error{{invalid operands}}
  /external/clang/tools/libclang/
CXString.cpp 92 CXString Result;
93 Result.data = String.data();
94 Result.private_flags = (unsigned) CXS_Unmanaged;
95 return Result;
99 CXString Result;
103 Result.data = Spelling;
104 Result.private_flags = (unsigned) CXS_Malloc;
105 return Result;
  /external/junit/src/org/junit/runner/notification/
RunListener.java 5 import org.junit.runner.Result;
45 * @param result the summary of the test run, including all the tests that failed
47 public void testRunFinished(Result result) throws Exception {
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 39 /** \class Resolver::Result
40 * \brief the result of symbol resolution
45 struct Result {
69 Result& pResult) const {
  /external/llvm/tools/bugpoint/
BugDriver.cpp 60 std::string Result;
62 if (i) Result += " ";
63 Result += "-";
64 Result += Passes[i];
66 return Result;
92 Module *Result = ParseIRFile(Filename, Err, Ctxt);
93 if (!Result)
98 if (Result) {
100 Triple TheTriple(Result->getTargetTriple());
108 Result->setTargetTriple(TargetTriple.getTriple()); // override the tripl
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
win_ce_semaphore.c 51 will, in all likelihood, result in a defect):
62 SYNCHHANDLE hSynch = NULL, result = NULL; local
94 result=CleanUp(hSynch, 6 /* An event and a mutex, but no semaphore. */);
97 return result;
103 BOOL Result = TRUE;
117 Result = FALSE;
132 return Result;
155 a waiting thread) is released as a result of the SetEvent. */
189 BOOL Result = TRUE;
190 if (hSynch->hEvent != NULL) Result = Result && CloseHandle (hSynch->hEvent)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 23 import com.android.ide.common.rendering.api.Result;
44 private Result mLastResult;
47 public Result getResult() {
77 public Result getProperty(Object objectView, String propertyName) {
83 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
89 public Result render(long timeout) {
105 public Result animate(Object targetObject, String animationName,
123 public Result insertChild(Object parentView, ILayoutPullParser childXml, int index,
146 public Result moveChild(Object parentView, Object childView, int index,
171 public Result removeChild(Object childView, IAnimationListener listener)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 503 * Returns the result of saturated addition of the two inputs Value1, Value2
510 * [out] Result of operation
517 OMX_S32 Result;
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
704 OMX_S32 result; local
859 OMX_S32 result; local
896 OMX_S32 result; local
933 OMX_F64 result; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 503 * Returns the result of saturated addition of the two inputs Value1, Value2
510 * [out] Result of operation
517 OMX_S32 Result;
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
704 OMX_S32 result; local
859 OMX_S32 result; local
896 OMX_S32 result; local
933 OMX_F64 result; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 503 * Returns the result of saturated addition of the two inputs Value1, Value2
510 * [out] Result of operation
517 OMX_S32 Result;
519 Result = Value1 + Value2;
524 if( (Result^Value1) >= 0)
526 /*Result has not saturated*/
527 return Result;
533 /*Result has saturated in positive side*/
538 /*Result has saturated in negative side*/
547 return Result;
704 OMX_S32 result; local
859 OMX_S32 result; local
896 OMX_S32 result; local
933 OMX_F64 result; local
    [all...]
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 25 * The expected result of an action execution. This is typically encoded in the
29 * result UNSUPPORTED
34 * result COMPILE_FAILED
45 public static final Expectation SUCCESS = new Expectation(Result.SUCCESS, MATCH_ALL_PATTERN,
51 /** The action's expected result, such as {@code EXEC_FAILED}. */
52 private final Result result; field in class:Expectation
66 public Expectation(Result result, Pattern pattern, Set<String> tags, String description, long bug) {
67 if (result == null || description == null || pattern == null)
    [all...]
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.h 66 enum Result {
84 static Result Show(size_t flavor, const ActiveModalDialogListener& listener);
90 Result ShowModal(const ActiveModalDialogListener& listener);
124 Result result_;
  /external/chromium_org/components/component_updater/
update_response.h 60 // The result of parsing one <app> tag in an xml update check response.
61 struct Result {
88 Result();
89 ~Result();
108 std::vector<Result> list;
114 // Parses an update response xml string into Result data. Returns a bool

Completed in 9430 milliseconds

1 2 3 45 6 7 8 91011>>