Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
llvm-epi-0.8
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Roger Ferrer
llvm-epi-0.8
Commits
f519628a
Commit
f519628a
authored
12 years ago
by
Enrico Granata
Browse files
Options
Downloads
Patches
Plain Diff
Adding to files that were missing in the previous commit
llvm-svn: 163156
parent
3467d80b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lldb/include/lldb/Core/CXXFormatterFunctions.h
+57
-0
57 additions, 0 deletions
lldb/include/lldb/Core/CXXFormatterFunctions.h
lldb/source/Core/CXXFormatterFunctions.cpp
+680
-0
680 additions, 0 deletions
lldb/source/Core/CXXFormatterFunctions.cpp
with
737 additions
and
0 deletions
lldb/include/lldb/Core/CXXFormatterFunctions.h
0 → 100644
+
57
−
0
View file @
f519628a
//===-- CXXFormatterFunctions.h------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_CXXFormatterFunctions_h_
#define liblldb_CXXFormatterFunctions_h_
#include
"lldb/lldb-forward.h"
namespace
lldb_private
{
namespace
formatters
{
bool
CodeRunning_Fetcher
(
ValueObject
&
valobj
,
const
char
*
target_type
,
const
char
*
selector
,
uint64_t
&
value
);
template
<
bool
name_entries
>
bool
NSDictionary_SummaryProvider
(
ValueObject
&
valobj
,
Stream
&
stream
);
bool
NSArray_SummaryProvider
(
ValueObject
&
valobj
,
Stream
&
stream
);
template
<
bool
needs_at
>
bool
NSData_SummaryProvider
(
ValueObject
&
valobj
,
Stream
&
stream
);
bool
NSNumber_SummaryProvider
(
ValueObject
&
valobj
,
Stream
&
stream
);
bool
NSString_SummaryProvider
(
ValueObject
&
valobj
,
Stream
&
stream
);
extern
template
bool
NSDictionary_SummaryProvider
<
true
>
(
ValueObject
&
,
Stream
&
)
;
extern
template
bool
NSDictionary_SummaryProvider
<
false
>
(
ValueObject
&
,
Stream
&
)
;
extern
template
bool
NSData_SummaryProvider
<
true
>
(
ValueObject
&
,
Stream
&
)
;
extern
template
bool
NSData_SummaryProvider
<
false
>
(
ValueObject
&
,
Stream
&
)
;
}
}
#endif
This diff is collapsed.
Click to expand it.
lldb/source/Core/CXXFormatterFunctions.cpp
0 → 100644
+
680
−
0
View file @
f519628a
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