Home
last modified time | relevance | path

Searched refs:bindVar (Results 1 – 2 of 2) sorted by relevance

/frameworks/support/room/compiler/src/main/kotlin/androidx/room/parser/
DParsedQuery.kt35 fun bindVar(text: String) = Section(text, SectionType.BIND_VAR) in text() method
68 inputsByLine[index + 1]?.forEach { bindVar -> in text() method
69 if (charInLine < bindVar.symbol.charPositionInLine) { in text()
71 bindVar.symbol.charPositionInLine))) in text()
73 sections.add(Section.bindVar(bindVar.text)) in text()
74 charInLine = bindVar.symbol.charPositionInLine + bindVar.symbol.text.length in text()
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/parser/
DSqlParserTest.kt159 Section.bindVar("?")) in foo()
163 Section.bindVar(":name"), in foo()
165 Section.bindVar(":lastName")) in foo()
171 Section.bindVar(":name"), in foo()
173 Section.bindVar(":lastName")) in foo()
177 Section.bindVar(":name"), in foo()
181 Section.bindVar(":lastName")) in foo()
185 Section.bindVar(":name"), in foo()
190 Section.bindVar(":lastName")) in foo()