Searched refs:mFunction (Results 1 – 11 of 11) sorted by relevance
/external/replicaisland/src/com/replica/replicaisland/ |
D | FadeDrawableComponent.java | 34 private int mFunction; field in FadeDrawableComponent 53 mFunction = FADE_LINEAR; in reset() 101 if (mFunction == FADE_LINEAR) { in update() 103 } else if (mFunction == FADE_EASE) { in update() 139 mFunction = function; in setupFade()
|
/external/oboe/apps/fxlab/app/src/main/cpp/effects/ |
D | DriveControl.h | 28 mFunction(function), kScale(scale) {} in DriveControl() 32 mFunction(beg, end); in operator() 37 std::function<void(iter_type, iter_type)> mFunction;
|
/external/OpenCL-CTS/test_common/harness/ |
D | threadTesting.cpp | 30 basefn mFunction; 59 retVal = args->mFunction( args->mDeviceGroup, args->mDevice, context, args->mNumElements ); 74 args.mFunction = fnToTest;
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | CommandGraph.cpp | 429 mFunction(function), 549 ASSERT(mFunction == CommandGraphNodeFunction::BeginQuery || in setQueryPool() 550 mFunction == CommandGraphNodeFunction::EndQuery || in setQueryPool() 551 mFunction == CommandGraphNodeFunction::WriteTimestamp || in setQueryPool() 552 mFunction == CommandGraphNodeFunction::BeginTransformFeedbackQuery || in setQueryPool() 553 mFunction == CommandGraphNodeFunction::EndTransformFeedbackQuery); in setQueryPool() 560 ASSERT(mFunction == CommandGraphNodeFunction::SetFenceSync || in setFenceSync() 561 mFunction == CommandGraphNodeFunction::WaitFenceSync); in setFenceSync() 567 ASSERT(mFunction == CommandGraphNodeFunction::InsertDebugMarker || in setDebugMarker() 568 mFunction == CommandGraphNodeFunction::PushDebugMarker); in setDebugMarker() [all …]
|
D | CommandGraph.h | 190 CommandGraphNodeFunction getFunction() const { return mFunction; } in getFunction() 248 CommandGraphNodeFunction mFunction; variable
|
/external/clang/test/SemaTemplate/ |
D | instantiate-local-class.cpp | 148 T mFunction; in func() member 150 Struct(T function) : mFunction(function) {}; in func() 153 mFunction(); in func()
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | instantiate-local-class.cpp | 148 T mFunction; in func() member 150 Struct(T function) : mFunction(function) {}; in func() 153 mFunction(); in func()
|
/external/angle/src/common/ |
D | debug.cpp | 164 : mFile(file), mFunction(function), mLine(line), mSeverity(severity) in LogMessage() 170 mStream << (slash ? (slash + 1) : mFile) << ":" << mLine << " (" << mFunction << "): "; in LogMessage()
|
D | debug.h | 81 const char *mFunction; variable
|
/external/angle/src/compiler/translator/ |
D | IntermNode.h | 541 const TFunction *getFunction() const { return mFunction; } in getFunction() 553 const TFunction *const mFunction; variable 629 const TFunction *getFunction() const { return mFunction; } in getFunction() 643 const TFunction *const mFunction; variable 739 const TFunction *getFunction() const { return mFunction; } in getFunction() 742 const TFunction *const mFunction;
|
D | IntermNode.cpp | 610 mFunction(func) in TIntermAggregate() 616 ASSERT(mFunction == nullptr || mFunction->symbolType() != SymbolType::Empty); in TIntermAggregate() 746 return mFunction->name().data(); in functionName() 750 return mFunction->name().data(); in functionName() 921 mFunction != nullptr && !mFunction->isKnownToNotHaveSideEffects(); in hasSideEffects() 1094 : TIntermTyped(), mFunction(function) in TIntermFunctionPrototype() 1096 ASSERT(mFunction->symbolType() != SymbolType::Empty); in TIntermFunctionPrototype() 1101 return mFunction->getReturnType(); in getType() 1108 mFunction(node.mFunction) in TIntermAggregate() 1123 TIntermAggregate *copyNode = new TIntermAggregate(mFunction, mType, mOp, ©Seq); in shallowCopy() [all …]
|