Home
last modified time | relevance | path

Searched refs:stringRef (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRAttributes.cpp316 MlirStringRef stringRef = mlirFlatSymbolRefAttrGetValue(self); in bindDerived() local
317 return py::str(stringRef.data, stringRef.length); in bindDerived()
346 MlirStringRef stringRef = mlirOpaqueAttrGetDialectNamespace(self); in bindDerived() local
347 return py::str(stringRef.data, stringRef.length); in bindDerived()
353 MlirStringRef stringRef = mlirOpaqueAttrGetData(self); in bindDerived() local
354 return py::str(stringRef.data, stringRef.length); in bindDerived()
388 MlirStringRef stringRef = mlirStringAttrGetValue(self); in bindDerived() local
389 return py::str(stringRef.data, stringRef.length); in bindDerived()
H A DIRInterfaces.cpp84 MlirStringRef stringRef = mlirIdentifierStr(identifier); in PyConcreteOpInterface() local
85 opName = std::string(stringRef.data, stringRef.length); in PyConcreteOpInterface()
H A DIRTypes.cpp647 MlirStringRef stringRef = mlirOpaqueTypeGetDialectNamespace(self); in bindDerived() local
648 return py::str(stringRef.data, stringRef.length); in bindDerived()
654 MlirStringRef stringRef = mlirOpaqueTypeGetData(self); in bindDerived() local
655 return py::str(stringRef.data, stringRef.length); in bindDerived()
/llvm-project-15.0.7/flang/lib/Lower/
H A DIO.cpp1416 mlir::Value stringRef; in lowerReferenceAsStringSelect() local
1424 stringRef = std::get<0>(stringLit); in lowerReferenceAsStringSelect()
1428 stringRef = builder.createConvert( in lowerReferenceAsStringSelect()
1436 llvm::SmallVector<mlir::Value> args = {stringRef, stringLen}; in lowerReferenceAsStringSelect()