Coverage Report

Created: 2026-05-16 09:25

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/sal/rtl/strbuf.cxx
Line
Count
Source
1
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2
/*
3
 * This file is part of the LibreOffice project.
4
 *
5
 * This Source Code Form is subject to the terms of the Mozilla Public
6
 * License, v. 2.0. If a copy of the MPL was not distributed with this
7
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
 *
9
 * This file incorporates work covered by the following license notice:
10
 *
11
 *   Licensed to the Apache Software Foundation (ASF) under one or more
12
 *   contributor license agreements. See the NOTICE file distributed
13
 *   with this work for additional information regarding copyright
14
 *   ownership. The ASF licenses this file to you under the Apache
15
 *   License, Version 2.0 (the "License"); you may not use this file
16
 *   except in compliance with the License. You may obtain a copy of
17
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18
 */
19
20
#include <config_probes.h>
21
#include <rtl/strbuf.h>
22
23
#if USE_SDT_PROBES
24
#define RTL_LOG_STRING_BITS 8
25
#endif
26
27
#include "strtmpl.hxx"
28
29
/*************************************************************************
30
 *  rtl_stringbuffer_newFromStr_WithLength
31
 */
32
void SAL_CALL rtl_stringbuffer_newFromStr_WithLength( rtl_String ** newStr,
33
                                                      const char * value,
34
                                                      sal_Int32 count )
35
0
{
36
0
    rtl::str::stringbuffer_newFromStr_WithLength(newStr, value, count);
37
0
}
38
39
/*************************************************************************
40
 *  rtl_stringbuffer_newFromStringBuffer
41
 */
42
sal_Int32 SAL_CALL rtl_stringbuffer_newFromStringBuffer( rtl_String ** newStr,
43
                                                         sal_Int32 capacity,
44
                                                         rtl_String * oldStr )
45
0
{
46
0
    return rtl::str::stringbuffer_newFromStringBuffer(newStr, capacity, oldStr);
47
0
}
48
49
/*************************************************************************
50
 *  rtl_stringbuffer_ensureCapacity
51
 */
52
void SAL_CALL rtl_stringbuffer_ensureCapacity
53
    (rtl_String ** This, sal_Int32* capacity, sal_Int32 minimumCapacity)
54
98
{
55
98
    rtl::str::stringbuffer_ensureCapacity(This, capacity, minimumCapacity);
56
98
}
57
58
/*************************************************************************
59
 *  rtl_stringbuffer_insert
60
 */
61
void SAL_CALL rtl_stringbuffer_insert( rtl_String ** This,
62
                                       sal_Int32 * capacity,
63
                                       sal_Int32 offset,
64
                                       const char * str,
65
                                       sal_Int32 len )
66
190M
{
67
190M
    rtl::str::stringbuffer_insert(This, capacity, offset, str, len);
68
190M
}
69
70
/*************************************************************************
71
 *  rtl_stringbuffer_remove
72
 */
73
void SAL_CALL rtl_stringbuffer_remove( rtl_String ** This,
74
                                       sal_Int32 start,
75
                                       sal_Int32 len )
76
0
{
77
0
    rtl::str::stringbuffer_remove(This, start, len);
78
0
}
79
80
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */