Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
swiftshader
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
swiftshader
Commits
e1d6a80f
Commit
e1d6a80f
authored
Dec 20, 2015
by
Reed Kotler
Committed by
Jim Stichnoth
Dec 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix doxygen for IceClFlagsExtra.h
BUG= R=stichnot@chromium.org Review URL:
https://codereview.chromium.org/1538173002
. Patch from Reed Kotler <rkotlerimgtec@gmail.com>.
parent
995ef04f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
IceClFlagsExtra.h
src/IceClFlagsExtra.h
+30
-0
No files found.
src/IceClFlagsExtra.h
View file @
e1d6a80f
...
@@ -33,52 +33,82 @@ class ClFlagsExtra {
...
@@ -33,52 +33,82 @@ class ClFlagsExtra {
public
:
public
:
ClFlagsExtra
()
=
default
;
ClFlagsExtra
()
=
default
;
/// Get the value of ClFlagsExtra::AlwaysExitSuccess
bool
getAlwaysExitSuccess
()
const
{
return
AlwaysExitSuccess
;
}
bool
getAlwaysExitSuccess
()
const
{
return
AlwaysExitSuccess
;
}
/// Set ClFlagsExtra::AlwaysExitSuccess to a new value
void
setAlwaysExitSuccess
(
bool
NewValue
)
{
AlwaysExitSuccess
=
NewValue
;
}
void
setAlwaysExitSuccess
(
bool
NewValue
)
{
AlwaysExitSuccess
=
NewValue
;
}
/// Get the value of ClFlagsExtra::BuildOnRead
bool
getBuildOnRead
()
const
{
return
BuildOnRead
;
}
bool
getBuildOnRead
()
const
{
return
BuildOnRead
;
}
/// Set ClFlagsExtra::BuildOnRead to a new value
void
setBuildOnRead
(
bool
NewValue
)
{
BuildOnRead
=
NewValue
;
}
void
setBuildOnRead
(
bool
NewValue
)
{
BuildOnRead
=
NewValue
;
}
/// Get the value of ClFlagsExtra::GenerateBuildAtts
bool
getGenerateBuildAtts
()
const
{
return
GenerateBuildAtts
;
}
bool
getGenerateBuildAtts
()
const
{
return
GenerateBuildAtts
;
}
/// Set ClFlagsExtra::GenerateBuildAtts to a new value
void
setGenerateBuildAtts
(
bool
NewValue
)
{
GenerateBuildAtts
=
NewValue
;
}
void
setGenerateBuildAtts
(
bool
NewValue
)
{
GenerateBuildAtts
=
NewValue
;
}
/// Get the value of ClFlagsExtra::LLVMVerboseErrors
bool
getLLVMVerboseErrors
()
const
{
return
LLVMVerboseErrors
;
}
bool
getLLVMVerboseErrors
()
const
{
return
LLVMVerboseErrors
;
}
/// Set ClFlagsExtra::LLVMVerboseErrors to a new value
void
setLLVMVerboseErrors
(
bool
NewValue
)
{
LLVMVerboseErrors
=
NewValue
;
}
void
setLLVMVerboseErrors
(
bool
NewValue
)
{
LLVMVerboseErrors
=
NewValue
;
}
/// Get the value of ClFlagsExtra::BitcodeAsText
bool
getBitcodeAsText
()
const
{
return
BitcodeAsText
;
}
bool
getBitcodeAsText
()
const
{
return
BitcodeAsText
;
}
/// Set ClFlagsExtra::BitcodeAsText to a new value
void
setBitcodeAsText
(
bool
NewValue
)
{
BitcodeAsText
=
NewValue
;
}
void
setBitcodeAsText
(
bool
NewValue
)
{
BitcodeAsText
=
NewValue
;
}
/// Get the value of ClFlagsExtra::InputFileFormat
llvm
::
NaClFileFormat
getInputFileFormat
()
const
{
return
InputFileFormat
;
}
llvm
::
NaClFileFormat
getInputFileFormat
()
const
{
return
InputFileFormat
;
}
/// Set ClFlagsExtra::InputFileFormat to a new value
void
setInputFileFormat
(
llvm
::
NaClFileFormat
NewValue
)
{
void
setInputFileFormat
(
llvm
::
NaClFileFormat
NewValue
)
{
InputFileFormat
=
NewValue
;
InputFileFormat
=
NewValue
;
}
}
/// Get the value of ClFlagsExtra::AppName
const
IceString
&
getAppName
()
const
{
return
AppName
;
}
const
IceString
&
getAppName
()
const
{
return
AppName
;
}
/// Set ClFlagsExtra::AppName to a new value
void
setAppName
(
const
IceString
&
NewValue
)
{
AppName
=
NewValue
;
}
void
setAppName
(
const
IceString
&
NewValue
)
{
AppName
=
NewValue
;
}
/// Get the value of ClFlagsExtra::IRFilename
const
IceString
&
getIRFilename
()
const
{
return
IRFilename
;
}
const
IceString
&
getIRFilename
()
const
{
return
IRFilename
;
}
/// Set ClFlagsExtra::IRFilename to a new value
void
setIRFilename
(
const
IceString
&
NewValue
)
{
IRFilename
=
NewValue
;
}
void
setIRFilename
(
const
IceString
&
NewValue
)
{
IRFilename
=
NewValue
;
}
/// Get the value of ClFlagsExtra::LogFilename
const
IceString
&
getLogFilename
()
const
{
return
LogFilename
;
}
const
IceString
&
getLogFilename
()
const
{
return
LogFilename
;
}
/// Set ClFlagsExtra::LogFilename to a new value
void
setLogFilename
(
const
IceString
&
NewValue
)
{
LogFilename
=
NewValue
;
}
void
setLogFilename
(
const
IceString
&
NewValue
)
{
LogFilename
=
NewValue
;
}
/// Get the value of ClFlagsExtra::OutputFilename
const
IceString
&
getOutputFilename
()
const
{
return
OutputFilename
;
}
const
IceString
&
getOutputFilename
()
const
{
return
OutputFilename
;
}
/// Set ClFlagsExtra::OutputFilename to a new value
void
setOutputFilename
(
const
IceString
&
NewValue
)
{
void
setOutputFilename
(
const
IceString
&
NewValue
)
{
OutputFilename
=
NewValue
;
OutputFilename
=
NewValue
;
}
}
private
:
private
:
/// see anonymous_namespace{IceClFlags.cpp}::AlwaysExitSuccess
bool
AlwaysExitSuccess
=
false
;
bool
AlwaysExitSuccess
=
false
;
/// see anonymous_namespace{IceClFlags.cpp}::BitcodeAsText
bool
BitcodeAsText
=
false
;
bool
BitcodeAsText
=
false
;
/// see anonymous_namespace{IceClFlags.cpp}::BuildOnRead
bool
BuildOnRead
=
false
;
bool
BuildOnRead
=
false
;
/// see anonymous_namespace{IceClFlags.cpp}::GenerateBuildAtts
bool
GenerateBuildAtts
=
false
;
bool
GenerateBuildAtts
=
false
;
/// see anonymous_namespace{IceClFlags.cpp}::LLVMVerboseErrors
bool
LLVMVerboseErrors
=
false
;
bool
LLVMVerboseErrors
=
false
;
/// see anonymous_namespace{IceClFlags.cpp}::InputFileFormat
llvm
::
NaClFileFormat
InputFileFormat
=
llvm
::
LLVMFormat
;
llvm
::
NaClFileFormat
InputFileFormat
=
llvm
::
LLVMFormat
;
/// see anonymous_namespace{IceClFlags.cpp}::AppName
IceString
AppName
=
""
;
IceString
AppName
=
""
;
/// see anonymous_namespace{IceClFlags.cpp}::IRFilename
IceString
IRFilename
=
""
;
IceString
IRFilename
=
""
;
/// see anonymous_namespace{IceClFlags.cpp}::LogFilename
IceString
LogFilename
=
""
;
IceString
LogFilename
=
""
;
/// see anonymous_namespace{IceClFlags.cpp}::OutputFilename
IceString
OutputFilename
=
""
;
IceString
OutputFilename
=
""
;
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment