Home
last modified time | relevance | path

Searched refs:argumentList (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Tools/bgen/bgen/
DbgenGenerator.py114 def __init__(self, returntype, name, *argumentList, **conditionlist): argument
117 self.argumentList = []
119 self.parseArgumentList(argumentList)
126 self.argumentList.append(self.rv)
137 def parseArgumentList(self, argumentList): argument
139 for type, name, mode in argumentList:
143 self.argumentList.append(arg)
148 for arg in self.argumentList:
186 for arg in self.argumentList:
196 for arg in self.argumentList:
[all …]
/external/kotlinpoet/interop/kotlinx-metadata/src/main/kotlin/com/squareup/kotlinpoet/metadata/specs/
DKmTypes.kt96 val argumentList = arguments.map { it.toTypeName(typeParamResolver) } in toTypeName() constant
105 if (argumentList.isNotEmpty()) { in toTypeName()
115 argumentList.dropLast(2).toTypedArray() to argumentList.dropLast(1).last().let { in toTypeName()
121 argumentList.dropLast(1).toTypedArray() to argumentList.last() in toTypeName()
140 finalType = (finalType as ClassName).parameterizedBy(argumentList) in toTypeName()
/external/ow2-asm/asm-test/src/main/java/org/objectweb/asm/test/
DUtil.java36 List<?> argumentList = (List<?>) getInputArguments.invoke(runtimeMxBean); in previewFeatureEnabled() local
37 return argumentList.contains("--enable-preview"); in previewFeatureEnabled()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DConstructor.java560 Object[] argumentList = new Object[snode.getValue().size()]; in construct() local
567 argumentList[index++] = constructObject(argumentNode); in construct()
572 return c.newInstance(argumentList); in construct()
579 List<Object> argumentList = (List<Object>) constructSequence(snode); in construct() local
580 Class<?>[] parameterTypes = new Class[argumentList.size()]; in construct()
582 for (Object parameter : argumentList) { in construct()
599 return c.newInstance(argumentList.toArray()); in construct()
/external/python/cpython2/Mac/Modules/ctl/
Dctledit.py43 v = f.argumentList[-1]
/external/python/cpython2/Mac/Modules/te/
Dtesupport.py88 self.argumentList.append(self.itself)
/external/python/cpython2/Mac/Modules/cf/
Dcfsupport.py36 self.argumentList.append(dummy)
38 self.argumentList.append(self.itself)
/external/python/cpython2/Mac/Modules/list/
Dlistsupport.py76 self.argumentList.append(self.itself)
/external/python/cpython2/Mac/Modules/file/
Dfilesupport.py801 self.argumentList.insert(2, self.itself)
/external/ktfmt/core/src/main/java/com/facebook/ktfmt/format/
DKotlinInputAstVisitor.kt755 argumentList: KtValueArgumentList?, in <lambda>()
774 if (argumentList != null) { in <lambda>()
775 brokeBeforeBrace = visitValueArgumentListInternal(argumentList) in <lambda>()
/external/angle/src/common/spirv/
Dspirv_instruction_parser_autogen.h146 IdRefList *argumentList);
Dspirv_instruction_builder_autogen.h119 const IdRefList &argumentList);
Dspirv_instruction_parser_autogen.cpp598 IdRefList *argumentList) in ParseFunctionCall() argument
608 if (argumentList) in ParseFunctionCall()
612 argumentList->emplace_back(_instruction[_o++]); in ParseFunctionCall()
Dspirv_instruction_builder_autogen.cpp539 const IdRefList &argumentList) in WriteFunctionCall() argument
546 for (const auto &operand : argumentList) in WriteFunctionCall()