Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-creator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tobias Hunger
qt-creator
Commits
a31ce64b
Commit
a31ce64b
authored
15 years ago
by
hjk
Browse files
Options
Downloads
Patches
Plain Diff
qstringbuilder: also accept QStringRef
parent
295a0102
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libs/utils/qstringbuilder.h
+9
-0
9 additions, 0 deletions
src/libs/utils/qstringbuilder.h
tests/benchmarks/qstringbuilder/main.cpp
+14
-0
14 additions, 0 deletions
tests/benchmarks/qstringbuilder/main.cpp
with
23 additions
and
0 deletions
src/libs/utils/qstringbuilder.h
+
9
−
0
View file @
a31ce64b
...
...
@@ -137,6 +137,7 @@ inline int qStringBuilderSize(const QLatin1Char) { return 1; }
inline
int
qStringBuilderSize
(
const
QLatin1String
a
)
{
return
qstrlen
(
a
.
latin1
());
}
template
<
typename
A
>
inline
void
qStringBuilderAppend
(
const
A
a
,
QChar
*&
out
)
{
a
.
appendTo
(
out
);
}
...
...
@@ -150,6 +151,14 @@ inline void qStringBuilderAppend(QLatin1String a, QChar *&out)
*
out
++
=
QLatin1Char
(
*
s
++
);
}
inline
void
qStringBuilderAppend
(
QStringRef
a
,
QChar
*&
out
)
{
const
int
n
=
a
.
size
();
memcpy
(
out
,
(
char
*
)
a
.
constData
(),
sizeof
(
QChar
)
*
n
);
out
+=
n
;
}
template
<
typename
A
,
typename
B
>
class
QStringBuilderPair
...
...
This diff is collapsed.
Click to expand it.
tests/benchmarks/qstringbuilder/main.cpp
+
14
−
0
View file @
a31ce64b
...
...
@@ -22,6 +22,7 @@ public:
:
l1literal
(
"some string literal"
),
l1string
(
"some string literal"
),
string
(
l1string
),
stringref
(
&
string
,
2
,
10
),
achar
(
'c'
)
{}
...
...
@@ -90,6 +91,18 @@ private slots:
}
void
separator_2c
()
{
SEP
(
"2 string refs"
);
}
void
b_2_stringref
()
{
QBENCHMARK
{
r
=
stringref
%
stringref
;
}
COMPARE
(
r
,
stringref
.
toString
()
+
stringref
.
toString
());
}
void
s_2_stringref
()
{
QBENCHMARK
{
r
=
stringref
.
toString
()
+
stringref
.
toString
();
}
COMPARE
(
r
,
QString
(
stringref
%
stringref
));
}
void
separator_2b
()
{
SEP
(
"3 strings"
);
}
void
b_3_string
()
{
...
...
@@ -188,6 +201,7 @@ private:
const
QLatin1Literal
l1literal
;
const
QLatin1String
l1string
;
const
QString
string
;
const
QStringRef
stringref
;
const
QLatin1Char
achar
;
QString
r
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment