Home
last modified time | relevance | path

Searched refs:mArguments (Results 1 – 6 of 6) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/
DProcess.java40 private final List<String> mArguments; field in Process
57 mArguments = new ArrayList<String>(); in Process()
63 mArguments.add(argument); in addArgument()
67 mArguments.addAll(arguments); in addAllArguments()
115 Log.v("Executing " + binaryPath + " with arguments " + mArguments + " and with environment " in start()
119 String[] argumentsArray = mArguments.toArray(new String[mArguments.size()]); in start()
/external/angle/src/compiler/translator/
DFunctionLookup.cpp74 return GetMangledName(mName.data(), mArguments); in getMangledName()
141 return GetMangledNames(mName.data(), mArguments); in getMangledNamesForImplicitConversions()
166 mArguments.push_back(argument); in addArgument()
171 return mArguments; in arguments()
DIntermNode.cpp392 return mArguments.size(); in getChildCount()
397 return mArguments[index]; in getChildNode()
614 mArguments.swap(*arguments); in TIntermAggregate()
651 for (TIntermNode *&arg : mArguments) in areChildrenConstQualified()
672 TIntermSequence::iterator childIter = mArguments.begin(); in setPrecisionFromChildren()
673 while (childIter != mArguments.end()) in setPrecisionFromChildren()
697 mType.setPrecision(mArguments[0]->getAsTyped()->getPrecision()); in setPrecisionForSpecialBuiltInOp()
701 mType.setPrecision(GetHigherPrecision(mArguments[0]->getAsTyped()->getPrecision(), in setPrecisionForSpecialBuiltInOp()
702 mArguments[1]->getAsTyped()->getPrecision())); in setPrecisionForSpecialBuiltInOp()
721 for (TIntermNode *arg : mArguments) in setBuiltInFunctionPrecision()
[all …]
DFunctionLookup.h54 TIntermSequence mArguments; variable
DIntermNode.h620 TIntermSequence *getSequence() override { return &mArguments; } in getSequence()
621 const TIntermSequence *getSequence() const override { return &mArguments; } in getSequence()
635 TIntermSequence mArguments;
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
DInterpreter.java44 private final List<String> mArguments; field in Interpreter
49 mArguments = new ArrayList<String>(); in Interpreter()
85 mArguments.addAll(arguments); in addAllArguments()
89 return mArguments; in getArguments()