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

1 2 3 4 5 6

  /packages/apps/OMA-DM/engine/dmlib/tool-src/dmt_validate/com/mot/treetest/
Access.java 3 public class Access {
Node.java 13 public Access access = new Access(); field in class:Node
Util.java 64 public static Access getAccess(Node n) {
65 Access a = new Access();
66 String parmValue = (String) n.parameters.get("access");
87 // get access "Add" from parent
  /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/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 100 int ret = open_broker.Access(NULL, F_OK);
106 // We can't debug the init process, and shouldn't be able to access
136 ret = open_broker.Access(kR_WhiteListed, F_OK);
138 ret = open_broker.Access(kR_WhiteListed, R_OK);
140 ret = open_broker.Access(kR_WhiteListed, W_OK);
142 ret = open_broker.Access(kR_WhiteListed, R_OK | W_OK);
144 ret = open_broker.Access(kR_WhiteListed, X_OK);
146 ret = open_broker.Access(kR_WhiteListed, R_OK | X_OK);
161 ret = open_broker.Access(kR_WhiteListedButDenied, F_OK);
164 ret = open_broker.Access(kR_WhiteListedButDenied, R_OK)
    [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/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
passthrough_fs.h 22 virtual Error Access(const Path& path, int a_mode);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
filesystem_test.cc 51 EXPECT_EQ(ENOENT, fs.Access(Path("/foo"), R_OK | W_OK));
64 EXPECT_EQ(0, fs.Access(Path("/foo"), R_OK | W_OK));
65 EXPECT_EQ(EACCES, fs.Access(Path("/foo"), X_OK));
67 // All access should be allowed on the root directory.
68 EXPECT_EQ(0, fs.Access(Path("/"), R_OK | W_OK | X_OK));
160 EXPECT_EQ(ENOENT, fs.Access(Path("/foo"), F_OK));
216 ASSERT_EQ(0, fs.Access(Path("/dir1/file"), R_OK));
221 ASSERT_NE(0, fs.Access(Path("/dir1/file"), R_OK));
222 ASSERT_EQ(0, fs.Access(Path("/dir2/new_file"), R_OK));
227 ASSERT_NE(0, fs.Access(Path("/dir2/new_file"), R_OK))
    [all...]
html5_fs_test.cc 146 ASSERT_EQ(0, fs->Access(Path("/foo"), R_OK | W_OK | X_OK));
159 ASSERT_EQ(0, fs->Access(Path("/bar"), R_OK | W_OK | X_OK));
160 ASSERT_EQ(ENOENT, fs->Access(Path("/foo/bar"), F_OK));
163 TEST_F(Html5FsTest, Access) {
169 ASSERT_EQ(0, fs->Access(Path("/foo"), R_OK | W_OK | X_OK));
170 ASSERT_EQ(ENOENT, fs->Access(Path("/bar"), F_OK));
181 ASSERT_EQ(ENOENT, fs->Access(path, F_OK));
198 ASSERT_EQ(0, fs->Access(path, F_OK));
200 EXPECT_EQ(ENOENT, fs->Access(path, F_OK));
212 EXPECT_EQ(ENOENT, fs->Access(Path("/file"), F_OK))
    [all...]
mock_fs.h 26 MOCK_METHOD2(Access, Error(const Path&, int));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
d4drvif.h 35 #define CTL_CODE( DeviceType, Function, Method, Access ) ( \
36 ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method) \
  /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/native_client_sdk/src/libraries/nacl_io/devfs/
dev_fs.h 17 virtual Error Access(const Path& path, int a_mode);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs.h 32 virtual Error Access(const Path& path, int a_mode);
  /external/lldb/scripts/Python/interface/
SBValueList.i 106 # Access with "int" to get Nth item in the list
112 # Access with "str" to get values by name
  /packages/apps/OMA-DM/engine/dmlib/dmt-tools/lib/
DMTTest.jar 
  /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/chrome/common/extensions/docs/examples/api/desktopCapture/
app.js 19 console.log("Access rejected.");
  /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 443 milliseconds

1 2 3 4 5 6