Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/4paradigm/OpenMLDB
/ functions
Functions
3,483 in github.com/4paradigm/OpenMLDB
⨍
Functions
3,483
◇
Types & classes
391
↳
Endpoints
23
↓ 1 callers
Method
CheckCompletedBlocks
Checks that all classes and namespaces have been completely parsed. Call this when all lines in a file have been processed. Args: filen
steps/cpplint.py:3263
↓ 1 callers
Function
CheckEmptyBlockBody
Look for empty loop/conditional body with only a single semicolon. Args: filename: The name of the current file. clean_lines: A CleansedLin
steps/cpplint.py:4511
↓ 1 callers
Method
CheckEnd
Run checks that applies to text after the closing brace. This is mostly used for checking end of namespace comments. Args: filename: T
steps/cpplint.py:2735
↓ 1 callers
Function
CheckForBadCharacters
Logs an error for each line containing bad characters. Two kinds of bad characters: 1. Unicode replacement characters: These indicate that eithe
steps/cpplint.py:2513
↓ 1 callers
Function
CheckForCopyright
Logs an error if no Copyright message appears at the top of the file.
steps/cpplint.py:2248
↓ 1 callers
Function
CheckForFunctionLengths
Reports for long function bodies. For an overview why this is done, see: https://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Write_Sh
steps/cpplint.py:3556
↓ 1 callers
Function
CheckForHeaderGuard
Checks that the file contains a header guard. Logs an error if no #ifndef header guard is present. For other headers, checks that the full pathn
steps/cpplint.py:2377
↓ 1 callers
Function
CheckForIncludeWhatYouUse
Reports for missing stl includes. This function will output warnings to make sure you are including the headers necessary for the stl containers
steps/cpplint.py:6066
↓ 1 callers
Function
CheckForMultilineCommentsAndStrings
Logs an error if we see /* ... */ or "..." that extend past one line. /* ... */ comments are legit inside macros, for one line. Otherwise, we pre
steps/cpplint.py:2556
↓ 1 callers
Function
CheckForNamespaceIndentation
(filename, nesting_state, clean_lines, line, error)
steps/cpplint.py:3542
↓ 1 callers
Function
CheckForNewlineAtEOF
Logs an error if there is no newline char at the end of the file. Args: filename: The name of the current file. lines: An array of strings,
steps/cpplint.py:2538
↓ 1 callers
Function
CheckForNonConstReference
Check for non-const references. Separate from CheckLanguage since it scans backwards from current line, instead of scanning forward. Args:
steps/cpplint.py:5567
↓ 1 callers
Function
CheckForNonStandardConstructs
r"""Logs an error if we see certain non-ANSI constructs ignored by gcc-2. Complain about several constructs which gcc-2 accepts, but which are no
steps/cpplint.py:3285
↓ 1 callers
Function
CheckGlobalStatic
Check for unsafe global or static objects. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing t
steps/cpplint.py:5397
↓ 1 callers
Function
CheckHeaderFileIncluded
Logs an error if a source file does not include its header.
steps/cpplint.py:2480
↓ 1 callers
Function
CheckIncludeLine
Check rules that are applicable to #include lines. Strings on #include lines are NOT removed from elided line, to make certain tasks easier. Howe
steps/cpplint.py:5060
↓ 1 callers
Function
CheckInvalidIncrement
Checks for invalid increment *count++. For example following function: void increment_counter(int* count) { *count++; } is invalid, becau
steps/cpplint.py:2674
↓ 1 callers
Function
CheckItemIndentationInNamespace
(filename, raw_lines_no_comments, linenum, error)
steps/cpplint.py:6340
↓ 1 callers
Function
CheckJava
(host)
tools/deploy.py:72
↓ 1 callers
Function
CheckLanguage
Checks rules from the 'C++ language rules' section of cppguide.html. Some of these rules are hard to test (function overloading, using uint32 ina
steps/cpplint.py:5236
↓ 1 callers
Function
CheckLocalHost
(host)
tools/deploy.py:25
↓ 1 callers
Function
CheckMakePairUsesDeduction
Check that make_pair's template arguments are deduced. G++ 4.6 in C++11 mode fails badly if make_pair's template arguments are specified explicit
steps/cpplint.py:6170
↓ 1 callers
Method
CheckNextIncludeOrder
Returns a non-empty error message if the next header is out of order. This function also updates the internal state to be ready to check the
steps/cpplint.py:1200
↓ 1 callers
Function
CheckOperatorSpacing
Checks for horizontal spacing around operators. Args: filename: The name of the current file. clean_lines: A CleansedLines instance contain
steps/cpplint.py:3809
↓ 1 callers
Function
CheckParenthesisSpacing
Checks for horizontal spacing around parentheses. Args: filename: The name of the current file. clean_lines: A CleansedLines instance conta
steps/cpplint.py:3924
↓ 1 callers
Function
CheckPosixThreading
Checks for calls to thread-unsafe functions. Much code has been originally written without consideration of multi-threading. Also, engineers are
steps/cpplint.py:2624
↓ 1 callers
Function
CheckPrintf
Check for printf related issues. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing the file.
steps/cpplint.py:5458
↓ 1 callers
Function
CheckRedundantOverrideOrFinal
Check if line contains a redundant "override" or "final" virt-specifier. Args: filename: The name of the current file. clean_lines: A Clean
steps/cpplint.py:6255
↓ 1 callers
Function
CheckRedundantVirtual
Check if line contains a redundant "virtual" function-specifier. Args: filename: The name of the current file. clean_lines: A CleansedLines
steps/cpplint.py:6191
↓ 1 callers
Function
CheckSectionSpacing
Checks for additional blank line issues related to sections. Currently the only thing checked here is blank line before protected/private. Args:
steps/cpplint.py:4167
↓ 1 callers
Function
CheckSpacing
Checks for the correctness of various spacing issues in the code. Things we check for: spaces around operators, spaces after if/for/while/switch,
steps/cpplint.py:3681
↓ 1 callers
Function
CheckSpacingForFunctionCall
Checks for the correctness of various spacing around function calls. Args: filename: The name of the current file. clean_lines: A CleansedL
steps/cpplint.py:3450
↓ 1 callers
Function
CheckStyle
Checks rules from the 'C++ style rules' section of cppguide.html. Most of these rules are hard to test (naming, comment style), but we do what we
steps/cpplint.py:4820
↓ 1 callers
Function
CheckTrailingSemicolon
Looks for redundant trailing semicolon. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing the
steps/cpplint.py:4364
↓ 1 callers
Function
CheckVlogArguments
Checks that VLOG() is only used for defining a logging level. For example, VLOG(2) is correct. VLOG(INFO), VLOG(WARNING), VLOG(ERROR), and VLOG(F
steps/cpplint.py:2650
↓ 1 callers
Method
CheckZkClient
src/nameserver/name_server_impl.cc:82
↓ 1 callers
Function
CleanseRawStrings
Removes C++11 raw strings from lines. Before: static const char kData[] = R"( multi-line string )"; After: s
steps/cpplint.py:1780
↓ 1 callers
Method
ClearDb
src/client/ns_client.cc:43
↓ 1 callers
Method
ColumnIndicesSet
src/sdk/sql_request_row.h:132
↓ 1 callers
Method
CombinePartitionKey
src/codec/sdk_codec.cc:283
↓ 1 callers
Function
CompareRow
src/codec/codec_project_test.cc:308
↓ 1 callers
Method
ConfGet
src/client/ns_client.cc:582
↓ 1 callers
Method
ConfSet
src/client/ns_client.cc:565
↓ 1 callers
Method
ConnectZK
src/nameserver/name_server_impl.cc:2142
↓ 1 callers
Function
CopyInteger
src/codec/memcomparable_format.h:76
↓ 1 callers
Method
Corruption
src/base/status.h:51
↓ 1 callers
Method
Count
Count line in current function body.
steps/cpplint.py:1522
↓ 1 callers
Method
CreateProcedure
src/nameserver/name_server_impl.cc:9957
↓ 1 callers
Method
CreateProcedure
src/sdk/sql_sdk_test.h:185
↓ 1 callers
Method
CreateRemoteTableInfoSimply
src/client/ns_client.cc:897
↓ 1 callers
Method
Delete
src/tablet/tablet_impl.cc:1496
↓ 1 callers
Method
DeleteTable
src/catalog/tablet_catalog.cc:191
↓ 1 callers
Function
DeployJava
(host, path, source_file, teardown)
tools/deploy.py:83
↓ 1 callers
Function
DeployNameserver
(zk_cluster, zk_root_path, ns_conf, teardown)
tools/deploy.py:174
↓ 1 callers
Function
DeployTablet
(zk_cluster, zk_root_path, tablet_conf, teardown)
tools/deploy.py:212
↓ 1 callers
Function
DeployZookeeper
(zk_conf, teardown)
tools/deploy.py:106
↓ 1 callers
Method
DisConnectZK
src/nameserver/name_server_impl.cc:2161
↓ 1 callers
Method
DropProcedure
src/client/ns_client.cc:1409
↓ 1 callers
Method
DropProcedure
src/nameserver/name_server_impl.cc:10089
↓ 1 callers
Method
DropSQLProcedureCacheEntry
src/tablet/tablet_impl.h:94
↓ 1 callers
Method
EncodeTsDimension
src/codec/sdk_codec.cc:215
↓ 1 callers
Method
End
Stop analyzing function body.
steps/cpplint.py:1555
↓ 1 callers
Function
Error
Logs the fact we've found a lint error. We log where the error was found, and also our confidence in the error, that is, how certain we are this
steps/cpplint.py:1698
↓ 1 callers
Function
ExpectingFunctionArgs
Checks whether where function type arguments are expected. Args: clean_lines: A CleansedLines instance containing the file. linenum: The nu
steps/cpplint.py:5878
↓ 1 callers
Method
ExtractIndexData
src/tablet/tablet_impl.cc:4927
↓ 1 callers
Function
FilesBelongToSameModule
Check if these two filenames belong to the same module. The concept of a 'module' here is a as follows: foo.h, foo-inl.h, foo.cc, foo_test.cc and
steps/cpplint.py:5980
↓ 1 callers
Function
FindCheckMacro
Find a replaceable CHECK-like macro. Args: line: line to search on. Returns: (macro name, start position), or (None, -1) if no replaceabl
steps/cpplint.py:4615
↓ 1 callers
Method
FindHeader
Check if a header has already been included. Args: header: header to check. Returns: Line number of previous occurrence, or -1 if
steps/cpplint.py:1128
↓ 1 callers
Method
FindLessThan
src/base/skiplist.h:413
↓ 1 callers
Function
FindNextMultiLineCommentEnd
We are inside a comment, find the end marker.
steps/cpplint.py:1867
↓ 1 callers
Function
FindNextMultiLineCommentStart
Find the beginning marker for a multiline comment.
steps/cpplint.py:1856
↓ 1 callers
Function
FixupPathFromRoot
()
steps/cpplint.py:2323
↓ 1 callers
Function
FlagCxx11Features
Flag those c++11 features that we only allow in certain places. Args: filename: The name of the current file. clean_lines: A CleansedLines
steps/cpplint.py:6393
↓ 1 callers
Method
FollowOfNoOne
src/client/tablet_client.cc:385
↓ 1 callers
Method
FormatJUnitXML
(self)
steps/cpplint.py:1384
↓ 1 callers
Method
Gc4Head
src/storage/segment.cc:475
↓ 1 callers
Method
GenColumnKey
src/storage/schema.cc:58
↓ 1 callers
Function
GenCommonCase
src/tablet/tablet_impl_projection_test.cc:95
↓ 1 callers
Function
GenCommonCase
src/codec/codec_project_test.cc:54
↓ 1 callers
Function
GenPhysicalRecord
src/log/log_test.cc:68
↓ 1 callers
Function
GenRand
src/tablet/tablet_impl_keep_alive_test.cc:45
↓ 1 callers
Function
GenRand
src/tablet/tablet_impl_mem_test.cc:35
↓ 1 callers
Function
GenRand
src/replica/binlog_test.cc:125
↓ 1 callers
Function
GenTableInfo
src/cmd/fedb.cc:2482
↓ 1 callers
Function
GenerateInsertSQLSample
src/sdk/mini_cluster_microbenchmark.cc:256
↓ 1 callers
Method
GetBool
src/sdk/result_set_base.cc:84
↓ 1 callers
Method
GetCatalog
src/tablet/tablet_impl.cc:3435
↓ 1 callers
Method
GetCompressType
src/storage/mem_table.cc:129
↓ 1 callers
Method
GetCompressed
src/log/log_reader.h:87
↓ 1 callers
Method
GetCount
src/catalog/tablet_catalog.cc:151
↓ 1 callers
Method
GetDiskused
src/tablet/tablet_impl.cc:4400
↓ 1 callers
Method
GetDouble
src/sdk/result_set_base.cc:131
↓ 1 callers
Function
GetDstStrSize
src/codec/memcomparable_format.h:50
↓ 1 callers
Method
GetExpireStatus
src/storage/mem_table.h:226
↓ 1 callers
Method
GetFloat
src/sdk/result_set_base.cc:122
↓ 1 callers
Method
GetIdxByteSize
src/storage/segment.h:222
↓ 1 callers
Method
GetInt32
src/sdk/result_set_base.cc:104
↓ 1 callers
Method
GetIterator
src/catalog/client_manager.cc:87
↓ 1 callers
Method
GetKeyEntryHeight
src/storage/mem_table.h:238
↓ 1 callers
Method
GetKeyEntryMaxHeight
src/storage/schema.cc:105
← previous
next →
901–1,000 of 3,483, ranked by callers