OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StringRecTy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/TableGen/
TGParser.cpp
680
case tgtok::String: Lex.Lex(); return
StringRecTy
::get();
681
case tgtok::Code: Lex.Lex(); return
StringRecTy
::get();
861
StringRecTy
*SType = dyn_cast<
StringRecTy
>(LHSt->getType());
939
Type =
StringRecTy
::get();
[
all
...]
Record.cpp
86
StringRecTy
StringRecTy
::Shared;
238
Init *
StringRecTy
::convertValue(UnOpInit *BO) {
243
return UnOpInit::get(UnOpInit::CAST, L, new
StringRecTy
);
250
Init *
StringRecTy
::convertValue(BinOpInit *BO) {
256
return BinOpInit::get(BinOpInit::STRCONCAT, L, R, new
StringRecTy
);
264
Init *
StringRecTy
::convertValue(TypedInit *TI) {
265
if (isa<
StringRecTy
>(TI->getType()))
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
35
class
StringRecTy
;
254
///
StringRecTy
- 'string' - Represent an string value
256
class
StringRecTy
: public RecTy {
257
static
StringRecTy
Shared;
258
StringRecTy
() : RecTy(StringRecTyKind) {}
264
static
StringRecTy
*get() { return &Shared; }
744
: TypedInit(IK_StringInit,
StringRecTy
::get()), Value(V) {}
[
all
...]
Completed in 446 milliseconds