OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UnsetInit
(Results
1 - 7
of
7
) sorted by null
/external/llvm/utils/TableGen/
OptParserEmitter.cpp
91
if (isa<
UnsetInit
>(R.getValueInit("EnumName")))
189
if (!isa<
UnsetInit
>(R.getValueInit("HelpText"))) {
272
if (!isa<
UnsetInit
>(R.getValueInit("HelpText"))) {
281
if (!isa<
UnsetInit
>(R.getValueInit("MetaVarName")))
DAGISelMatcherGen.cpp
222
// An
UnsetInit
represents a named node without any constraints.
223
if (isa<
UnsetInit
>(N->getLeafValue())) {
[
all
...]
AsmMatcherEmitter.cpp
[
all
...]
CodeGenDAGPatterns.cpp
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
402
///
UnsetInit
- ? - Represents an uninitialized value
404
class
UnsetInit
: public Init {
405
UnsetInit
() : Init(IK_UnsetInit) {}
406
UnsetInit
(const
UnsetInit
&) = delete;
407
UnsetInit
&operator=(const
UnsetInit
&Other) = delete;
413
static
UnsetInit
*get();
418
return const_cast<
UnsetInit
*>(this);
[
all
...]
/external/llvm/lib/TableGen/
Record.cpp
216
UnsetInit
*
UnsetInit
::get() {
217
static
UnsetInit
TheInit;
221
Init *
UnsetInit
::convertInitializerTo(RecTy *Ty) const {
226
NewBits[i] =
UnsetInit
::get();
232
return const_cast<
UnsetInit
*>(this);
341
if (RV || !isa<
UnsetInit
>(After))
568
if (IRV || !isa<
UnsetInit
>(E))
[
all
...]
TGParser.cpp
[
all
...]
Completed in 80 milliseconds