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

  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
kernel_object_test.cc 34 Error Access(const Path& path, int a_mode) { return ENOSYS; }
  /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/compiler-rt/lib/tsan/rtl/
tsan_report.cc 25 const char *Access() { return Blue(); }
131 Printf("%s", d.Access());
  /external/chromium_org/sandbox/linux/services/
broker_process.cc 105 // First, check the access mode.
218 int BrokerProcess::Access(const char* pathname, int mode) const {
227 // as arguments, currently open() and access().
417 // Perform access(2) on |requested_filename| with mode |mode| if allowed by our
428 int access_ret = access(file_to_access, mode);
467 // Check if calling access() should be allowed on |requested_filename| with
469 // Note: access() being a system call to check permissions, this can get a bit
470 // confusing. We're checking if calling access() should even be allowed with
475 // 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/chromium_org/v8/src/
utils.h 364 // a local scope using an instance of Access. Attempts to re-reserve
372 template <typename S> friend class Access;
378 // Locally scoped access to a static resource.
380 class Access {
382 explicit Access(StaticResource<T>* resource)
389 ~Access() {
460 * Specialized versions of the class can allow access to the backing store
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 16 /// diagnostics -- notably deprecation and access control -- are suppressed
49 : Access(FoundDecl.getAccess()), IsMember(true),
58 AccessSpecifier Access)
59 : Access(Access), IsMember(false),
67 AccessSpecifier getAccess() const { return AccessSpecifier(Access); }
104 unsigned Access : 2;
116 enum DDKind { Deprecation, Unavailable, Access, ForbiddenType };
137 DD.Kind = Access;
159 assert(Kind == Access && "Not an access diagnostic.")
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 383 const DIEValue *Access;
388 : DIEValue(isString), Access(Acc), Str(S) {}
  /external/compiler-rt/lib/asan/
asan_report.cc 51 const char *Access() { return Blue(); }
314 // current memory access, indicate it in the log.
334 // FIXME: we may want to also print the size of the access here,
336 str.append("%s <== Memory access at offset %zd %s this variable%s\n",
464 "(wild memory access suspected).\n");
    [all...]
  /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
1746 AccessSpecifier access = target->getAccess(); local
    [all...]
SemaDecl.cpp 254 // computed, which is either the type of the base of a member access
    [all...]
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 138 "enable-mem-access-versioning", cl::init(true), cl::Hidden,
139 cl::desc("Enable symblic stride memory access versioning"));
184 cl::desc("Enable the use of the block frequency analysis to access PGO "
769 /// \brief Collect memory access with loop invariant strides.
    [all...]

Completed in 557 milliseconds