Home
last modified time | relevance | path

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

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/texteditor/codeassist/
H A Ddocumentcontentcompletion.cpp131 QChar characterUnderCursor = interface->characterAt(interface->position()); in perform() local
132 if (characterUnderCursor.isLetterOrNumber() in perform()
H A Dkeywordscompletionassist.cpp197 QChar characterUnderCursor = interface->characterAt(interface->position()); in perform() local
198 if (characterUnderCursor.isLetterOrNumber() || interface->position() - startPosition in perform()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/glsleditor/
H A Dglslcompletionassist.cpp519 const QChar characterUnderCursor = m_interface->characterAt(cursorPosition); in acceptsIdleEditor() local
521 if (isIdentifierChar(ch) && (characterUnderCursor.isSpace() || in acceptsIdleEditor()
522 characterUnderCursor.isNull() || in acceptsIdleEditor()
523 isDelimiter(characterUnderCursor))) { in acceptsIdleEditor()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/clangcodemodel/
H A Dclangcompletionassistprocessor.cpp429 QChar characterUnderCursor = m_interface->characterAt(pos); in accepts() local
430 if (!characterUnderCursor.isLetterOrNumber() && characterUnderCursor != QLatin1Char('_')) { in accepts()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/cpptools/
H A Dcppcompletionassist.cpp856 QChar characterUnderCursor = m_interface->characterAt(pos); in accepts() local
858 if (!isValidIdentifierChar(characterUnderCursor)) { in accepts()