/external/parameter-framework/parameter/ |
D | ParameterMgr.cpp | 958 if (remoteCommand.getArgument(0) == "on") { in setTuningModeCommandProcess() 964 } else if (remoteCommand.getArgument(0) == "off") { in setTuningModeCommandProcess() 991 if (remoteCommand.getArgument(0) == "raw") { in setValueSpaceCommandProcess() 997 } else if (remoteCommand.getArgument(0) == "real") { in setValueSpaceCommandProcess() 1024 if (remoteCommand.getArgument(0) == "hex") { in setOutputRawFormatCommandProcess() 1030 } else if (remoteCommand.getArgument(0) == "dec") { in setOutputRawFormatCommandProcess() 1055 if (remoteCommand.getArgument(0) == "on") { in setAutoSyncCommandProcess() 1061 } else if (remoteCommand.getArgument(0) == "off") { in setAutoSyncCommandProcess() 1104 strOutputFormat = remoteCommand.getArgument(0); in listCriteriaCommandProcess() 1154 …return createDomain(remoteCommand.getArgument(0), strResult) ? CCommandHandler::EDone : CCommandHa… in createDomainCommandProcess() [all …]
|
/external/parameter-framework/test/test-platform/ |
D | TestPlatform.cpp | 180 remoteCommand.getArgument(0), remoteCommand, strResult) ? in createExclusiveSelectionCriterionFromStateList() 188 remoteCommand.getArgument(0), remoteCommand, strResult) ? in createInclusiveSelectionCriterionFromStateList() 196 remoteCommand.getArgument(0), in createExclusiveSelectionCriterion() 197 strtoul(remoteCommand.getArgument(1).c_str(), NULL, 0), in createExclusiveSelectionCriterion() 206 remoteCommand.getArgument(0), in createInclusiveSelectionCriterion() 207 strtoul(remoteCommand.getArgument(1).c_str(), NULL, 0), in createInclusiveSelectionCriterion() 225 const string& strAbort = remoteCommand.getArgument(0); in setter() 254 const char* pcState = remoteCommand.getArgument(1).c_str(); in setCriterionState() 265 bSuccess = setCriterionState(remoteCommand.getArgument(0), state, strResult); in setCriterionState() 308 const std::string& strValue = remoteCommand.getArgument(uiState + 1); in createExclusiveSelectionCriterionFromStateList() [all …]
|
/external/clang/test/ARCMT/ |
D | check-api.m | 9 - (void)getArgument:(void *)argumentLocation atIndex:(int)idx; 33 …[invok getArgument:&strong_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not sa… 34 …[invok getArgument:&weak_id atIndex:0]; // expected-error {{NSInvocation's getArgument is not safe… 35 [invok getArgument:&unsafe_id atIndex:0]; 36 [invok getArgument:&arg atIndex:0];
|
/external/llvm/include/llvm/IR/ |
D | Statepoint.h | 73 return StatepointCS.getArgument(0); in actualCallee() 77 return cast<ConstantInt>(StatepointCS.getArgument(1))->getZExtValue(); in numCallArgs() 82 return cast<ConstantInt>(StatepointCS.getArgument(3 + numCallArgs()))->getZExtValue(); in numTotalVMSArgs() 202 const Value *Token = RelocateCS.getArgument(0); in isTiedToInvoke() 215 const Value *token = RelocateCS.getArgument(0); in statepoint() 237 return cast<ConstantInt>(RelocateCS.getArgument(1))->getZExtValue(); in basePtrIndex() 242 return cast<ConstantInt>(RelocateCS.getArgument(2))->getZExtValue(); in derivedPtrIndex()
|
/external/parameter-framework/remote-processor/ |
D | RequestMessage.cpp | 72 const string& CRequestMessage::getArgument(uint32_t uiArgument) const in getArgument() function in CRequestMessage 117 writeString(getArgument(uiArgument)); in fillDataToSend() 153 uiSize += getStringSize(getArgument(uiArgument)); in getDataSize()
|
D | RemoteCommand.h | 44 virtual const std::string& getArgument(uint32_t uiArgument) const = 0;
|
D | RequestMessage.h | 50 virtual const std::string& getArgument(uint32_t uiArgument) const;
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 463 APInt Size(IntTyBits, GetStringLength(CS.getArgument(0))); in visitCallSite() 469 ConstantInt *Arg= dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam)); in visitCallSite() 480 ConstantInt *Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam)); in visitCallSite() 489 Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->SndParam)); in visitCallSite() 686 Value *FirstArg = CS.getArgument(FnData->FstParam); in visitCallSite() 691 Value *SecondArg = CS.getArgument(FnData->SndParam); in visitCallSite()
|
D | NoAliasAnalysis.cpp | 63 return Location(CS.getArgument(ArgIdx), UnknownSize, AATags); in getArgLocation()
|
D | Lint.cpp | 331 visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize, in visitCallSite() 335 visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize, in visitCallSite() 337 visitMemoryReference(I, CS.getArgument(1), AliasAnalysis::UnknownSize, in visitCallSite() 341 visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize, in visitCallSite() 349 visitMemoryReference(I, CS.getArgument(0), AliasAnalysis::UnknownSize, in visitCallSite()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
D | MathIllegalNumberException.java | 71 public Number getArgument() { in getArgument() method in MathIllegalNumberException
|
/external/llvm/tools/llvm-diff/ |
D | DiffConsumer.cpp | 179 case 'l': printValue(Log.getArgument(arg++), true); break; in logf() 180 case 'r': printValue(Log.getArgument(arg++), false); break; in logf()
|
D | DiffLog.cpp | 29 Value *LogBuilder::getArgument(unsigned I) const { return Arguments[I]; } in getArgument() function in LogBuilder
|
D | DiffLog.h | 53 Value *getArgument(unsigned I) const;
|
D | DifferenceEngine.cpp | 237 if (!equivalentAsOperands(L.getArgument(I), R.getArgument(I))) { in diffCallSites() 240 << L.getArgument(I) << R.getArgument(I); in diffCallSites()
|
/external/llvm/lib/Transforms/IPO/ |
D | IPConstantPropagation.cpp | 244 New = CS.getArgument(A->getArgNo()); in PropagateConstantReturn() 269 New = CS.getArgument(A->getArgNo()); in PropagateConstantReturn()
|
/external/clang/lib/AST/ |
D | TemplateBase.cpp | 556 Dependent = Dependent || Info[i].getArgument().isDependent(); in initializeFrom() 558 Info[i].getArgument().isInstantiationDependent(); in initializeFrom() 561 Info[i].getArgument().containsUnexpandedParameterPack(); in initializeFrom()
|
D | TypePrinter.cpp | 1409 if (Args[Arg].getArgument().getKind() == TemplateArgument::Pack) { in PrintTemplateArgumentList() 1411 Args[Arg].getArgument().pack_begin(), in PrintTemplateArgumentList() 1412 Args[Arg].getArgument().pack_size(), in PrintTemplateArgumentList() 1415 Args[Arg].getArgument().print(Policy, ArgOS); in PrintTemplateArgumentList()
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 698 if (CS.getArgument(i) == cpySrc && !CS.doesNotCapture(i)) in performCallSlotOptzn() 723 if (CS.getArgument(i)->stripPointerCasts() == cpySrc) { in performCallSlotOptzn() 728 if (CS.getArgument(i)->getType() == Dest->getType()) in performCallSlotOptzn() 732 CS.getArgument(i)->getType(), Dest->getName(), C)); in performCallSlotOptzn() 959 Value *ByValArg = CS.getArgument(ArgNo); in processByValArgument()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ |
D | FunctionEvaluationException.java | 208 public double[] getArgument() { in getArgument() method in FunctionEvaluationException
|
/external/clang/lib/Sema/ |
D | SemaTemplateVariadic.cpp | 160 if (ArgLoc.getArgument().isPackExpansion()) in TraverseTemplateArgumentLoc() 362 if (Arg.getArgument().isNull() || in DiagnoseUnexpandedParameterPack() 363 !Arg.getArgument().containsUnexpandedParameterPack()) in DiagnoseUnexpandedParameterPack() 878 const TemplateArgument &Argument = OrigLoc.getArgument(); in getTemplateArgumentPackExpansionPattern()
|
D | SemaTemplate.cpp | 791 if (DefaultArg.getArgument().getAsTemplate().isNull()) { in ActOnTemplateTemplateParameter() 799 DefaultArg.getArgument().getAsTemplate(), in ActOnTemplateTemplateParameter() 3019 const TemplateArgument &Arg = AL.getArgument(); in CheckTemplateTypeArgument() 3298 Param->getDefaultArgument().getArgument().getAsTemplate(), in SubstDefaultTemplateArgument() 3443 switch (Arg.getArgument().getKind()) { in CheckTemplateArgument() 3450 CheckTemplateArgument(NTTP, NTTPType, Arg.getArgument().getAsExpr(), in CheckTemplateArgument() 3457 if (Res.get() != Arg.getArgument().getAsExpr()) { in CheckTemplateArgument() 3471 Converted.push_back(Arg.getArgument()); in CheckTemplateArgument() 3479 = Arg.getArgument().getAsTemplateOrTemplatePattern() in CheckTemplateArgument() 3501 if (Arg.getArgument().getKind() == TemplateArgument::TemplateExpansion){ in CheckTemplateArgument() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/ |
D | Complex.java | 920 public double getArgument() { in getArgument() method in Complex 966 final double nthPhi = getArgument()/n; in nthRoot()
|
/external/clang/unittests/Tooling/ |
D | RecursiveASTVisitorTestExprVisitor.cpp | 37 const TemplateArgument &Arg = ArgLoc.getArgument(); in TraverseTemplateArgumentLoc()
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 1501 const Value *Target = CS.getArgument(0); in VerifyStatepoint() 1507 const Value *NumCallArgsV = CS.getArgument(1); in VerifyStatepoint() 1531 const Value *Unused = CS.getArgument(2); in VerifyStatepoint() 1539 Type *ArgType = CS.getArgument(3+i)->getType(); in VerifyStatepoint() 1546 const Value *NumDeoptArgsV = CS.getArgument(EndCallArgsInx+1); in VerifyStatepoint() 2135 Assert(CS.getArgument(i)->getType() == FTy->getParamType(i), in VerifyCallSite() 2137 CS.getArgument(i), FTy->getParamType(i), I); in VerifyCallSite() 2151 Value *InAllocaArg = CS.getArgument(FTy->getNumParams() - 1); in VerifyCallSite() 2171 Type *Ty = CS.getArgument(Idx-1)->getType(); in VerifyCallSite() 3263 const Value *Target = StatepointCS.getArgument(0); in visitIntrinsicFunctionCall() [all …]
|