Searched defs:Signature (Results 1 - 2 of 2) sorted by relevance

/art/compiler/dex/
H A Dtype_inference.cc407 Signature(cu_->dex_file, cu_->method_idx, (cu_->access_flags & kAccStatic) != 0, alloc)),
628 TypeInference::MethodSignature TypeInference::Signature(const DexFile* dex_file, function in class:art::TypeInference
660 signatures[i] = Signature(current_dex_file, method_idx, info.IsStatic(), alloc);
/art/runtime/
H A Ddex_file.h48 class Signature;
633 const Signature GetMethodSignature(const MethodId& method_id) const;
740 // Create a Signature from the given string signature or return Signature::NoSignature if not
742 const Signature CreateSignature(const StringPiece& signature) const;
1090 class Signature : public ValueObject { class in namespace:art
1094 static Signature NoSignature() {
1095 return Signature();
1098 bool operator==(const Signature& rhs) const;
1099 bool operator!=(const Signature
1106 Signature(const DexFile* dex, const DexFile::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) { function in class:art::Signature
1109 Signature() : dex_file_(nullptr), proto_id_(nullptr) { function in class:art::Signature
[all...]

Completed in 71 milliseconds