Lines Matching refs:var
104 #define LOAD_STRING(var, idx, error) \ argument
105 const char* var = CheckLoadStringByIdx(idx, error); \
106 if (UNLIKELY(var == nullptr)) { \
111 #define LOAD_STRING_BY_TYPE(var, type_idx, error) \ argument
112 const char* var = CheckLoadStringByTypeIdx(type_idx, error); \
113 if (UNLIKELY(var == nullptr)) { \
118 #define LOAD_METHOD(var, idx, error_string, error_stmt) \ argument
119 const DexFile::MethodId* var = CheckLoadMethodId(idx, error_string); \
120 if (UNLIKELY(var == nullptr)) { \
125 #define LOAD_FIELD(var, idx, fmt, error_stmt) \ argument
126 const DexFile::FieldId* var = CheckLoadFieldId(idx, fmt); \
127 if (UNLIKELY(var == nullptr)) { \