HomeSort by relevance Sort by last modified time
    Searched refs:getArgument (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/parameter-framework/upstream/remote-processor/
RemoteCommand.h 45 virtual const std::string &getArgument(size_t argument) const = 0;
RequestMessage.cpp 77 const string &CRequestMessage::getArgument(size_t argument) const
119 writeString(getArgument(argument));
153 uiSize += getStringSize(getArgument(uiArgument));
RequestMessage.h 52 virtual const std::string &getArgument(size_t argument) const;
  /external/parameter-framework/upstream/test/test-platform/
TestPlatform.cpp 141 return createExclusiveSelectionCriterionFromStateList(remoteCommand.getArgument(0),
150 return createInclusiveSelectionCriterionFromStateList(remoteCommand.getArgument(0),
159 return createExclusiveSelectionCriterion(remoteCommand.getArgument(0),
160 strtoul(remoteCommand.getArgument(1).c_str(), NULL, 0),
169 return createInclusiveSelectionCriterion(remoteCommand.getArgument(0),
170 strtoul(remoteCommand.getArgument(1).c_str(), NULL, 0),
188 const string &strAbort = remoteCommand.getArgument(0);
220 mParameterMgrPlatformConnector.setSchemaUri(remotecommand.getArgument(0));
232 if (convertTo(remoteCommand.getArgument(1), state)) {
234 bSuccess = setCriterionState(remoteCommand.getArgument(0), state, strResult)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
MathIllegalNumberException.java 71 public Number getArgument() {
  /external/parameter-framework/upstream/parameter/
ParameterMgr.cpp     [all...]
  /external/llvm/include/llvm/IR/
Statepoint.h 101 return cast<ConstantInt>(getCallSite().getArgument(FlagsPos))
107 const Value *IDVal = getCallSite().getArgument(IDPos);
113 const Value *NumPatchBytesVal = getCallSite().getArgument(NumPatchBytesPos);
122 return getCallSite().getArgument(CalledFunctionPos);
154 const Value *NumCallArgsVal = getCallSite().getArgument(NumCallArgsPos);
169 ValueTy *getArgument(unsigned Index) {
324 const Value *Token = RelocateCS.getArgument(0);
334 const Value *Token = RelocateCS.getArgument(0);
358 return cast<ConstantInt>(RelocateCS.getArgument(1))->getZExtValue();
364 return cast<ConstantInt>(RelocateCS.getArgument(2))->getZExtValue()
    [all...]
CallSite.h 121 ValTy *getArgument(unsigned ArgNo) const {
  /external/llvm/lib/Analysis/
MemoryLocation.cpp 115 const Value *Arg = CS.getArgument(ArgIdx);
168 if (const ConstantInt *LenCI = dyn_cast<ConstantInt>(CS.getArgument(2)))
173 return MemoryLocation(CS.getArgument(ArgIdx), UnknownSize, AATags);
MemoryBuiltins.cpp 478 APInt Size(IntTyBits, GetStringLength(CS.getArgument(0)));
484 ConstantInt *Arg= dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam));
495 ConstantInt *Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->FstParam));
504 Arg = dyn_cast<ConstantInt>(CS.getArgument(FnData->SndParam));
698 Value *FirstArg = CS.getArgument(FnData->FstParam);
703 Value *SecondArg = CS.getArgument(FnData->SndParam);
Lint.cpp 327 visitMemoryReference(I, CS.getArgument(0), MemoryLocation::UnknownSize, 0,
331 visitMemoryReference(I, CS.getArgument(0), MemoryLocation::UnknownSize, 0,
333 visitMemoryReference(I, CS.getArgument(1), MemoryLocation::UnknownSize, 0,
337 visitMemoryReference(I, CS.getArgument(0), MemoryLocation::UnknownSize, 0,
345 visitMemoryReference(I, CS.getArgument(0), MemoryLocation::UnknownSize, 0,
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/tests/
ARDAppClientTest.mm 139 [invocation getArgument:&completionHandler atIndex:3];
148 [invocation getArgument:&message atIndex:2];
149 [invocation getArgument:&completionHandler atIndex:5];
160 [invocation getArgument:&completionHandler atIndex:4];
180 [invocation getArgument:&message atIndex:2];
193 [invocation getArgument:&completionHandler atIndex:2];
  /external/llvm/tools/llvm-diff/
DiffLog.cpp 30 Value *LogBuilder::getArgument(unsigned I) const { return Arguments[I]; }
DiffLog.h 57 Value *getArgument(unsigned I) const;
DiffConsumer.cpp 179 case 'l': printValue(Log.getArgument(arg++), true); break;
180 case 'r': printValue(Log.getArgument(arg++), false); break;
DifferenceEngine.cpp 237 if (!equivalentAsOperands(L.getArgument(I), R.getArgument(I))) {
240 << L.getArgument(I) << R.getArgument(I);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
FunctionEvaluationException.java 208 public double[] getArgument() {
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 244 New = CS.getArgument(A->getArgNo());
269 New = CS.getArgument(A->getArgNo());
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTestExprVisitor.cpp 37 const TemplateArgument &Arg = ArgLoc.getArgument();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java     [all...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 700 if (CS.getArgument(i) == cpySrc && !CS.doesNotCapture(i))
725 if (CS.getArgument(i)->stripPointerCasts() == cpySrc) {
730 if (CS.getArgument(i)->getType() == Dest->getType())
734 CS.getArgument(i)->getType(), Dest->getName(), C));
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 160 if (ArgLoc.getArgument().isPackExpansion())
362 if (Arg.getArgument().isNull() ||
363 !Arg.getArgument().containsUnexpandedParameterPack())
879 const TemplateArgument &Argument = OrigLoc.getArgument();
    [all...]
  /external/clang/lib/AST/
Comment.cpp 291 if (MaybeFunction.getArgument().getKind() != TemplateArgument::Type)
TypePrinter.cpp     [all...]

Completed in 711 milliseconds

1 2 3 4 5 6