/external/autotest/server/site_tests/cheets_CTS_N/ |
cheets_CTS_N.py | 162 target_method, tradefed_args, session_id=0): 168 @param target_method: the name of the method to be tested. 175 if target_method is not None: 176 test_name += '.' + target_method 180 test_method=target_method, 203 target_method=None, 215 4. Run a specific test method named |target_method| of class 222 @param target_method: the name of the method to be tested. 242 target_method,
|
/art/compiler/dex/ |
inline_method_analyser.cc | 150 ArtMethod* target_method = Runtime::Current()->GetClassLinker()->LookupResolvedMethod( local 152 if (kIsDebugBuild && target_method != nullptr) { 153 CHECK(!target_method->IsStatic()); 154 CHECK(target_method->IsConstructor()); 155 CHECK(target_method->GetDeclaringClass() == method->GetDeclaringClass() || 156 target_method->GetDeclaringClass() == method->GetDeclaringClass()->GetSuperClass()); 158 return target_method; 312 ArtMethod* target_method = GetTargetConstructor(method, &instruction); local 313 if (target_method == nullptr) { 318 if (target_method->GetDeclaringClass() == method->GetDeclaringClass() & [all...] |
/art/compiler/linker/arm/ |
relative_patcher_arm_base.h | 123 UnprocessedMethodCallPatch(uint32_t patch_offset, MethodReference target_method) 124 : patch_offset_(patch_offset), target_method_(target_method) { }
|
relative_patcher_arm_base.cc | 467 MethodReference target_method = unprocessed_method_call_patches_.front().GetTargetMethod(); local 474 if (target_method == method_ref) { 480 auto result = provider_->FindMethodOffset(target_method);
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
Header.java | 9 public static final ByteString TARGET_METHOD = ByteString.encodeUtf8(":method");
|
Hpack.java | 48 new Header(Header.TARGET_METHOD, "GET"), 49 new Header(Header.TARGET_METHOD, "POST"),
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
Http2xStream.java | 46 import static com.squareup.okhttp.internal.framed.Header.TARGET_METHOD; 69 TARGET_METHOD, 92 TARGET_METHOD, 162 result.add(new Header(TARGET_METHOD, request.method())); 202 result.add(new Header(TARGET_METHOD, request.method()));
|
/art/runtime/ |
method_handles.cc | 644 ArtMethod* target_method) 648 // For virtual and interface methods ensure target_method points to 658 ObjPtr<mirror::Class> declaring_class(target_method->GetDeclaringClass()); 667 target_method, kRuntimePointerSize); 672 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) { 674 return WellKnownClasses::StringInitToStringFactory(target_method); 682 ObjPtr<mirror::Class> declaring_class = target_method->GetDeclaringClass(); 684 return target_method; 688 uint16_t vtable_index = target_method->GetMethodIndex() 716 ArtMethod* target_method = method_handle->GetTargetMethod(); local 1042 ArtMethod* target_method = method_handle->GetTargetMethod(); local 1165 ArtMethod* target_method = method_handle->GetTargetMethod(); local [all...] |
class_linker.h | [all...] |
class_linker.cc | 8364 ArtMethod* target_method = nullptr; local [all...] |
/tools/dexter/dexter/ |
experimental.cc | 165 auto target_method = code_ir.Alloc<lir::Method>(ir_method_decl, ir_method_decl->orig_index); local 176 call->operands.push_back(target_method); 224 auto target_method = code_ir.Alloc<lir::Method>(ir_method_decl, ir_method_decl->orig_index); local 269 call->operands.push_back(target_method);
|
/art/compiler/optimizing/ |
code_generator_mips.h | 618 PcRelativePatchInfo* NewBootImageMethodPatch(MethodReference target_method, 620 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method,
|
code_generator_mips64.h | 589 PcRelativePatchInfo* NewBootImageMethodPatch(MethodReference target_method, 591 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method,
|
code_generator_arm64.h | 568 vixl::aarch64::Label* NewBootImageMethodPatch(MethodReference target_method, 575 vixl::aarch64::Label* NewMethodBssEntryPatch(MethodReference target_method, [all...] |
code_generator_arm_vixl.h | 577 PcRelativePatchInfo* NewBootImageMethodPatch(MethodReference target_method); 578 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method); [all...] |
instruction_builder.cc | 433 MethodReference target_method(dex_file_, method_idx); 449 target_method, [all...] |
code_generator_arm64.cc | [all...] |
code_generator_mips64.cc | [all...] |
code_generator_arm_vixl.cc | [all...] |
code_generator_mips.cc | [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
Http2ConnectionTest.java | 358 new Header(Header.TARGET_METHOD, "GET"), 410 new Header(Header.TARGET_METHOD, "GET"),
|
Http2Test.java | 156 new Header(Header.TARGET_METHOD, "GET"),
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
MockWebServer.java | 891 if (name.equals(Header.TARGET_METHOD)) { [all...] |
/external/tensorflow/tensorflow/compiler/xla/python/ |
xla_client.py | [all...] |
/art/dex2oat/linker/ |
oat_writer.cc | 856 MethodReference target_method = patch.TargetMethod(); 857 AddBssReference(target_method, 858 target_method.dex_file->NumMethodIds(), 860 writer_->bss_method_entries_.Overwrite(target_method, /* placeholder */ 0u); [all...] |