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

1 2 3 4 5

  /external/clang/include/clang/AST/
DependentDiagnostic.h 13 // At the moment, the only consumer of this interface is access
36 enum AccessNonce { Access = 0 };
51 DD->AccessData.Access = AS;
59 return Access;
63 assert(getKind() == Access);
68 assert(getKind() == Access);
69 return AccessSpecifier(AccessData.Access);
73 assert(getKind() == Access);
78 assert(getKind() == Access);
83 assert(getKind() == Access);
    [all...]
CXXInheritance.h 71 CXXBasePath() : Access(AS_public) {}
73 /// \brief The access along this inheritance path. This is only
75 /// used to indicate a path which permits no legal access.
76 AccessSpecifier Access;
84 Access = AS_public;
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_mop.cc 111 t1.Access(l.loc(), true, 8, false);
112 t2.Access((char*)l.loc() + 4, true, 4, true);
116 t1.Access(l.loc(), true, 8, false);
117 t2.Access((char*)l.loc() + 7, true, 1, true);
121 t1.Access((char*)l.loc() + 4, true, 4, false);
122 t2.Access((char*)l.loc() + 4, true, 2, true);
126 t1.Access((char*)l.loc() + 4, true, 4, false);
127 t2.Access((char*)l.loc() + 6, true, 2, true);
131 t1.Access((char*)l.loc() + 3, true, 2, false);
132 t2.Access((char*)l.loc() + 4, true, 1, true)
    [all...]
tsan_test_util.h 66 void Access(void *addr, bool is_write, int size, bool expect_race);
68 Access(ml.loc(), false, size, expect_race);
71 Access(ml.loc(), true, size, expect_race);
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationCenter.idl 37 [MeasureAs=LegacyTextNotifications, ActivityLog=Access, RaisesException] Notification createNotification(DOMString iconUrl, DOMString title, DOMString body);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 116 class Access {
136 template<> enum class Access::Priv<Access::S::N>::E
137 : Access::S::N { // expected-error {{private member}}
138 a = Access::k, // ok
139 b = Access::S::k // expected-error {{private member}}
142 template<typename T> enum class Access::Priv<T>::E : T {
143 c = Access::k,
144 d = Access::S::k
148 Access::Priv<int>::E a = Access::Priv<int>::E::a
    [all...]
  /external/chromium_org/sandbox/linux/services/
broker_process_unittest.cc 92 int ret = open_broker.Access(NULL, F_OK);
98 // We can't debug the init process, and shouldn't be able to access
127 ret = open_broker.Access(kR_WhiteListed, F_OK);
129 ret = open_broker.Access(kR_WhiteListed, R_OK);
131 ret = open_broker.Access(kR_WhiteListed, W_OK);
133 ret = open_broker.Access(kR_WhiteListed, R_OK | W_OK);
135 ret = open_broker.Access(kR_WhiteListed, X_OK);
137 ret = open_broker.Access(kR_WhiteListed, R_OK | X_OK);
152 ret = open_broker.Access(kR_WhiteListedButDenied, F_OK);
155 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK)
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 13 // deprecation and access control --- are suppressed based on
48 : Access(FoundDecl.getAccess()), IsMember(true),
57 AccessSpecifier Access)
58 : Access(Access), IsMember(false),
66 AccessSpecifier getAccess() const { return AccessSpecifier(Access); }
103 unsigned Access : 2;
115 enum DDKind { Deprecation, Access, ForbiddenType };
133 DD.Kind = Access;
155 assert(Kind == Access && "Not an access diagnostic.")
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_dev.h 17 virtual Error Access(const Path& path, int a_mode);
mount_passthrough.h 21 virtual Error Access(const Path& path, int a_mode);
mount_html5fs.h 21 virtual Error Access(const Path& path, int a_mode);
mount_mem.h 31 virtual Error Access(const Path& path, int a_mode);
mount.h 51 virtual Error Access(const Path& path, int a_mode) = 0;
mount_http.h 26 virtual Error Access(const Path& path, int a_mode);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
mount_test.cc 61 EXPECT_EQ(ENOENT, mnt->Access(Path("/foo"), R_OK | W_OK));
76 EXPECT_EQ(0, mnt->Access(Path("/foo"), R_OK | W_OK));
77 EXPECT_EQ(EACCES, mnt->Access(Path("/foo"), X_OK));
79 // Write access should be allowed on the root directory.
80 EXPECT_EQ(0, mnt->Access(Path("/"), R_OK | W_OK));
81 EXPECT_EQ(EACCES, mnt->Access(Path("/"), X_OK));
175 EXPECT_EQ(ENOENT, mnt->Access(Path("/foo"), F_OK));
206 ASSERT_EQ(ENOENT, mnt->Access(Path("/foo"), F_OK));
214 ASSERT_EQ(0, mnt->Access(Path("/null"), R_OK | W_OK));
215 ASSERT_EQ(EACCES, mnt->Access(Path("/null"), X_OK))
    [all...]
mount_mock.h 25 MOCK_METHOD2(Access, Error(const Path&, int));
  /external/clang/test/CXX/special/class.copy/
p12-0x.cpp 153 friend class Access;
169 struct Access {
174 static_assert(__is_trivially_constructible(Access, const Access &), "");
175 static_assert(!__is_trivially_constructible(Access, Access &&), "");
176 struct TopAccess : Access {};
p25-0x.cpp 176 friend class Access;
192 struct Access {
197 static_assert(__is_trivially_assignable(Access, const Access &), "");
198 static_assert(!__is_trivially_assignable(Access, Access &&), "");
199 struct TopAccess : Access {};
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.idl 71 [Custom, ActivityLog=Access, RaisesException] void open(DOMString method, DOMString url, optional boolean async, optional DOMString user, optional DOMString password);
73 [ActivityLog=Access, RaisesException] void setRequestHeader(DOMString header, DOMString value);
  /external/clang/lib/Sema/
DelayedDiagnostic.cpp 47 case Access:
SemaAccess.cpp 1 //===---- SemaAccess.cpp - C++ Access Control -------------------*- C++ -*-===//
10 // This file provides Sema routines for C++ access control semantics.
36 /// SetMemberAccessSpecifier - Set the access specifier of a member.
37 /// Returns true on error (when the previous member decl access specifier
38 /// is different from the new member decl access specifier).
43 // Use the lexical access specifier.
48 // C++ [class.access.spec]p3: When a member is redeclared its access
87 // C++11 [class.access.nest]p1:
88 // A nested class is a member and as such has the same access
1759 AccessSpecifier access = target->getAccess(); local
    [all...]
  /external/valgrind/main/memcheck/tests/
supp_unknown.stderr.exp 3 Access not within mapped region at address 0x........
  /external/valgrind/main/none/tests/linux/
blockfault.stderr.exp 4 Access not within mapped region at address 0x........
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
IDLAttributes.txt 22 ActivityLog=Access|Setter|Getter|AccessForIsolatedWorlds|SetterForIsolatedWorlds|GetterForIsolatedWorlds
  /frameworks/base/core/java/android/view/
ViewTreeObserver.java 811 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start(); local
813 int count = access.size();
815 access.get(i).onGlobalLayout();
843 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start(); local
845 int count = access.size();
847 cancelDraw |= !(access.get(i).onPreDraw());
894 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start(); local
926 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start(); local
    [all...]

Completed in 365 milliseconds

1 2 3 4 5