Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/JoseExposito/touchegg
/ functions
Functions
427 in github.com/JoseExposito/touchegg
⨍
Functions
427
◇
Types & classes
107
↓ 132 callers
Function
Match
Matches the string with the pattern, caching the compiled regexp.
cmake/cpplint.py:1062
↓ 132 callers
Function
Search
Searches the string for the pattern, caching the compiled regexp.
cmake/cpplint.py:1090
↓ 15 callers
Method
NumLines
Returns the number of lines represented.
cmake/cpplint.py:1958
↓ 14 callers
Method
b
src/utils/color.h:42
↓ 14 callers
Method
g
src/utils/color.h:41
↓ 14 callers
Method
r
src/utils/color.h:40
↓ 13 callers
Function
CloseExpression
If input points to ( or { or [ or <, finds the position that closes it. If lines[linenum][pos] points to a '(' or '{' or '[' or '<', finds the li
cmake/cpplint.py:2108
↓ 9 callers
Function
PrintUsage
Prints a brief usage string and exits, optionally with an error message. Args: message: The optional error message.
cmake/cpplint.py:6722
↓ 9 callers
Method
sendEvent
src/window-system/x11.cpp:182
↓ 8 callers
Function
GetHeaderExtensions
()
cmake/cpplint.py:960
↓ 8 callers
Method
RepositoryName
r"""FullName after removing the local path to the repository. If we have a real absolute path name here we can try to do something smart: det
cmake/cpplint.py:1597
↓ 7 callers
Method
Extension
File extension - text following the final period, includes that period.
cmake/cpplint.py:1675
↓ 7 callers
Method
direction
* @returns The gesture direction. * @see GestureDirection */
src/gesture/gesture.h:52
↓ 7 callers
Method
flush
src/window-system/x11-cairo-surface.cpp:97
↓ 7 callers
Method
getContext
src/window-system/x11-cairo-surface.cpp:95
↓ 7 callers
Method
percentage
* Percentage of the gesture performed, used for animations. * @return Value between 0 and 100. */
src/gesture/gesture.h:58
↓ 7 callers
Method
reset
src/gesture-gatherer/libinput-pinch-handler.h:38
↓ 6 callers
Function
GetAllExtensions
()
cmake/cpplint.py:969
↓ 6 callers
Function
IsHeaderExtension
(file_extension)
cmake/cpplint.py:957
↓ 6 callers
Method
PrintError
(self, message)
cmake/cpplint.py:1392
↓ 6 callers
Method
getDesktopWorkarea
src/window-system/x11.cpp:479
↓ 6 callers
Method
sendKeys
src/window-system/x11.cpp:452
↓ 6 callers
Method
value
src/animations/animation.cpp:39
↓ 5 callers
Function
GetNonHeaderExtensions
()
cmake/cpplint.py:983
↓ 5 callers
Function
GetPreviousNonBlankLine
Return the most recent non-blank line and its line number. Args: clean_lines: A CleansedLines instance containing the file contents. linenu
cmake/cpplint.py:4243
↓ 5 callers
Function
ParseNolintSuppressions
Updates the global list of line error-suppressions. Parses any NOLINT comments on the current line, updating the global error_suppressions store.
cmake/cpplint.py:986
↓ 5 callers
Method
performedOnDeviceType
* @returns The device type the gesture was performed on. */
src/gesture/gesture.h:68
↓ 5 callers
Function
split
src/utils/string.cpp:28
↓ 4 callers
Function
CleanseComments
Removes //-comments and single-line C-style /* */ comments. Args: line: A line of C++ source. Returns: The line with single-line comment
cmake/cpplint.py:1918
↓ 4 callers
Method
FullName
Make Windows paths like Unix.
cmake/cpplint.py:1593
↓ 4 callers
Function
PathSplitToList
Returns the path split into a list by the separator. Args: path: An absolute or relative path (e.g. '/a/b/c/' or '../a') Returns: A list
cmake/cpplint.py:2295
↓ 4 callers
Method
PrintInfo
(self, message)
cmake/cpplint.py:1386
↓ 4 callers
Function
ReverseCloseExpression
If input points to ) or } or ] or >, finds the position that opens it. If lines[linenum][pos] points to a ')' or '}' or ']' or '>', finds the lin
cmake/cpplint.py:2229
↓ 4 callers
Method
executeAction
src/actions/send-keys.cpp:67
↓ 4 callers
Method
getGlobalSetting
src/config/config.cpp:42
↓ 4 callers
Method
onGestureBegin
src/gesture-controller/gesture-controller.cpp:38
↓ 4 callers
Method
onGestureEnd
src/gesture-controller/gesture-controller.cpp:87
↓ 4 callers
Function
shouldExecuteAction
src/actions/execute-action-on.h:45
↓ 4 callers
Method
type
* @returns The gesture type. * @see GestureType */
src/gesture/gesture.h:46
↓ 3 callers
Method
BaseName
File base name - text after the final slash, before the final period.
cmake/cpplint.py:1671
↓ 3 callers
Function
CheckCStyleCast
Checks for a C-style cast by looking for the pattern. Args: filename: The name of the current file. clean_lines: A CleansedLines instance c
cmake/cpplint.py:5849
↓ 3 callers
Function
FindEndOfExpressionInLine
Find the position just after the end of current parenthesized expression. Args: line: a CleansedLines line. startpos: start searching at th
cmake/cpplint.py:2030
↓ 3 callers
Function
GetIndentLevel
Return the number of leading spaces in line. Args: line: A string to check. Returns: An integer count of leading spaces, possibly zero.
cmake/cpplint.py:2280
↓ 3 callers
Method
InnermostClass
Get class info on the top of the stack. Returns: A _ClassInfo object if we are inside a class, or None otherwise.
cmake/cpplint.py:3271
↓ 3 callers
Function
IsBlankLine
Returns true if the given line is blank. We consider a line to be blank if the line is empty or consists of only white spaces. Args: line:
cmake/cpplint.py:3547
↓ 3 callers
Function
ReplaceAll
Replaces instances of pattern in a string with a replacement. The compiled regex is kept in a cache shared by Match and Search. Args: patter
cmake/cpplint.py:1072
↓ 3 callers
Method
SeenOpenBrace
Check if we have seen the opening brace for the innermost block. Returns: True if we have seen the opening brace, False if the innermost
cmake/cpplint.py:2957
↓ 3 callers
Method
Split
Splits the file into the directory, basename, and extension. For 'chrome/browser/browser.cc', Split() would return ('chrome/browser', 'browse
cmake/cpplint.py:1657
↓ 3 callers
Function
_RestoreFilters
Restores filters previously backed up.
cmake/cpplint.py:1515
↓ 3 callers
Method
__init__
(self, filename)
cmake/cpplint.py:1590
↓ 3 callers
Method
clear
src/config/config.cpp:27
↓ 3 callers
Method
fingers
* @returns The number of fingers used to perform the gesture. */
src/gesture/gesture.h:63
↓ 3 callers
Method
onGestureUpdate
src/gesture-controller/gesture-controller.cpp:78
↓ 3 callers
Method
run
src/daemon/daemon-client.cpp:33
↓ 3 callers
Method
send
src/daemon/daemon-server.cpp:113
↓ 3 callers
Method
setDirection
* Set the gesture direction. * @see GestureDirection */
src/gesture/gesture.h:80
↓ 2 callers
Method
AddFilters
Adds more filters to the existing list of error-message filters.
cmake/cpplint.py:1344
↓ 2 callers
Function
FindStartOfExpressionInLine
Find position at the matching start of current expression. This is almost the reverse of FindEndOfExpressionInLine, but note that the input posit
cmake/cpplint.py:2152
↓ 2 callers
Function
GetHeaderGuardCPPVariable
Returns the CPP variable that should be used as a header guard. Args: filename: The name of a C++ header file. Returns: The CPP variable
cmake/cpplint.py:2320
↓ 2 callers
Function
GetLineWidth
Determines the width of the line in column positions. Args: line: A string, which may be a Unicode string. Returns: The width of the lin
cmake/cpplint.py:4809
↓ 2 callers
Function
ProcessExtensionsOption
(val)
cmake/cpplint.py:973
↓ 2 callers
Function
ProcessHppHeadersOption
(val)
cmake/cpplint.py:941
↓ 2 callers
Function
ProcessIncludeOrderOption
(val)
cmake/cpplint.py:948
↓ 2 callers
Method
ResetSection
Reset section checking for preprocessor directive. Args: directive: preprocessor directive (e.g. "if", "else").
cmake/cpplint.py:1161
↓ 2 callers
Function
StripListPrefix
(lst, prefix)
cmake/cpplint.py:2353
↓ 2 callers
Function
_DropCommonSuffixes
Drops common suffixes like _test.cc or -inl.h from filename. For example: >>> _DropCommonSuffixes('foo/foo-inl.h') 'foo/foo' >>> _DropC
cmake/cpplint.py:4976
↓ 2 callers
Function
_IsSourceExtension
File extension (excluding dot) matches a source file extension.
cmake/cpplint.py:1097
↓ 2 callers
Function
_SetVerboseLevel
Sets the module's verbosity, and returns the previous setting.
cmake/cpplint.py:1472
↓ 2 callers
Function
_VerboseLevel
Returns the module's verbosity setting.
cmake/cpplint.py:1467
↓ 2 callers
Function
actionDirectionFromStr
src/actions/action-direction.h:36
↓ 2 callers
Function
animationTypeFromStr
src/animations/animation-type.h:72
↓ 2 callers
Method
connect
src/daemon/daemon-client.cpp:39
↓ 2 callers
Method
elapsedTime
* Elapsed time since the beginning of the gesture. * @returns The elapsed time in milliseconds. */
src/gesture/gesture.h:74
↓ 2 callers
Method
enabled
src/utils/logger.cpp:32
↓ 2 callers
Function
executeActionOnFromStr
src/actions/execute-action-on.h:32
↓ 2 callers
Function
gestureDirectionToStr
src/gesture/gesture-direction.h:41
↓ 2 callers
Method
getAverageDelta
src/gesture-gatherer/libinput-touch-handler.cpp:160
↓ 2 callers
Method
getPinchDelta
src/gesture-gatherer/libinput-touch-handler.cpp:224
↓ 2 callers
Method
getStartCurrentPinchBBox
src/gesture-gatherer/libinput-touch-handler.cpp:232
↓ 2 callers
Method
getWindowDecorationSize
src/window-system/x11.cpp:707
↓ 2 callers
Method
getWindowSize
src/window-system/x11.cpp:104
↓ 2 callers
Method
hasGestureConfig
src/config/config.cpp:56
↓ 2 callers
Method
hasGlobalSetting
src/config/config.cpp:38
↓ 2 callers
Method
isNaturalScrollEnabled
src/window-system/x11.cpp:748
↓ 2 callers
Method
isSystemWindow
src/window-system/x11.cpp:299
↓ 2 callers
Method
loadDefaultGlobalSettings
src/config/config.cpp:73
↓ 2 callers
Method
onGestureEnd
src/daemon/daemon-server.cpp:109
↓ 2 callers
Method
parseConfig
src/config/xml-config-loader.cpp:70
↓ 2 callers
Method
sendMouseDown
src/window-system/x11.cpp:469
↓ 2 callers
Method
sendMouseUp
src/window-system/x11.cpp:474
↓ 1 callers
Method
AddJUnitFailure
(self, filename, linenum, message, category, confidence)
cmake/cpplint.py:1398
↓ 1 callers
Method
BackupFilters
Saves the current filter list to backup storage.
cmake/cpplint.py:1355
↓ 1 callers
Method
Begin
Start analyzing function body. Args: function_name: The name of the function being tracked.
cmake/cpplint.py:1530
↓ 1 callers
Method
CanonicalizeAlphabeticalOrder
Returns a path canonicalized for alphabetical comparison. - replaces "-" with "_" so they both cmp the same. - removes '-inl' since we don't
cmake/cpplint.py:1182
↓ 1 callers
Method
Check
Report if too many lines in function body. Args: error: The function to call with any errors found. filename: The name of the current
cmake/cpplint.py:1545
↓ 1 callers
Function
CheckAltTokens
Check alternative keywords being used in boolean expressions. Args: filename: The name of the current file. clean_lines: A CleansedLines in
cmake/cpplint.py:4777
↓ 1 callers
Method
CheckBegin
Run checks that applies to text up to the opening brace. This is mostly for checking the text after the class identifier and the "{", usually
cmake/cpplint.py:2740
↓ 1 callers
Function
CheckBraces
Looks for misplaced braces (e.g. at the end of line). Args: filename: The name of the current file. clean_lines: A CleansedLines instance c
cmake/cpplint.py:4266
↓ 1 callers
Function
CheckBracesSpacing
Checks for horizontal spacing near commas. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing t
cmake/cpplint.py:4082
↓ 1 callers
Function
CheckCasts
Various cast related checks. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing the file. l
cmake/cpplint.py:5730
next →
1–100 of 427, ranked by callers