Home | History | Annotate | Download | only in runtime

Lines Matching defs:type_

147   VarArgs(jmethodID m, va_list var) : m_(m), type_(kTypeVaList), cnt_(0) {
151 VarArgs(jmethodID m, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(0), ptr_(vals) {}
154 if (type_ == kTypeVaList) {
162 type_ = other.type_;
163 if (other.type_ == kTypeVaList) {
175 if (type_ == kTypeVaList) {
190 if (type_ == kTypeVaList) {
206 CHECK(type_ == kTypePtr);
228 VarArgs(jmethodID m, uint32_t cnt, va_list var) : m_(m), type_(kTypeVaList), cnt_(cnt) {
232 VarArgs(jmethodID m, uint32_t cnt, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(cnt), ptr_(vals) {}
240 VarArgsType type_;