HomeSort by relevance Sort by last modified time
    Searched defs:Access (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_mem.cc 79 Error MountMem::Access(const Path& path, int a_mode) {
mount_html5fs.cc 29 Error MountHtml5Fs::Access(const Path& path, int a_mode) {
mount_passthrough.cc 116 Error MountPassthrough::Access(const Path& path, int a_mode) {
117 // There is no underlying 'access' syscall in NaCl. It just returns ENOSYS.
mount_dev.cc 242 Error MountDev::Access(const Path& path, int a_mode) {
248 // Don't allow execute access.
mount_http.cc 58 Error MountHttp::Access(const Path& path, int a_mode) {
75 // Don't allow write or execute access.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
kernel_object_test.cc 35 Error Access(const Path& path, int a_mode) { return ENOSYS; }
kernel_proxy_test.cc 358 virtual Error Access(const Path& path, int a_mode) { return 0; }
  /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/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/v8/src/
utils.h 367 // a local scope using an instance of Access. Attempts to re-reserve
375 template <typename S> friend class Access;
381 // Locally scoped access to a static resource.
383 class Access {
385 explicit Access(StaticResource<T>* resource)
392 ~Access() {
437 // Access individual vector elements - checks bounds in debug mode.
607 * Specialized versions of the class can allow access to the backing store
    [all...]
  /external/v8/src/
utils.h 295 // a local scope using an instance of Access. Attempts to re-reserve
303 template <typename S> friend class Access;
309 // Locally scoped access to a static resource.
311 class Access {
313 explicit Access(StaticResource<T>* resource)
320 ~Access() {
365 // Access individual vector elements - checks bounds in debug mode.
515 * Specialized versions of the class can allow access to the backing store
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 84 // First, check the access mode
192 int BrokerProcess::Access(const char* pathname, int mode) const {
201 // as arguments, currently open() and access().
392 // Perform access(2) on |requested_filename| with mode |mode| if allowed by our
403 int access_ret = access(file_to_access, mode);
444 // Check if calling access() should be allowed on |requested_filename| with
446 // Note: access() being a system call to check permissions, this can get a bit
447 // confusing. We're checking if calling access() should even be allowed with
452 // return true if calling access() on this file should be allowed, false
  /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/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/llvm/lib/CodeGen/AsmPrinter/
DIE.h 356 const DIEValue *Access;
361 : DIEValue(isString), Access(Acc), Str(S) {}
  /external/compiler-rt/lib/asan/
asan_report.cc 61 const char *Access() { return Blue(); }
731 d.Access(),
732 access_size ? (is_write ? "WRITE" : "READ") : "ACCESS",
  /external/clang/lib/Sema/
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...]
SemaDecl.cpp 190 // computed, which is either the type of the base of a member access
    [all...]
  /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...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 273 milliseconds