id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
2,856
globalvalues.h
flameshot-org_flameshot/src/utils/globalvalues.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once class QString; namespace GlobalValues { int buttonBaseSize(); QString versionInfo(); QString iconPath(); QString iconPathPNG(); }
265
C++
.h
10
25.1
72
0.808765
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,857
abstractlogger.h
flameshot-org_flameshot/src/utils/abstractlogger.h
#pragma once #include <QString> #include <QTextStream> /** * @brief A class that allows you to log events to where they need to go. */ class AbstractLogger { public: enum Target { Notification = 0x01, Stderr = 0x02, LogFile = 0x08, String = 0x10, Stdout = 0x20, ...
1,384
C++
.h
46
24.391304
73
0.685714
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,858
history.h
flameshot-org_flameshot/src/utils/history.h
#ifndef HISTORY_H #define HISTORY_H #define HISTORYPIXMAP_MAX_PREVIEW_WIDTH 250 #define HISTORYPIXMAP_MAX_PREVIEW_HEIGHT 100 #include <QList> #include <QPixmap> #include <QString> struct HistoryFileName { QString file; QString token; QString type; }; class History { public: History(); void save...
747
C++
.h
30
21.733333
80
0.75
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,859
confighandler.h
flameshot-org_flameshot/src/utils/confighandler.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include "src/widgets/capture/capturetoolbutton.h" #include <QSettings> #include <QStringList> #include <QVariant> #include <QVector> #define CONFIG_GROUP_GENERAL "General" #define CONFI...
8,387
C++
.h
169
43.017751
80
0.675531
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,860
desktopfileparse.h
flameshot-org_flameshot/src/utils/desktopfileparse.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QIcon> #include <QMap> #include <QStringList> class QDir; class QString; class QTextStream; struct DesktopAppData { DesktopAppData() : showInTerminal() {} D...
1,390
C++
.h
51
22.058824
77
0.70256
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,861
filenamehandler.h
flameshot-org_flameshot/src/utils/filenamehandler.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QObject> class FileNameHandler : public QObject { Q_OBJECT public: explicit FileNameHandler(QObject* parent = nullptr); QString parsedPattern(); QString parseF...
583
C++
.h
17
29.294118
72
0.729875
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,862
pathinfo.h
flameshot-org_flameshot/src/utils/pathinfo.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QStringList> namespace PathInfo { // namespace const QString whiteIconPath(); const QString blackIconPath(); QStringList translationsPaths(); } // namespace
305
C++
.h
9
32.111111
72
0.806228
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,863
waylandutils.h
flameshot-org_flameshot/src/utils/waylandutils.h
#ifndef WAYLANDUTILS_H #define WAYLANDUTILS_H class WaylandUtils { public: WaylandUtils(); static bool waylandDetected(); private: }; #endif // WAYLANDUTILS_H
171
C++
.h
10
14.9
34
0.783439
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,864
screenshotsaver.h
flameshot-org_flameshot/src/utils/screenshotsaver.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QString> class QPixmap; bool saveToFilesystem(const QPixmap& capture, const QString& path, const QString& messagePrefix = ""); QStr...
564
C++
.h
12
42
75
0.755474
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,866
valuehandler.h
flameshot-org_flameshot/src/utils/valuehandler.h
#pragma once #include "src/widgets/capture/capturetoolbutton.h" #include "src/widgets/colorpickerwidget.h" #include <QColor> #include <QList> #include <QString> class QVariant; /** * @brief Handles the value of a configuration option (abstract class). * * Each configuration option is represented as a `QVariant`....
5,973
C++
.h
195
27.030769
80
0.722783
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,867
winlnkfileparse.h
flameshot-org_flameshot/src/utils/winlnkfileparse.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include "desktopfileparse.h" #include <QFileInfo> #include <QIcon> #include <QMap> #include <QStringList> class QDir; class QString; struct CompareAppByName { bool operator()(const...
948
C++
.h
31
27.322581
72
0.772277
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,870
commandoption.h
flameshot-org_flameshot/src/cli/commandoption.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QStringList> #include <functional> using std::function; class CommandOption { public: CommandOption(const QString& name, QString description, ...
1,405
C++
.h
40
28.375
72
0.685418
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,871
commandlineparser.h
flameshot-org_flameshot/src/cli/commandlineparser.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include "src/cli/commandargument.h" #include "src/cli/commandoption.h" #include <QMap> class CommandLineParser { public: CommandLineParser(); bool parse(const QStringList& args...
2,517
C++
.h
64
30.578125
72
0.657096
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,872
commandargument.h
flameshot-org_flameshot/src/cli/commandargument.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QString> class CommandArgument { public: CommandArgument(); explicit CommandArgument(QString name, QString description); void setName(const QString& name); QSt...
568
C++
.h
19
26.368421
72
0.756007
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,873
setshortcutwidget.h
flameshot-org_flameshot/src/config/setshortcutwidget.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2020 Yurii Puchkov at Namecheap & Contributors #ifndef SETSHORTCUTWIDGET_H #define SETSHORTCUTWIDGET_H #include <QDialog> #include <QKeySequence> #include <QObject> class QVBoxLayout; class SetShortcutDialog : public QDialog { Q_OBJECT publ...
701
C++
.h
25
24.2
73
0.744012
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,874
shortcutswidget.h
flameshot-org_flameshot/src/config/shortcutswidget.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2020 Yurii Puchkov at Namecheap & Contributors #ifndef HOTKEYSCONFIG_H #define HOTKEYSCONFIG_H #include "src/utils/confighandler.h" #include <QStringList> #include <QVector> #include <QWidget> class SetShortcutDialog; class QTableWidget; class Q...
1,172
C++
.h
39
26.615385
80
0.725089
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,875
configresolver.h
flameshot-org_flameshot/src/config/configresolver.h
#pragma once #include <QDialog> class QGridLayout; class ConfigResolver : public QDialog { public: ConfigResolver(QWidget* parent = nullptr); QGridLayout* layout(); private: void populate(); void resetLayout(); };
235
C++
.h
12
16.833333
46
0.747706
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,876
colorpickereditmode.h
flameshot-org_flameshot/src/config/colorpickereditmode.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2022 Dearsh Oberoi #pragma once #include "src/utils/confighandler.h" #include "src/widgets/colorpickerwidget.h" class ColorPickerEditMode : public ColorPickerWidget { Q_OBJECT public: explicit ColorPickerEditMode(QWidget* parent = nullpt...
662
C++
.h
22
26.818182
60
0.771293
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,877
configwindow.h
flameshot-org_flameshot/src/config/configwindow.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QTabWidget> class FileNameEditor; class ShortcutsWidget; class GeneralConf; class QFileSystemWatcher; class VisualsEditor; class QWidget; class ConfigWindow : public QWidget {...
847
C++
.h
31
24.129032
72
0.782338
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,879
generalconf.h
flameshot-org_flameshot/src/config/generalconf.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QScrollArea> #include <QWidget> class QVBoxLayout; class QCheckBox; class QPushButton; class QLabel; class QLineEdit; class QSpinBox; class QComboBox; class GeneralConf : publ...
4,205
C++
.h
129
28.108527
72
0.759961
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,880
strftimechooserwidget.h
flameshot-org_flameshot/src/config/strftimechooserwidget.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QWidget> class StrftimeChooserWidget : public QWidget { Q_OBJECT public: explicit StrftimeChooserWidget(QWidget* parent = nullptr); signals: void variableEmitted(c...
397
C++
.h
14
25.857143
72
0.785714
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,881
colorpickereditor.h
flameshot-org_flameshot/src/config/colorpickereditor.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2022 Dearsh Oberoi #pragma once #include "QtColorWidgets/color_wheel.hpp" #include "src/utils/confighandler.h" #include <QWidget> class ColorPickerEditMode; class QLabel; class QPushButton; class QLineEdit; class QColor; class QGridLayout; cla...
1,074
C++
.h
40
23.35
58
0.763209
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,882
visualseditor.h
flameshot-org_flameshot/src/config/visualseditor.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QTabWidget> #include <QWidget> class ExtendedSlider; class QVBoxLayout; class ButtonListView; class UIcolorEditor; class ColorPickerEditor; class VisualsEditor : public QWidge...
789
C++
.h
29
24.034483
72
0.783712
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,883
cacheutils.h
flameshot-org_flameshot/src/config/cacheutils.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2021 Jeremy Borgman #ifndef FLAMESHOT_CACHEUTILS_H #define FLAMESHOT_CACHEUTILS_H class QString; class QRect; QString getCachePath(); QRect getLastRegion(); void setLastRegion(QRect const& newRegion); #endif // FLAMESHOT_CACHEUTILS_H
310
C++
.h
10
29.6
46
0.820946
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,884
styleoverride.h
flameshot-org_flameshot/src/config/styleoverride.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2020 Jeremy Borgman <borgman.jeremy@pm.me> // // Created by jeremy on 9/24/20. #ifndef FLAMESHOT_STYLEOVERRIDE_H #define FLAMESHOT_STYLEOVERRIDE_H #include <QObject> #include <QProxyStyle> class StyleOverride : public QProxyStyle { Q_OBJECT ...
580
C++
.h
18
27.555556
69
0.71147
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,885
buttonlistview.h
flameshot-org_flameshot/src/config/buttonlistview.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include "src/widgets/capture/capturetoolbutton.h" #include <QListWidget> class ButtonListView : public QListWidget { public: explicit ButtonListView(QWidget* parent = nullptr); pub...
645
C++
.h
21
27.809524
72
0.785714
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,886
filenameeditor.h
flameshot-org_flameshot/src/config/filenameeditor.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QPointer> #include <QWidget> class QVBoxLayout; class QLineEdit; class FileNameHandler; class QPushButton; class StrftimeChooserWidget; class FileNameEditor : public QWidget {...
914
C++
.h
34
23.647059
72
0.769495
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,887
configerrordetails.h
flameshot-org_flameshot/src/config/configerrordetails.h
#include <QDialog> #pragma once class ConfigErrorDetails : public QDialog { public: ConfigErrorDetails(QWidget* parent = nullptr); };
140
C++
.h
7
18.142857
50
0.793893
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,888
uicoloreditor.h
flameshot-org_flameshot/src/config/uicoloreditor.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include "QtColorWidgets/color_wheel.hpp" #include "src/widgets/capture/capturetoolbutton.h" #include <QGroupBox> class QVBoxLayout; class QHBoxLayout; class CaptureToolButton; class Cli...
1,107
C++
.h
35
28.285714
79
0.784369
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,889
extendedslider.h
flameshot-org_flameshot/src/config/extendedslider.h
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: 2017-2019 Alejandro Sirgo Rica & Contributors #pragma once #include <QSlider> #include <QTimer> class ExtendedSlider : public QSlider { Q_OBJECT public: explicit ExtendedSlider(QWidget* parent = nullptr); int mappedValue(int min, in...
517
C++
.h
20
22.9
72
0.74898
flameshot-org/flameshot
24,603
1,577
714
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,890
CommandLineParser.cpp
ethereum_solidity/solc/CommandLineParser.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
58,964
C++
.cpp
1,367
40.027067
176
0.744281
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,891
main.cpp
ethereum_solidity/solc/main.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
1,631
C++
.cpp
50
30.44
79
0.740929
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,892
CommandLineInterface.cpp
ethereum_solidity/solc/CommandLineInterface.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
45,798
C++
.cpp
1,216
34.802632
145
0.735553
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,893
Common.cpp
ethereum_solidity/test/Common.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
11,035
C++
.cpp
278
37.226619
166
0.720564
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,896
FilesystemUtils.cpp
ethereum_solidity/test/FilesystemUtils.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
3,078
C++
.cpp
70
41.628571
124
0.74323
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,897
CommonSyntaxTest.cpp
ethereum_solidity/test/CommonSyntaxTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
9,592
C++
.cpp
264
33.223485
131
0.704438
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,898
EVMHost.cpp
ethereum_solidity/test/EVMHost.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
47,648
C++
.cpp
1,194
36.407035
271
0.81191
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,899
soltest.cpp
ethereum_solidity/test/soltest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
9,047
C++
.cpp
270
30.622222
130
0.723475
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,900
TestCaseReader.cpp
ethereum_solidity/test/TestCaseReader.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
7,836
C++
.cpp
184
39.505435
135
0.735931
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,901
Metadata.cpp
ethereum_solidity/test/Metadata.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
5,677
C++
.cpp
190
27.278947
116
0.710132
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,902
Common.cpp
ethereum_solidity/test/solc/Common.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,300
C++
.cpp
66
32.712121
87
0.756196
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,903
CommandLineParser.cpp
ethereum_solidity/test/solc/CommandLineParser.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
25,346
C++
.cpp
555
42.747748
155
0.710153
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,904
CommandLineInterfaceAllowPaths.cpp
ethereum_solidity/test/solc/CommandLineInterfaceAllowPaths.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
31,410
C++
.cpp
467
64.978587
150
0.65428
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,905
CommandLineInterface.cpp
ethereum_solidity/test/solc/CommandLineInterface.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
50,935
C++
.cpp
1,201
39.880933
130
0.725817
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,906
fuzzer_common.cpp
ethereum_solidity/test/tools/fuzzer_common.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
6,032
C++
.cpp
182
30.582418
113
0.720124
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,907
yulrun.cpp
ethereum_solidity/test/tools/yulrun.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
4,682
C++
.cpp
143
30.244755
158
0.745459
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,908
isoltest.cpp
ethereum_solidity/test/tools/isoltest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
12,112
C++
.cpp
441
24.394558
122
0.688755
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,910
yulopti.cpp
ethereum_solidity/test/tools/yulopti.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
11,086
C++
.cpp
333
29.981982
137
0.697677
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,912
yulProto_diff_ossfuzz.cpp
ethereum_solidity/test/tools/ossfuzz/yulProto_diff_ossfuzz.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
3,878
C++
.cpp
107
34.018692
97
0.769395
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,915
yulFuzzerCommon.cpp
ethereum_solidity/test/tools/ossfuzz/yulFuzzerCommon.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,715
C++
.cpp
79
32.21519
76
0.775875
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,917
solc_ossfuzz.cpp
ethereum_solidity/test/tools/ossfuzz/solc_ossfuzz.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
1,807
C++
.cpp
50
33.3
87
0.730549
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,918
YulEvmoneInterface.cpp
ethereum_solidity/test/tools/ossfuzz/YulEvmoneInterface.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
2,898
C++
.cpp
92
28.967391
78
0.733715
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,919
solProtoFuzzer.cpp
ethereum_solidity/test/tools/ossfuzz/solProtoFuzzer.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,898
C++
.cpp
74
36.905405
91
0.763429
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,920
SolidityEvmoneInterface.cpp
ethereum_solidity/test/tools/ossfuzz/SolidityEvmoneInterface.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
5,920
C++
.cpp
167
33.167665
91
0.777952
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,921
yulProtoFuzzer.cpp
ethereum_solidity/test/tools/ossfuzz/yulProtoFuzzer.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,660
C++
.cpp
71
35.267606
79
0.775097
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,922
StackReuseCodegenFuzzer.cpp
ethereum_solidity/test/tools/ossfuzz/StackReuseCodegenFuzzer.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
6,582
C++
.cpp
184
33.043478
102
0.771065
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,923
abiV2ProtoFuzzer.cpp
ethereum_solidity/test/tools/ossfuzz/abiV2ProtoFuzzer.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,570
C++
.cpp
66
36.560606
98
0.758524
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,924
AbiV2IsabelleFuzzer.cpp
ethereum_solidity/test/tools/ossfuzz/AbiV2IsabelleFuzzer.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,745
C++
.cpp
67
38.522388
98
0.773068
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,925
SolidityGenerator.cpp
ethereum_solidity/test/tools/ossfuzz/SolidityGenerator.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
5,566
C++
.cpp
189
27.206349
92
0.727307
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,928
SolidityCustomMutatorInterface.cpp
ethereum_solidity/test/tools/ossfuzz/SolidityCustomMutatorInterface.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,216
C++
.cpp
60
35.133333
107
0.774103
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,930
protoToAbiV2.cpp
ethereum_solidity/test/tools/ossfuzz/protoToAbiV2.cpp
#include <test/tools/ossfuzz/protoToAbiV2.h> #include <boost/preprocessor.hpp> #include <regex> /// Convenience macros /// Returns a valid Solidity integer width w such that 8 <= w <= 256. #define INTWIDTH(z, n, _ununsed) BOOST_PP_MUL(BOOST_PP_ADD(n, 1), 8) /// Using declaration that aliases long boost multiprecision...
42,040
C++
.cpp
1,273
30.501178
111
0.70145
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,931
YulProtoMutator.cpp
ethereum_solidity/test/tools/ossfuzz/protomutators/YulProtoMutator.cpp
#include <test/tools/ossfuzz/protomutators/YulProtoMutator.h> #include <libyul/Exceptions.h> #include <src/text_format.h> using namespace solidity::yul::test::yul_fuzzer; using namespace protobuf_mutator; using YPM = YulProtoMutator; MutationInfo::MutationInfo(ProtobufMessage const* _message, std::string const& _i...
8,607
C++
.cpp
263
30.51711
88
0.737715
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,932
Inspector.cpp
ethereum_solidity/test/tools/yulInterpreter/Inspector.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
4,141
C++
.cpp
125
30.4
135
0.709305
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,933
Interpreter.cpp
ethereum_solidity/test/tools/yulInterpreter/Interpreter.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
13,416
C++
.cpp
433
28.452656
115
0.716543
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,934
EVMInstructionInterpreter.cpp
ethereum_solidity/test/tools/yulInterpreter/EVMInstructionInterpreter.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
20,163
C++
.cpp
667
27.647676
120
0.698648
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,935
Common.cpp
ethereum_solidity/test/yulPhaser/Common.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
4,115
C++
.cpp
120
32.466667
137
0.763682
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,936
TestHelpersTest.cpp
ethereum_solidity/test/yulPhaser/TestHelpersTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
7,173
C++
.cpp
142
48.591549
117
0.730808
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,943
TestHelpers.cpp
ethereum_solidity/test/yulPhaser/TestHelpers.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,956
C++
.cpp
78
35.871795
110
0.760322
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,951
ControlFlowGraphTest.cpp
ethereum_solidity/test/libyul/ControlFlowGraphTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
8,842
C++
.cpp
229
35.528384
147
0.677536
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,952
KnowledgeBaseTest.cpp
ethereum_solidity/test/libyul/KnowledgeBaseTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
4,255
C++
.cpp
102
39.166667
94
0.743279
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,953
YulOptimizerTest.cpp
ethereum_solidity/test/libyul/YulOptimizerTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
4,504
C++
.cpp
104
41.221154
151
0.758739
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,956
CompilabilityChecker.cpp
ethereum_solidity/test/libyul/CompilabilityChecker.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
8,110
C++
.cpp
317
22.324921
120
0.574353
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,957
StackLayoutGeneratorTest.cpp
ethereum_solidity/test/libyul/StackLayoutGeneratorTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
9,366
C++
.cpp
243
35.452675
131
0.682278
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,958
ObjectCompilerTest.cpp
ethereum_solidity/test/libyul/ObjectCompilerTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
3,285
C++
.cpp
83
37.240964
129
0.765704
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,959
SyntaxTest.cpp
ethereum_solidity/test/libyul/SyntaxTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,351
C++
.cpp
67
32.791045
87
0.764109
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,960
StackShufflingTest.cpp
ethereum_solidity/test/libyul/StackShufflingTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
5,199
C++
.cpp
163
27.90184
129
0.683529
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,961
Parser.cpp
ethereum_solidity/test/libyul/Parser.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
40,176
C++
.cpp
960
39.546875
176
0.725639
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,962
EVMCodeTransformTest.cpp
ethereum_solidity/test/libyul/EVMCodeTransformTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,832
C++
.cpp
71
37.788732
129
0.786963
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,963
ControlFlowSideEffectsTest.cpp
ethereum_solidity/test/libyul/ControlFlowSideEffectsTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,618
C++
.cpp
68
36.573529
124
0.773838
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,966
YulOptimizerTestCommon.cpp
ethereum_solidity/test/libyul/YulOptimizerTestCommon.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
18,654
C++
.cpp
544
30.884191
121
0.722649
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,967
ObjectParser.cpp
ethereum_solidity/test/libyul/ObjectParser.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
7,887
C++
.cpp
238
31
114
0.72548
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,968
SSAControlFlowGraphTest.cpp
ethereum_solidity/test/libyul/SSAControlFlowGraphTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
3,766
C++
.cpp
91
39.241758
129
0.770304
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,970
FunctionDependencyGraphTest.cpp
ethereum_solidity/test/libsolidity/FunctionDependencyGraphTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
2,182
C++
.cpp
50
41.64
137
0.777358
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,972
SMTCheckerTest.cpp
ethereum_solidity/test/libsolidity/SMTCheckerTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
6,285
C++
.cpp
149
39.765101
114
0.761749
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,974
ASTJSONTest.cpp
ethereum_solidity/test/libsolidity/ASTJSONTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
9,458
C++
.cpp
276
31.713768
136
0.724059
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,975
GasTest.cpp
ethereum_solidity/test/libsolidity/GasTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
5,608
C++
.cpp
147
35.510204
132
0.724619
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,976
SolidityExpressionCompiler.cpp
ethereum_solidity/test/libsolidity/SolidityExpressionCompiler.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
22,683
C++
.cpp
650
32.013846
124
0.721888
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,978
NatspecJSONTest.cpp
ethereum_solidity/test/libsolidity/NatspecJSONTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
6,676
C++
.cpp
173
36.179191
119
0.757618
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,981
InlineAssembly.cpp
ethereum_solidity/test/libsolidity/InlineAssembly.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed ...
10,397
C++
.cpp
306
32.006536
137
0.719601
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,983
StandardCompiler.cpp
ethereum_solidity/test/libsolidity/StandardCompiler.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
52,456
C++
.cpp
1,668
28.482614
231
0.648483
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,984
AnalysisFramework.cpp
ethereum_solidity/test/libsolidity/AnalysisFramework.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
7,095
C++
.cpp
195
34.025641
120
0.778085
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,985
SyntaxTest.cpp
ethereum_solidity/test/libsolidity/SyntaxTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
5,282
C++
.cpp
140
34.914286
111
0.748732
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,986
ABIDecoderTests.cpp
ethereum_solidity/test/libsolidity/ABIDecoderTests.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
13,897
C++
.cpp
408
30.919118
143
0.676073
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,988
MemoryGuardTest.cpp
ethereum_solidity/test/libsolidity/MemoryGuardTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
3,160
C++
.cpp
79
37.721519
126
0.762789
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,993
SemanticTest.cpp
ethereum_solidity/test/libsolidity/SemanticTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that it ...
23,337
C++
.cpp
633
33.650869
147
0.723698
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,994
GasMeter.cpp
ethereum_solidity/test/libsolidity/GasMeter.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
12,861
C++
.cpp
411
27.997567
130
0.676364
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,996
Assembly.cpp
ethereum_solidity/test/libsolidity/Assembly.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
7,441
C++
.cpp
196
35.413265
120
0.744247
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
2,997
OptimizedIRCachingTest.cpp
ethereum_solidity/test/libsolidity/OptimizedIRCachingTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
1,710
C++
.cpp
39
41.948718
120
0.793976
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,998
ASTPropertyTest.cpp
ethereum_solidity/test/libsolidity/ASTPropertyTest.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
6,563
C++
.cpp
174
34.494253
119
0.719434
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
2,999
Metadata.cpp
ethereum_solidity/test/libsolidity/Metadata.cpp
/* This file is part of solidity. solidity is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. solidity is distributed in the hope that i...
19,989
C++
.cpp
551
33.46824
141
0.74072
ethereum/solidity
23,062
5,715
501
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false