HomeSort by relevance Sort by last modified time
    Searched refs:IsStatic (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/net/spdy/
hpack_entry_test.cc 38 if (entry.IsStatic()) {
62 EXPECT_TRUE(entry.IsStatic());
72 EXPECT_FALSE(entry.IsStatic());
82 EXPECT_FALSE(entry.IsStatic());
hpack_entry.h 58 bool IsStatic() const { return type_ == STATIC; }
hpack_entry.cc 52 "\", " + (IsStatic() ? "static" : "dynamic") + " }";
hpack_decoder.cc 180 } else if (entry->IsStatic()) {
  /art/compiler/jni/quick/
calling_convention.h 104 bool IsStatic() const {
112 if (IsStatic()) {
122 if (IsStatic()) {
132 if (IsStatic()) {
141 if (IsStatic()) {
150 if (IsStatic()) {
171 if (IsStatic()) {
calling_convention.cc 74 return IsStatic() || (itr_args_ != 0);
125 return NumReferenceArgs() + (IsStatic() ? 1 : 0);
244 return IsStatic() ? 2 : 1;
  /art/compiler/sea_ir/types/
type_inference.h 78 bool IsStatic() const {
  /art/runtime/
method_helper.h 83 return (method_->IsStatic() ? 0 : 1) + GetShortyLength() - 1;
89 if (GetMethod()->IsStatic()) {
  /art/runtime/mirror/
art_field-inl.h 67 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
77 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
87 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
97 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
107 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
117 DCHECK(!IsStatic() || (object == GetDeclaringClass()) || !Runtime::Current()->IsStarted());
247 DCHECK(IsStatic());
258 DCHECK(IsStatic());
art_method.cc 70 } else if (IsStatic()) {
105 if (IsStatic()) {
283 if (IsStatic()) {
310 if (!IsStatic()) {
art_method-inl.h 157 return !IsStatic();
159 return !IsDirect() || IsStatic();
167 return IsConstructor() || IsStatic() || GetDeclaringClass()->IsInterface();
  /art/compiler/driver/
dex_compilation_unit.h 93 bool IsStatic() const {
compiler_driver-inl.h 74 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
98 DCHECK(!resolved_field->IsStatic());
111 DCHECK(resolved_field->IsStatic());
317 if (!resolved_method->IsStatic()) {
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 33 if (method->IsStatic()) {
  /art/compiler/jni/quick/arm/
calling_convention_arm.cc 113 for (size_t cur_arg = IsStatic() ? 0 : 1, cur_reg = 2; cur_arg < NumArgs(); cur_arg++) {
205 size_t static_args = IsStatic() ? 1 : 0; // count jclass
  /art/compiler/jni/quick/mips/
calling_convention_mips.cc 113 for (size_t cur_arg = IsStatic() ? 0 : 1, cur_reg = 2; cur_arg < NumArgs(); cur_arg++) {
208 size_t static_args = IsStatic() ? 1 : 0; // count jclass
  /art/runtime/entrypoints/quick/
quick_instrumentation_entrypoints.cc 44 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? nullptr : this_object,
  /frameworks/compile/slang/
slang_rs_reflection.h 131 bool startClass(AccessModifier AM, bool IsStatic,
136 void startFunction(AccessModifier AM, bool IsStatic, const char *ReturnType,
140 void startFunction(AccessModifier AM, bool IsStatic, const char *ReturnType,
  /art/compiler/dex/
mir_field_info.h 42 bool IsStatic() const {
mir_method_info.h 38 bool IsStatic() const {
dex_to_dex_compiler.cc 159 if (!unit_.IsConstructor() || unit_.IsStatic()) {
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 157 size_t static_args = IsStatic() ? 1 : 0; // count jclass
  /art/runtime/interpreter/
interpreter.cc 138 if (method->IsStatic()) {
421 if (!method->IsStatic()) {
433 if (!method->IsStatic()) {
462 if (method->IsStatic() && UNLIKELY(!method->GetDeclaringClass()->IsInitialized())) {
484 args = shadow_frame->GetVRegArgs(method->IsStatic() ? 0 : 1);
551 if (method->IsStatic()) {
572 Object* receiver = method->IsStatic() ? nullptr : shadow_frame->GetVRegReference(0);
573 uint32_t* args = shadow_frame->GetVRegArgs(method->IsStatic() ? 0 : 1);
  /art/compiler/jni/portable/
jni_compiler.cc 64 const bool is_static = dex_compilation_unit_->IsStatic();
262 const bool is_static = dex_compilation_unit_->IsStatic();
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 215 if (method->IsStatic() && !method->GetDeclaringClass()->IsInitialized()) {
392 CHECK(called->IsStatic()) << PrettyMethod(called);

Completed in 683 milliseconds

1 2 3