/external/parameter-framework/upstream/test/functional-tests/include/ |
D | ParameterFramework.hpp | 61 using PF = CParameterMgrFullConnector; typedef in parameterFramework::ParameterFramework 71 void start() { mayFailCall(&PF::start); } in start() 77 using PF::applyConfigurations; 78 using PF::getFailureOnMissingSubsystem; 79 using PF::getFailureOnFailedSettingsLoad; 80 using PF::getForceNoRemoteInterface; 81 using PF::setForceNoRemoteInterface; 82 using PF::getSchemaUri; 83 using PF::setSchemaUri; 84 using PF::getValidateSchemasOnStart; [all …]
|
D | Test.hpp | 117 using PF = ParameterFramework; typedef in parameterFramework::LazyPF 119 void create(Config &&configFile) { mPf.reset(new PF{std::move(configFile)}); } in create() 120 std::unique_ptr<PF> mPf;
|
/external/parameter-framework/upstream/doc/requirements/ |
D | requirements.md | 41 The Parameter Framework is abreviated as PF in the rest of the document. 46 Specificaly the PF contains 3 stacked abstraction layers: 82 The PF **SHOULD** be reusable between components. 86 PF instances **MUST NOT** mutate each others. 87 <note>This may be implemented by not sharing any mutable data between PF instances.</note> 88 <why>Different PF instances are expected to be completely independent thus accessing one should not… 104 <dd>System controlled by the PF. Not necessary material system. This term was 107 - historically the PF reference implementation was used to abstract hardware 115 A PF **MUST** be able to handle parameters. 116 <why>because the PF aims to abstract hardware and model it by parameters.</why> [all …]
|
/external/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.cpp | 50 int (*PF)(int, char **, const char **) = in runFunction() local 55 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 64 int (*PF)(int, char **) = (int (*)(int, char **))(intptr_t)FPtr; in runFunction() local 68 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 76 int (*PF)(int) = (int (*)(int))(intptr_t)FPtr; in runFunction() local 77 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction()
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | p2p-action-udhcp.sh | 8 PF=$2 10 if [ ! -r $PF ]; then 14 PID=`cat $PF` 20 rm $PF
|
D | p2p-action.sh | 8 PF=$2 10 if [ ! -r $PF ]; then 14 PID=`cat $PF` 20 rm $PF
|
/external/llvm/lib/Target/ |
D | TargetSubtargetInfo.cpp | 24 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in TargetSubtargetInfo() argument 28 : MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) { in TargetSubtargetInfo()
|
/external/curl/projects/ |
D | build-openssl.bat | 94 set "PF=%PROGRAMFILES%" 98 set "PF=%PROGRAMFILES(x86)%" 103 if not defined PF goto nopf 106 if not exist "%PF%\%VC_PATH%" goto novc 148 call "%PF%\%VC_PATH%\bin\vcvars32" 150 call "%PF%\%VC_PATH%\bin\vcvars32" 152 call "%PF%\%VC_PATH%\bin\vcvars32" 154 call "%PF%\%VC_PATH%\vcvarsall" %VCVARS_PLATFORM%
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.cpp | 501 int (*PF)(int, char **, const char **) = in runFunction() local 506 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 515 int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; in runFunction() local 519 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), in runFunction() 528 int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; in runFunction() local 529 rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue())); in runFunction()
|
/external/clang/test/SemaObjC/ |
D | block-explicit-return-type.m | 5 typedef float * PF; typedef 47 (void)^PF { return &gf; };
|
/external/llvm/lib/MC/ |
D | MCSubtargetInfo.cpp | 41 ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD, in MCSubtargetInfo() argument 45 : TargetTriple(TT), CPU(C), ProcFeatures(PF), ProcDesc(PD), in MCSubtargetInfo()
|
/external/e2fsprogs/ext2ed/ |
D | ext2ed.h | 78 typedef void (*PF) (char *); /* Used to point to the dispatched functions */ typedef 84 PF callback [MAX_COMMANDS_NUM]; 235 extern void add_user_command (struct struct_commands *ptr,char *name,char *description,PF callback);
|
/external/llvm/tools/bugpoint/ |
D | ExtractFunction.cpp | 92 const Function *PF = PBB->getParent(); in deleteInstructionFromProgram() local 95 std::advance(RFI, std::distance(PF->getParent()->begin(), in deleteInstructionFromProgram() 96 Module::const_iterator(PF))); in deleteInstructionFromProgram() 99 std::advance(RBI, std::distance(PF->begin(), Function::const_iterator(PBB))); in deleteInstructionFromProgram()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy.cpp | 744 Function *PF = OpenModule->getFunction(FnName); in getFunction() local 745 if (PF && !PF->empty()) { in getFunction() 751 if (!PF) in getFunction() 752 PF = Function::Create(F->getFunctionType(), in getFunction() 756 return PF; in getFunction()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 734 Function *PF = OpenModule->getFunction(FnName); in getFunction() local 735 if (PF && !PF->empty()) { in getFunction() 741 if (!PF) in getFunction() 742 PF = Function::Create(F->getFunctionType(), in getFunction() 746 return PF; in getFunction()
|
/external/icu/icu4c/source/data/region/ |
D | zh_Hant_HK.txt | 75 PF{"法屬波利尼西亞"}
|
D | chr.txt | 183 PF{"ᎠᏂᎦᎸᏣ ᏆᎵᏂᏏᎠ"}
|
D | yi.txt | 174 PF{"פֿראַנצויזישע פּאלינעזיע"}
|
D | zgh.txt | 167 PF{"ⴱⵓⵍⵉⵏⵉⵣⵢⴰ ⵜⴰⴼⵔⴰⵏⵙⵉⵙⵜ"}
|
D | vai.txt | 167 PF{"ꗱꘋꔻ ꕶꔷꕇꔻꕩ"}
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 901 Function *PF = CurrentModule->getFunction(FnName); in getFunction() local 902 if (PF && !PF->empty()) { in getFunction() 908 if (!PF) in getFunction() 909 PF = Function::Create(F->getFunctionType(), in getFunction() 913 return PF; in getFunction()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy.cpp | 833 Function *PF = OpenModule->getFunction(FnName); in getFunction() local 834 if (PF && !PF->empty()) { in getFunction() 840 if (!PF) in getFunction() 841 PF = Function::Create(F->getFunctionType(), in getFunction() 845 return PF; in getFunction()
|
/external/llvm/include/llvm/Target/ |
D | TargetSubtargetInfo.h | 52 ArrayRef<SubtargetFeatureKV> PF,
|
/external/llvm/include/llvm/MC/ |
D | MCSubtargetInfo.h | 54 ArrayRef<SubtargetFeatureKV> PF,
|
/external/clang/test/SemaCXX/ |
D | nullptr.cpp | 78 template <int *PI, void (*PF)(), int A::*PM, void (A::*PMF)()>
|