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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/oo/
Resolve.h 46 extern "C" ClassObject* dvmResolveClass(const ClassObject* referrer,
58 extern "C" Method* dvmResolveMethod(const ClassObject* referrer, u4 methodIdx,
66 Method* dvmResolveInterfaceMethod(const ClassObject* referrer, u4 methodIdx);
73 extern "C" InstField* dvmResolveInstField(const ClassObject* referrer,
83 extern "C" StaticField* dvmResolveStaticField(const ClassObject* referrer,
91 extern "C" StringObject* dvmResolveString(const ClassObject* referrer, u4 stringIdx);
Resolve.cpp 37 * string. It might be in the same DEX file as "referrer", in a different
49 * Note that "referrer" may be in the process of being linked.
63 ClassObject* dvmResolveClass(const ClassObject* referrer, u4 classIdx,
66 DvmDex* pDvmDex = referrer->pDvmDex;
78 LOGVV("--- resolving class %u (referrer=%s cl=%p)",
79 classIdx, referrer->descriptor, referrer->classLoader);
95 resClass = dvmFindClassNoInit(className, referrer->classLoader);
100 * If the referrer was pre-verified, the resolved class must come
119 IS_CLASS_FLAG_SET(referrer, CLASS_ISPREVERIFIED)
    [all...]
  /art/runtime/entrypoints/portable/
portable_dexcache_entrypoints.cc 25 mirror::ArtMethod* referrer,
28 return ResolveVerifyAndClinit(type_idx, referrer, thread, true, false);
32 mirror::ArtMethod* referrer,
35 return ResolveVerifyAndClinit(type_idx, referrer, thread, false, false);
39 mirror::ArtMethod* referrer,
44 return ResolveVerifyAndClinit(type_idx, referrer, thread, false, true);
47 extern "C" mirror::Object* art_portable_resolve_string_from_code(mirror::ArtMethod* referrer,
50 return ResolveStringFromCode(referrer, string_idx);
portable_alloc_entrypoints.cc 24 mirror::ArtMethod* referrer,
27 return AllocObjectFromCode(type_idx, referrer, thread, false);
31 mirror::ArtMethod* referrer,
34 return AllocObjectFromCode(type_idx, referrer, thread, true);
38 mirror::ArtMethod* referrer,
42 return AllocArrayFromCode(type_idx, referrer, length, self, false);
46 mirror::ArtMethod* referrer,
50 return AllocArrayFromCode(type_idx, referrer, length, self, true);
54 mirror::ArtMethod* referrer,
58 return CheckAndAllocArrayFromCode(type_idx, referrer, length, thread, false)
    [all...]
portable_field_entrypoints.cc 25 mirror::ArtMethod* referrer,
29 referrer,
37 referrer,
50 mirror::ArtMethod* referrer,
53 mirror::ArtField* field = FindFieldFast(field_idx, referrer, StaticPrimitiveWrite, sizeof(uint64_t));
59 referrer,
72 mirror::ArtMethod* referrer,
75 mirror::ArtField* field = FindFieldFast(field_idx, referrer, StaticObjectWrite,
81 field = FindFieldFromCode(field_idx, referrer, Thread::Current(),
91 mirror::ArtMethod* referrer)
    [all...]
portable_invoke_entrypoints.cc 58 mirror::ArtMethod* referrer,
61 return FindMethodHelper(method_idx, this_object, referrer, true, kStatic, thread);
66 mirror::ArtMethod* referrer,
69 return FindMethodHelper(method_idx, this_object, referrer, true, kDirect, thread);
74 mirror::ArtMethod* referrer,
77 return FindMethodHelper(method_idx, this_object, referrer, true, kVirtual, thread);
82 mirror::ArtMethod* referrer,
85 return FindMethodHelper(method_idx, this_object, referrer, true, kSuper, thread);
90 mirror::ArtMethod* referrer,
93 return FindMethodHelper(method_idx, this_object, referrer, true, kInterface, thread)
    [all...]
  /external/chromium/chrome/browser/cocoa/
file_metadata.h 15 // |source| should be the source URL for the download, and |referrer| should be
18 const GURL& referrer);
22 // |source| should be the source URL for the download, and |referrer| should be
25 const GURL& referrer);
  /dalvik/vm/analysis/
Optimize.h 37 ClassObject* dvmOptResolveClass(ClassObject* referrer, u4 classIdx,
39 Method* dvmOptResolveMethod(ClassObject* referrer, u4 methodIdx,
41 Method* dvmOptResolveInterfaceMethod(ClassObject* referrer, u4 methodIdx);
42 InstField* dvmOptResolveInstField(ClassObject* referrer, u4 ifieldIdx,
44 StaticField* dvmOptResolveStaticField(ClassObject* referrer, u4 sfieldIdx,
  /external/chromium_org/content/public/browser/
page_navigator.cc 11 const Referrer& referrer,
16 referrer(referrer),
29 const Referrer& referrer,
36 referrer(referrer),
page_navigator.h 19 #include "content/public/common/referrer.h"
29 const Referrer& referrer,
34 const Referrer& referrer,
42 // The URL/referrer to be opened.
44 Referrer referrer; member in struct:content::OpenURLParams
navigation_controller.cc 33 referrer(other.referrer),
52 referrer = other.referrer;
  /art/runtime/entrypoints/quick/
quick_dexcache_entrypoints.cc 29 const mirror::ArtMethod* referrer,
37 return ResolveVerifyAndClinit(type_idx, referrer, self, true, false);
41 const mirror::ArtMethod* referrer,
46 return ResolveVerifyAndClinit(type_idx, referrer, self, false, false);
50 const mirror::ArtMethod* referrer,
57 return ResolveVerifyAndClinit(type_idx, referrer, self, false, true);
60 extern "C" mirror::String* artResolveStringFromCode(mirror::ArtMethod* referrer,
65 return ResolveStringFromCode(referrer, string_idx);
quick_field_entrypoints.cc 29 const mirror::ArtMethod* referrer,
32 mirror::ArtField* field = FindFieldFast(field_idx, referrer, StaticPrimitiveRead,
38 field = FindFieldFromCode(field_idx, referrer, self, StaticPrimitiveRead, sizeof(int32_t), true);
46 const mirror::ArtMethod* referrer,
49 mirror::ArtField* field = FindFieldFast(field_idx, referrer, StaticPrimitiveRead,
55 field = FindFieldFromCode(field_idx, referrer, self, StaticPrimitiveRead, sizeof(int64_t), true);
63 const mirror::ArtMethod* referrer,
66 mirror::ArtField* field = FindFieldFast(field_idx, referrer, StaticObjectRead,
72 field = FindFieldFromCode(field_idx, referrer, self, StaticObjectRead, sizeof(mirror::Object*),
81 const mirror::ArtMethod* referrer, Thread* self
237 mirror::ArtMethod* referrer = local
    [all...]
  /external/chromium_org/content/browser/download/
file_metadata_mac.h 17 // |source| should be the source URL for the download, and |referrer| should be
20 const GURL& referrer);
24 // |source| should be the source URL for the download, and |referrer| should be
27 const GURL& referrer);
file_metadata_linux.cc 18 const char kReferrerURLAttrName[] = "user.xdg.referrer.url";
31 const GURL& referrer) {
37 if (referrer.is_valid()) {
39 referrer.spec().c_str(), referrer.spec().length(), 0);
file_metadata_linux.h 19 // The referrer URL attribute is not part of the XDG standard,
26 // |source| should be the source URL for the download, and |referrer| should be
30 const GURL& referrer);
  /external/clang/test/CodeGenCXX/
reference-in-block-args.cpp 8 int referrer; member in struct:ST
22 INNER_BLOCK(^() { return ref.referrer + ref.filler; });
  /art/runtime/
common_throws.h 67 void ThrowClassFormatError(const mirror::Class* referrer, const char* fmt, ...)
73 void ThrowIllegalAccessErrorClass(mirror::Class* referrer, mirror::Class* accessed)
76 void ThrowIllegalAccessErrorClassForMethodDispatch(mirror::Class* referrer, mirror::Class* accessed,
82 void ThrowIllegalAccessErrorMethod(mirror::Class* referrer, mirror::ArtMethod* accessed)
85 void ThrowIllegalAccessErrorField(mirror::Class* referrer, mirror::ArtField* accessed)
88 void ThrowIllegalAccessErrorFinalField(const mirror::ArtMethod* referrer,
92 void ThrowIllegalAccessError(mirror::Class* referrer, const char* fmt, ...)
105 const mirror::ArtMethod* referrer)
110 const mirror::ArtMethod* referrer)
114 const mirror::ArtMethod* referrer)
    [all...]
common_throws.cc 36 static void AddReferrerLocation(std::ostream& os, const mirror::Class* referrer)
38 if (referrer != NULL) {
39 ClassHelper kh(referrer);
42 os << " (declaration of '" << PrettyDescriptor(referrer)
49 const mirror::Class* referrer, const char* fmt, va_list* args = NULL)
59 AddReferrerLocation(msg, referrer);
123 void ThrowClassFormatError(const mirror::Class* referrer, const char* fmt, ...) {
126 ThrowException(NULL, "Ljava/lang/ClassFormatError;", referrer, fmt, &args);
131 void ThrowIllegalAccessErrorClass(mirror::Class* referrer, mirror::Class* accessed) {
133 msg << "Illegal class access: '" << PrettyDescriptor(referrer) << "' attempting to access '
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
SecurityPolicy.cpp 52 bool SecurityPolicy::shouldHideReferrer(const KURL& url, const String& referrer)
54 bool referrerIsSecureURL = protocolIs(referrer, "https");
55 bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http");
68 String SecurityPolicy::generateReferrerHeader(ReferrerPolicy referrerPolicy, const KURL& url, const String& referrer)
70 if (referrer.isEmpty())
77 return referrer;
79 String origin = SecurityOrigin::createFromString(referrer)->toString();
83 // to turn it into a canonical URL we can use as referrer.
90 return shouldHideReferrer(url, referrer) ? String() : referrer;
    [all...]
SecurityPolicy.h 43 // True if the referrer should be omitted according to the
44 // ReferrerPolicyDefault. If you intend to send a referrer header, you
46 static bool shouldHideReferrer(const KURL&, const String& referrer);
48 // Returns the referrer modified according to the referrer policy for a
49 // navigation to a given URL. If the referrer returned is empty, the
50 // referrer header should be omitted.
51 static String generateReferrerHeader(ReferrerPolicy, const KURL&, const String& referrer);
  /external/chromium_org/components/navigation_interception/
navigation_params.cc 15 const content::Referrer& referrer,
21 referrer_(referrer),
34 referrer_ = other.referrer();
navigation_params.h 10 #include "content/public/common/referrer.h"
18 const content::Referrer& referrer,
28 const content::Referrer& referrer() const { return referrer_; } function in class:navigation_interception::NavigationParams
38 content::Referrer referrer_;
  /external/chromium_org/third_party/WebKit/Source/platform/
Prerender.h 61 static PassRefPtr<Prerender> create(PrerenderClient*, const KURL&, const String& referrer, ReferrerPolicy);
71 const String& referrer() const { return m_referrer; } function in class:WebCore::Prerender
83 Prerender(PrerenderClient*, const KURL&, const String& referrer, ReferrerPolicy);
Prerender.cpp 41 PassRefPtr<Prerender> Prerender::create(PrerenderClient* client, const KURL& url, const String& referrer, ReferrerPolicy policy)
43 return adoptRef(new Prerender(client, url, referrer, policy));
46 Prerender::Prerender(PrerenderClient* client, const KURL& url, const String& referrer, ReferrerPolicy policy)
49 , m_referrer(referrer)

Completed in 523 milliseconds

1 2 3 4 5 6 7 8 91011>>