MCPcopy Create free account

hub / github.com/4paradigm/OpenMLDB / functions

Functions3,483 in github.com/4paradigm/OpenMLDB

↓ 1 callersMethodCheckCompletedBlocks
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 callersFunctionCheckEmptyBlockBody
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 callersMethodCheckEnd
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 callersFunctionCheckForBadCharacters
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 callersFunctionCheckForCopyright
Logs an error if no Copyright message appears at the top of the file.
steps/cpplint.py:2248
↓ 1 callersFunctionCheckForFunctionLengths
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 callersFunctionCheckForHeaderGuard
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 callersFunctionCheckForIncludeWhatYouUse
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 callersFunctionCheckForMultilineCommentsAndStrings
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 callersFunctionCheckForNamespaceIndentation
(filename, nesting_state, clean_lines, line, error)
steps/cpplint.py:3542
↓ 1 callersFunctionCheckForNewlineAtEOF
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 callersFunctionCheckForNonConstReference
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 callersFunctionCheckForNonStandardConstructs
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 callersFunctionCheckGlobalStatic
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 callersFunctionCheckHeaderFileIncluded
Logs an error if a source file does not include its header.
steps/cpplint.py:2480
↓ 1 callersFunctionCheckIncludeLine
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 callersFunctionCheckInvalidIncrement
Checks for invalid increment *count++. For example following function: void increment_counter(int* count) { *count++; } is invalid, becau
steps/cpplint.py:2674
↓ 1 callersFunctionCheckItemIndentationInNamespace
(filename, raw_lines_no_comments, linenum, error)
steps/cpplint.py:6340
↓ 1 callersFunctionCheckJava
(host)
tools/deploy.py:72
↓ 1 callersFunctionCheckLanguage
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 callersFunctionCheckLocalHost
(host)
tools/deploy.py:25
↓ 1 callersFunctionCheckMakePairUsesDeduction
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 callersMethodCheckNextIncludeOrder
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 callersFunctionCheckOperatorSpacing
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 callersFunctionCheckParenthesisSpacing
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 callersFunctionCheckPosixThreading
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 callersFunctionCheckPrintf
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 callersFunctionCheckRedundantOverrideOrFinal
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 callersFunctionCheckRedundantVirtual
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 callersFunctionCheckSectionSpacing
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 callersFunctionCheckSpacing
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 callersFunctionCheckSpacingForFunctionCall
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 callersFunctionCheckStyle
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 callersFunctionCheckTrailingSemicolon
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 callersFunctionCheckVlogArguments
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 callersMethodCheckZkClient
src/nameserver/name_server_impl.cc:82
↓ 1 callersFunctionCleanseRawStrings
Removes C++11 raw strings from lines. Before: static const char kData[] = R"( multi-line string )"; After: s
steps/cpplint.py:1780
↓ 1 callersMethodClearDb
src/client/ns_client.cc:43
↓ 1 callersMethodColumnIndicesSet
src/sdk/sql_request_row.h:132
↓ 1 callersMethodCombinePartitionKey
src/codec/sdk_codec.cc:283
↓ 1 callersFunctionCompareRow
src/codec/codec_project_test.cc:308
↓ 1 callersMethodConfGet
src/client/ns_client.cc:582
↓ 1 callersMethodConfSet
src/client/ns_client.cc:565
↓ 1 callersMethodConnectZK
src/nameserver/name_server_impl.cc:2142
↓ 1 callersFunctionCopyInteger
src/codec/memcomparable_format.h:76
↓ 1 callersMethodCorruption
src/base/status.h:51
↓ 1 callersMethodCount
Count line in current function body.
steps/cpplint.py:1522
↓ 1 callersMethodCreateProcedure
src/nameserver/name_server_impl.cc:9957
↓ 1 callersMethodCreateProcedure
src/sdk/sql_sdk_test.h:185
↓ 1 callersMethodCreateRemoteTableInfoSimply
src/client/ns_client.cc:897
↓ 1 callersMethodDelete
src/tablet/tablet_impl.cc:1496
↓ 1 callersMethodDeleteTable
src/catalog/tablet_catalog.cc:191
↓ 1 callersFunctionDeployJava
(host, path, source_file, teardown)
tools/deploy.py:83
↓ 1 callersFunctionDeployNameserver
(zk_cluster, zk_root_path, ns_conf, teardown)
tools/deploy.py:174
↓ 1 callersFunctionDeployTablet
(zk_cluster, zk_root_path, tablet_conf, teardown)
tools/deploy.py:212
↓ 1 callersFunctionDeployZookeeper
(zk_conf, teardown)
tools/deploy.py:106
↓ 1 callersMethodDisConnectZK
src/nameserver/name_server_impl.cc:2161
↓ 1 callersMethodDropProcedure
src/client/ns_client.cc:1409
↓ 1 callersMethodDropProcedure
src/nameserver/name_server_impl.cc:10089
↓ 1 callersMethodDropSQLProcedureCacheEntry
src/tablet/tablet_impl.h:94
↓ 1 callersMethodEncodeTsDimension
src/codec/sdk_codec.cc:215
↓ 1 callersMethodEnd
Stop analyzing function body.
steps/cpplint.py:1555
↓ 1 callersFunctionError
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 callersFunctionExpectingFunctionArgs
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 callersMethodExtractIndexData
src/tablet/tablet_impl.cc:4927
↓ 1 callersFunctionFilesBelongToSameModule
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 callersFunctionFindCheckMacro
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 callersMethodFindHeader
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 callersMethodFindLessThan
src/base/skiplist.h:413
↓ 1 callersFunctionFindNextMultiLineCommentEnd
We are inside a comment, find the end marker.
steps/cpplint.py:1867
↓ 1 callersFunctionFindNextMultiLineCommentStart
Find the beginning marker for a multiline comment.
steps/cpplint.py:1856
↓ 1 callersFunctionFixupPathFromRoot
()
steps/cpplint.py:2323
↓ 1 callersFunctionFlagCxx11Features
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 callersMethodFollowOfNoOne
src/client/tablet_client.cc:385
↓ 1 callersMethodFormatJUnitXML
(self)
steps/cpplint.py:1384
↓ 1 callersMethodGc4Head
src/storage/segment.cc:475
↓ 1 callersMethodGenColumnKey
src/storage/schema.cc:58
↓ 1 callersFunctionGenCommonCase
src/tablet/tablet_impl_projection_test.cc:95
↓ 1 callersFunctionGenCommonCase
src/codec/codec_project_test.cc:54
↓ 1 callersFunctionGenPhysicalRecord
src/log/log_test.cc:68
↓ 1 callersFunctionGenRand
src/tablet/tablet_impl_keep_alive_test.cc:45
↓ 1 callersFunctionGenRand
src/tablet/tablet_impl_mem_test.cc:35
↓ 1 callersFunctionGenRand
src/replica/binlog_test.cc:125
↓ 1 callersFunctionGenTableInfo
src/cmd/fedb.cc:2482
↓ 1 callersFunctionGenerateInsertSQLSample
src/sdk/mini_cluster_microbenchmark.cc:256
↓ 1 callersMethodGetBool
src/sdk/result_set_base.cc:84
↓ 1 callersMethodGetCatalog
src/tablet/tablet_impl.cc:3435
↓ 1 callersMethodGetCompressType
src/storage/mem_table.cc:129
↓ 1 callersMethodGetCompressed
src/log/log_reader.h:87
↓ 1 callersMethodGetCount
src/catalog/tablet_catalog.cc:151
↓ 1 callersMethodGetDiskused
src/tablet/tablet_impl.cc:4400
↓ 1 callersMethodGetDouble
src/sdk/result_set_base.cc:131
↓ 1 callersFunctionGetDstStrSize
src/codec/memcomparable_format.h:50
↓ 1 callersMethodGetExpireStatus
src/storage/mem_table.h:226
↓ 1 callersMethodGetFloat
src/sdk/result_set_base.cc:122
↓ 1 callersMethodGetIdxByteSize
src/storage/segment.h:222
↓ 1 callersMethodGetInt32
src/sdk/result_set_base.cc:104
↓ 1 callersMethodGetIterator
src/catalog/client_manager.cc:87
↓ 1 callersMethodGetKeyEntryHeight
src/storage/mem_table.h:238
↓ 1 callersMethodGetKeyEntryMaxHeight
src/storage/schema.cc:105
← previousnext →901–1,000 of 3,483, ranked by callers