Home
last modified time | relevance | path

Searched refs:funcID (Results 1 – 5 of 5) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DFunctionTable.java311 String getFunctionName(int funcID) { in getFunctionName() argument
312 if (funcID < NUM_BUILT_IN_FUNCS) return m_functions[funcID].getName(); in getFunctionName()
313 else return m_functions_customer[funcID - NUM_BUILT_IN_FUNCS].getName(); in getFunctionName()
DCompiler.java1025 int funcID = getOp(opPos); in compileFunction() local
1029 if (-1 != funcID) in compileFunction()
1031 Function func = m_functionTable.getFunction(funcID); in compileFunction()
1059 java.lang.String name = m_functionTable.getFunctionName(funcID); in compileFunction()
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/
DSerializer.cpp604 auto funcID = funcIDMap.lookup(fnName); in getOrCreateFunctionID() local
605 if (!funcID) { in getOrCreateFunctionID()
606 funcID = getNextID(); in getOrCreateFunctionID()
607 funcIDMap[fnName] = funcID; in getOrCreateFunctionID()
609 return funcID; in getOrCreateFunctionID()
837 auto funcID = getOrCreateFunctionID(op.getName()); in processFuncOp() local
838 operands.push_back(funcID); in processFuncOp()
844 if (failed(processName(funcID, op.getName()))) { in processFuncOp()
1941 auto funcID = getFunctionID(op.fn()); in processOp() local
1942 if (!funcID) { in processOp()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DWalkerFactory.java405 int funcID = compiler.getOp(opPos); in functionProximateOrContainsProximate() local
409 switch(funcID) in functionProximateOrContainsProximate()
/external/scapy/scapy/layers/
Dinet.py1646 def IPID_count(lst, funcID=lambda x:x[1].id, funcpres=lambda x:x[1].summary()): argument
1652 idlst = [funcID(e) for e in lst]
1656 lst = [(funcID(x), funcpres(x)) for x in lst]