HomeSort by relevance Sort by last modified time
    Searched full:friend (Results 126 - 150 of 5617) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/content/browser/streams/
stream_context.h 42 friend class base::DeleteHelper<StreamContext>;
43 friend class base::RefCountedThreadSafe<StreamContext,
45 friend struct StreamContextDeleter;
  /external/chromium_org/net/url_request/
url_request_context_getter.h 36 friend class base::RefCountedThreadSafe<URLRequestContextGetter,
38 friend class base::DeleteHelper<URLRequestContextGetter>;
39 friend struct URLRequestContextGetterTraits;
  /external/chromium_org/webkit/browser/quota/
quota_task.h 55 friend class base::DeleteHelper<QuotaTask>;
56 friend class QuotaTaskObserver;
66 friend class QuotaTask;
  /external/clang/test/CXX/over/over.oper/over.literal/
p5.cpp 10 friend int operator "" _a(const char *, size_t);
12 friend U operator "" _a(const T *, size_t); // expected-error {{parameter}}
15 friend void operator "" _b(); // expected-error {{parameter}}
  /external/chromium_org/third_party/skia/include/core/
SkBounder.h 84 friend class SkAutoBounderCommit;
85 friend class SkDraw;
86 friend class SkDrawIter;
87 friend struct Draw1Glyph;
88 friend class SkMaskFilter;
  /external/skia/include/core/
SkBounder.h 84 friend class SkAutoBounderCommit;
85 friend class SkDraw;
86 friend class SkDrawIter;
87 friend struct Draw1Glyph;
88 friend class SkMaskFilter;
  /external/chromium_org/chrome/browser/browsing_data/
local_data_container.h 80 friend class CookiesTreeModel;
81 friend class CookieTreeAppCacheNode;
82 friend class CookieTreeCookieNode;
83 friend class CookieTreeDatabaseNode;
84 friend class CookieTreeLocalStorageNode;
85 friend class CookieTreeSessionStorageNode;
86 friend class CookieTreeIndexedDBNode;
87 friend class CookieTreeFileSystemNode;
88 friend class CookieTreeQuotaNode;
89 friend class CookieTreeServerBoundCertNode
    [all...]
  /art/runtime/
thread_pool.h 59 friend class ThreadPool;
127 friend class ThreadPoolWorker;
128 friend class WorkStealingWorker;
146 friend class WorkStealingWorker;
164 friend class WorkStealingThreadPool;
181 friend class WorkStealingWorker;
  /external/chromium_org/base/metrics/
statistics_recorder.h 83 friend struct DefaultLazyInstanceTraits<StatisticsRecorder>;
84 friend class HistogramBaseTest;
85 friend class HistogramTest;
86 friend class SparseHistogramTest;
87 friend class StatisticsRecorderTest;
90 // use Initialize to do this. But in test code, you can friend this class and
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 35 friend class base::RefCountedThreadSafe<Message>;
73 friend class DevToolsProtocol;
89 friend class base::RefCountedThreadSafe<Response>;
90 friend class Command;
91 friend class DevToolsProtocol;
112 friend class DevToolsProtocol;
  /external/chromium_org/content/common/
inter_process_time_ticks_converter.h 82 friend class InterProcessTimeTicksConverter;
83 friend class LocalTimeTicks;
105 friend class InterProcessTimeTicksConverter;
119 friend class InterProcessTimeTicksConverter;
120 friend class RemoteTimeTicks;
138 friend class InterProcessTimeTicksConverter;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node.h 118 friend class Mount;
119 friend class MountDev;
120 friend class MountHtml5Fs;
121 friend class MountHttp;
122 friend class MountMem;
123 friend class MountNodeDir;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseBackendBase.h 93 friend class ChangeVersionWrapper;
94 friend class SQLStatementBackend;
95 friend class SQLStatementSync;
96 friend class SQLTransactionBackend;
97 friend class SQLTransactionBackendSync;
149 friend class DatabaseServer;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_variable.c 53 for (var_ptr = var; var_ptr; var_ptr = var_ptr->Friend) {
227 var = var->Friend;
263 struct rc_variable * friend)
265 assert(var->Dst.Index == friend->Dst.Index);
266 while(var->Friend) {
267 var = var->Friend;
269 var->Friend = friend;
301 for (var = list_ptr->Item; var; var = var->Friend) {
352 * "friends" and they are linked together via the Friend attribute
483 struct rc_variable * friend; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFloat.h 56 friend bool operator==(const SkFloat& a, const SkFloat& b) { return a.fPacked == b.fPacked; }
57 friend bool operator!=(const SkFloat& a, const SkFloat& b) { return a.fPacked != b.fPacked; }
58 friend bool operator<(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) < 0; }
59 friend bool operator<=(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) <= 0; }
60 friend bool operator>(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) > 0; }
61 friend bool operator>=(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) >= 0; }
  /external/clang/test/SemaCXX/
access.cpp 48 friend W<int>;
79 template<int> friend struct B;
81 template<template<int> class T> friend struct TT;
82 template<typename T> friend void funct(T);
117 template<typename T> friend struct X;
130 friend struct X;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.c 53 for (var_ptr = var; var_ptr; var_ptr = var_ptr->Friend) {
227 var = var->Friend;
263 struct rc_variable * friend)
265 assert(var->Dst.Index == friend->Dst.Index);
266 while(var->Friend) {
267 var = var->Friend;
269 var->Friend = friend;
301 for (var = list_ptr->Item; var; var = var->Friend) {
352 * "friends" and they are linked together via the Friend attribute
483 struct rc_variable * friend; local
    [all...]
  /external/skia/src/core/
SkFloat.h 56 friend bool operator==(const SkFloat& a, const SkFloat& b) { return a.fPacked == b.fPacked; }
57 friend bool operator!=(const SkFloat& a, const SkFloat& b) { return a.fPacked != b.fPacked; }
58 friend bool operator<(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) < 0; }
59 friend bool operator<=(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) <= 0; }
60 friend bool operator>(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) > 0; }
61 friend bool operator>=(const SkFloat& a, const SkFloat& b) { return Cmp(a.fPacked, b.fPacked) >= 0; }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/
test_allocator.h 27 template <class U> friend class test_allocator;
73 friend bool operator==(const test_allocator& x, const test_allocator& y)
75 friend bool operator!=(const test_allocator& x, const test_allocator& y)
84 template <class U> friend class other_allocator;
101 friend bool operator==(const other_allocator& x, const other_allocator& y)
103 friend bool operator!=(const other_allocator& x, const other_allocator& y)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/
test_allocator.h 27 template <class U> friend class test_allocator;
73 friend bool operator==(const test_allocator& x, const test_allocator& y)
75 friend bool operator!=(const test_allocator& x, const test_allocator& y)
84 template <class U> friend class other_allocator;
101 friend bool operator==(const other_allocator& x, const other_allocator& y)
103 friend bool operator!=(const other_allocator& x, const other_allocator& y)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
test_allocator.h 27 template <class U> friend class test_allocator;
73 friend bool operator==(const test_allocator& x, const test_allocator& y)
75 friend bool operator!=(const test_allocator& x, const test_allocator& y)
84 template <class U> friend class other_allocator;
101 friend bool operator==(const other_allocator& x, const other_allocator& y)
103 friend bool operator!=(const other_allocator& x, const other_allocator& y)
  /external/chromium_org/chrome/browser/extensions/
extension_renderer_state.h 47 friend class TabObserver;
48 friend class WebViewGuest;
49 friend struct DefaultSingletonTraits<ExtensionRendererState>;
  /external/chromium_org/chrome/browser/
internal_auth.h 26 friend class InternalAuthGeneration;
27 friend class InternalAuthVerificationService;
28 friend class InternalAuthGenerationService;
  /external/chromium_org/chrome/browser/media_galleries/
scoped_mtp_device_map_entry.h 36 // Friend declarations for ref counted implementation.
37 friend struct content::BrowserThread::DeleteOnThread<
39 friend class base::DeleteHelper<ScopedMTPDeviceMapEntry>;
  /external/chromium_org/content/browser/appcache/
chrome_appcache_service.h 64 friend class base::DeleteHelper<ChromeAppCacheService>;
65 friend class base::RefCountedThreadSafe<ChromeAppCacheService,
67 friend struct ChromeAppCacheServiceDeleter;

Completed in 625 milliseconds

1 2 3 4 56 7 8 91011>>