OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ERT
(Results
1 - 7
of
7
) sorted by null
/frameworks/compile/slang/
slang_rs_reflection.h
284
const RSExportRecordType *
ERT
,
286
void genTypeItemClass(Context &C, const RSExportRecordType *
ERT
);
287
void genTypeClassConstructor(Context &C, const RSExportRecordType *
ERT
);
288
void genTypeClassCopyToArray(Context &C, const RSExportRecordType *
ERT
);
289
void genTypeClassCopyToArrayLocal(Context &C, const RSExportRecordType *
ERT
);
290
void genTypeClassItemSetter(Context &C, const RSExportRecordType *
ERT
);
291
void genTypeClassItemGetter(Context &C, const RSExportRecordType *
ERT
);
292
void genTypeClassComponentSetter(Context &C, const RSExportRecordType *
ERT
);
293
void genTypeClassComponentGetter(Context &C, const RSExportRecordType *
ERT
);
294
void genTypeClassCopyAll(Context &C, const RSExportRecordType *
ERT
);
[
all
...]
slang_rs_export_func.cpp
138
const RSExportRecordType *
ERT
= mParamPacketType;
140
if (
ERT
->getFields().size() != ParamTy->getNumElements())
147
for (RSExportRecordType::const_field_iterator FI =
ERT
->fields_begin(),
148
FE =
ERT
->fields_end(); FI != FE; FI++, Index++) {
slang_rs_reflection.cpp
525
const RSExportRecordType *
ERT
=
532
<< " = new " <<
ERT
->getElementName()
535
for (RSExportRecordType::const_field_iterator I =
ERT
->fields_begin(),
536
E =
ERT
->fields_end();
631
const RSExportRecordType *
ERT
= EF->getParamPacketType();
634
if (genCreateFieldPacker(C,
ERT
, FieldPackerName.c_str()))
635
genPackVarOfType(C,
ERT
, NULL, FieldPackerName.c_str());
669
const RSExportRecordType *
ERT
= EF->getParamPacketType();
670
if (
ERT
) {
765
if (
ERT
) {
[
all
...]
slang_rs.cpp
110
RSExportRecordType *
ERT
= static_cast<RSExportRecordType *>(ET);
114
if (
ERT
->isArtificial())
117
// Key to lookup
ERT
in ReflectedDefinitions
118
llvm::StringRef RDKey(
ERT
->getName());
147
if (Reflected->equals(
ERT
)) {
150
BI =
ERT
->fields_begin();
171
ME->setValue(std::make_pair(
ERT
, CurInputFile));
176
// Take the ownership of
ERT
such that it won't be freed in ~RSContext().
177
ERT
->keep();
slang_rs_reflection_cpp.cpp
253
const RSExportRecordType *
ERT
= ef->getParamPacketType();
254
if (
ERT
) {
387
const RSExportRecordType *
ERT
= ef->getParamPacketType();
388
if (
ERT
) {
416
if (
ERT
) {
417
if (genCreateFieldPacker(
ERT
, FieldPackerName.c_str())) {
418
genPackVarOfType(
ERT
, NULL, FieldPackerName.c_str());
736
const RSExportRecordType *
ERT
=
741
for (RSExportRecordType::const_field_iterator I =
ERT
->fields_begin(),
742
E =
ERT
->fields_end()
[
all
...]
slang_rs_backend.cpp
450
const RSExportRecordType *
ERT
=
469
for (RSExportRecordType::const_field_iterator FI =
ERT
->fields_begin(),
470
FE =
ERT
->fields_end();
slang_rs_export_type.cpp
[
all
...]
Completed in 903 milliseconds