OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cxstring
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXString.h
1
//===-
CXString
.h - Routines for manipulating CXStrings -------------------===//
25
namespace
cxstring
{
namespace in namespace:clang
29
/// Create a
CXString
object for an empty "" string.
30
CXString
createEmpty();
32
/// Create a
CXString
object for an NULL string.
35
CXString
createNull();
37
/// Create a
CXString
object from a nul-terminated C string. New
38
///
CXString
may contain a pointer to \p String.
41
CXString
createRef(const char *String);
43
/// Create a
CXString
object from a nul-terminated C string. Ne
[
all
...]
CXString.cpp
1
//===-
CXString
.cpp - Routines for manipulating CXStrings -----------------===//
15
#include "
CXString
.h"
23
/// Describes the kind of underlying data in
CXString
.
25
///
CXString
contains a 'const char *' that it doesn't own.
28
///
CXString
contains a 'const char *' that it allocated with malloc().
31
///
CXString
contains a CXStringBuf that needs to be returned to the
37
namespace
cxstring
{
namespace in namespace:clang
43
CXString
createEmpty() {
44
CXString
Str;
50
CXString
createNull()
[
all
...]
Completed in 24 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026