HomeSort by relevance Sort by last modified time
    Searched refs:Access (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /external/clang/include/clang/AST/
DeclBase.h 266 /// Access - Used by C++ decls for the access specifier.
268 unsigned Access : 2;
318 Access(AS_none), FromASTFile(0), Hidden(0),
328 Access(AS_none), FromASTFile(0), Hidden(0),
405 Access = AS;
411 return AccessSpecifier(Access);
414 /// \brief Retrieve the access specifier for this declaration, even though
417 return AccessSpecifier(Access);
    [all...]
DeclCXX.h 91 /// \brief Represents an access specifier followed by colon ':'.
94 /// of an access specifier followed by a colon in the list of member
97 /// Note that they do not represent other uses of access specifiers,
100 /// "access declarations" (C++98 11.3 [class.access.dcl]).
114 /// \brief The location of the access specifier.
116 /// \brief Sets the location of the access specifier.
119 /// \brief The location of the colon following the access specifier.
146 /// level of access (public, protected, private) is used for the
159 /// specifier, including the "virtual" (if present) and access
    [all...]
  /external/bison/doc/
refcard.tex 442 \key{Access data associated with a symbol.} {\$\$, \$0\dots\${\it n}}
443 \key{Access a field of the data union.} {\$\$.{\it t},
445 \key{Access symbol's location.} {@\$, @0\dots@{\it n}}
446 \key{Access data's line location.} {@{\it x}.{\it line\_spec}}
447 \key{Access data's column location.} {@{\it x}.{\it column\_spec}}
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 353 Access->EmitValue(AP, Form);
359 return Access->SizeOf(AP, Form);
365 Access->print(O);
DIE.h 383 const DIEValue *Access;
388 : DIEValue(isString), Access(Acc), Str(S) {}
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
jspipe_test.cc 125 ASSERT_EQ(0, fs_.Access(Path("/jspipe1"), R_OK | W_OK));
126 ASSERT_EQ(EACCES, fs_.Access(Path("/jspipe1"), X_OK));
kernel_object_test.cc 34 Error Access(const Path& path, int a_mode) { return ENOSYS; }
  /external/chromium_org/v8/test/mjsunit/
debug-stepout-scope-part1.js 37 // Access scope details.
debug-stepout-scope-part2.js 37 // Access scope details.
debug-stepout-scope-part3.js 37 // Access scope details.
debug-stepout-scope-part4.js 37 // Access scope details.
debug-stepout-scope-part5.js 37 // Access scope details.
debug-stepout-scope-part6.js 37 // Access scope details.
debug-stepout-scope-part7.js 37 // Access scope details.
debug-stepout-scope-part8.js 37 // Access scope details.
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 25 const char *Access() { return Blue(); }
131 Printf("%s", d.Access());
  /external/llvm/lib/Support/
Dwarf.cpp 537 const char *llvm::dwarf::AccessibilityString(unsigned Access) {
538 switch (Access) {
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
html5_fs.cc 32 Error Html5Fs::Access(const Path& path, int a_mode) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.cc 78 Error MemFs::Access(const Path& path, int a_mode) {
  /external/clang/test/SemaCXX/
alias-template.cpp 124 namespace Access {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.cc 291 Error DevFs::Access(const Path& path, int a_mode) {
297 // Don't allow execute access.
  /external/chromium_org/remoting/webapp/
oauth2.js 34 remoting.OAuth2.prototype.KEY_ACCESS_TOKEN_ = 'oauth2-access-token';
130 * @param {string} token The new access token.
138 // If the access token is to be useful, this object must make some
152 * Returns the current access token, setting it to a invalid value if none
156 * @return {{token: string, expiration: number}} The current access token, or
171 console.log('Invalid access token stored.');
176 * Returns true if the access token is expired, or otherwise invalid.
180 * @return {boolean} True if a new access token is needed.
208 * @param {function(string):void} onOk Called with the new access token.
209 * @param {string} accessToken Access token
    [all...]
  /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/chromium_org/v8/src/
utils.h 427 // a local scope using an instance of Access. Attempts to re-reserve
435 template <typename S> friend class Access;
441 // Locally scoped access to a static resource.
443 class Access {
445 explicit Access(StaticResource<T>* resource)
452 ~Access() {
523 * Specialized versions of the class can allow access to the backing store
    [all...]
  /frameworks/native/libs/ui/tests/
vec_test.cpp 86 TEST_F(VecTest, Access) {

Completed in 1461 milliseconds

1 23 4 5 6