Home
last modified time | relevance | path

Searched refs:access (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/external/proguard/src/proguard/ant/
DMemberSpecificationElement.java39 private String access; field in MemberSpecificationElement
67 String access = memberSpecificationElement.access; in appendTo() local
116 new MemberSpecification(requiredAccessFlags(true, access), in appendTo()
117 requiredAccessFlags(false, access), in appendTo()
129 public void setAccess(String access) in setAccess() argument
131 this.access = access; in setAccess()
171 String access) in requiredAccessFlags() argument
176 if (access != null) in requiredAccessFlags()
178 StringTokenizer tokenizer = new StringTokenizer(access, " ,"); in requiredAccessFlags()
DClassSpecificationElement.java40 private String access; field in ClassSpecificationElement
76 String access = classSpecificationElement.access; in createClassSpecification() local
93 requiredAccessFlags(true, access, type), in createClassSpecification()
94 requiredAccessFlags(false, access, type), in createClassSpecification()
116 public void setAccess(String access) in setAccess() argument
118 this.access = access; in setAccess()
202 String access, in requiredAccessFlags() argument
208 if (access != null) in requiredAccessFlags()
210 StringTokenizer tokenizer = new StringTokenizer(access, " ,"); in requiredAccessFlags()
/external/v8/src/
Dexecution.cc216 ExecutionAccess access; in IsStackOverflow() local
223 ExecutionAccess access; in EnableInterrupts() local
224 if (IsSet(access)) { in EnableInterrupts()
225 set_limits(kInterruptLimit, access); in EnableInterrupts()
231 ExecutionAccess access; in SetStackLimit() local
247 ExecutionAccess access; in DisableInterrupts() local
248 reset_limits(access); in DisableInterrupts()
258 ExecutionAccess access; in IsInterrupted() local
264 ExecutionAccess access; in Interrupt() local
266 set_limits(kInterruptLimit, access); in Interrupt()
[all …]
Dv8threads.cc70 internal::ExecutionAccess access; in Locker() local
71 internal::StackGuard::ClearThread(access); in Locker()
72 internal::StackGuard::InitThread(access); in Locker()
144 ExecutionAccess access; in RestoreThread() local
155 StackGuard::InitThread(access); in RestoreThread()
/external/chromium/base/
Dregistry.cc159 RegKey::RegKey(HKEY rootkey, const tchar* subkey, REGSAM access) in RegKey() argument
162 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK)) in RegKey()
163 this->Create(rootkey, subkey, access); in RegKey()
165 this->Open(rootkey, subkey, access); in RegKey()
179 bool RegKey::Create(HKEY rootkey, const tchar* subkey, REGSAM access) { in Create() argument
181 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create()
185 DWORD* disposition, REGSAM access) { in CreateWithDisposition() argument
186 assert(rootkey && subkey && access && disposition); in CreateWithDisposition()
194 access, in CreateWithDisposition()
206 bool RegKey::Open(HKEY rootkey, const tchar* subkey, REGSAM access) { in Open() argument
[all …]
Dregistry.h29 RegKey(HKEY rootkey = NULL, CTP subkey = NULL, REGSAM access = KEY_READ);
34 bool Create(HKEY rootkey, CTP subkey, REGSAM access = KEY_READ);
37 REGSAM access = KEY_READ);
39 bool Open(HKEY rootkey, CTP subkey, REGSAM access = KEY_READ);
42 bool CreateKey(CTP name, REGSAM access);
45 bool OpenKey(CTP name, REGSAM access);
Dplatform_file_win.cc40 DWORD access = (flags & PLATFORM_FILE_READ) ? GENERIC_READ : 0; in CreatePlatformFile() local
42 access |= GENERIC_WRITE; in CreatePlatformFile()
58 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL, in CreatePlatformFile()
Dshared_memory_win.cc130 DWORD access = STANDARD_RIGHTS_REQUIRED | FILE_MAP_READ; in ShareToProcessCommon() local
135 access |= FILE_MAP_WRITE; in ShareToProcessCommon()
149 &result, access, FALSE, options)) in ShareToProcessCommon()
/external/webkit/WebCore/rendering/style/
DRenderStyle.h100 group.access()->variable = value;
543 FillLayer* accessBackgroundLayers() { return &(background.access()->m_background); } in accessBackgroundLayers()
556 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); } in accessMaskLayers()
748 rareNonInheritedData.access()->m_dashboardRegions.clear(); in setDashboardRegion()
749 rareNonInheritedData.access()->m_dashboardRegions.append(region); in setDashboardRegion()
834 …inherited.access()->font = Font(v, inherited->font.letterSpacing(), inherited->font.wordSpacing()); in setFontDescription()
857 void setWordSpacing(int v) { inherited.access()->font.setWordSpacing(v); } in setWordSpacing()
858 void setLetterSpacing(int v) { inherited.access()->font.setLetterSpacing(v); } in setLetterSpacing()
860 …void clearBackgroundLayers() { background.access()->m_background = FillLayer(BackgroundFillLayer);… in clearBackgroundLayers()
861 …void inheritBackgroundLayers(const FillLayer& parent) { background.access()->m_background = parent… in inheritBackgroundLayers()
[all …]
DRenderStyle.cpp110 rareNonInheritedData.access()->flexibleBox.init(); in RenderStyle()
111 rareNonInheritedData.access()->marquee.init(); in RenderStyle()
112 rareNonInheritedData.access()->m_multiCol.init(); in RenderStyle()
113 rareNonInheritedData.access()->m_transform.init(); in RenderStyle()
159 m_svgStyle.access()->inheritFrom(inheritParent->m_svgStyle.get()); in inheritFrom()
532 StyleVisualData* data = visual.access(); in setClip()
544 if (!inherited.access()->cursorData) in addCursor()
545 inherited.access()->cursorData = CursorList::create(); in addCursor()
546 inherited.access()->cursorData->append(data); in addCursor()
551 inherited.access()->cursorData = other; in setCursorList()
[all …]
/external/zlib/examples/
Dzran.c70 struct access { struct
77 local void free_index(struct access *index) in free_index() argument
87 local struct access *addpoint(struct access *index, int bits, in addpoint()
94 index = malloc(sizeof(struct access)); in addpoint()
139 local int build_index(FILE *in, off_t span, struct access **built) in build_index()
144 struct access *index; /* access points being generated */ in build_index()
244 local int extract(FILE *in, struct access *index, off_t offset, in extract()
354 struct access *index = NULL; in main()
/external/webkit/SunSpider/tests/sunspider-0.9/
DLIST4 access-binary-trees
5 access-fannkuch
6 access-nbody
7 access-nsieve
/external/webkit/SunSpider/tests/sunspider-0.9.1/
DLIST4 access-binary-trees
5 access-fannkuch
6 access-nbody
7 access-nsieve
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dconnect.h44 SccVisitor(vector<StateId> *scc, vector<bool> *access, in SccVisitor() argument
46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {} in SccVisitor()
205 vector<bool> access; in Connect() local
208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props); in Connect()
211 for (StateId s = 0; s < (StateId)access.size(); ++s) in Connect()
212 if (!access[s] || !coaccess[s]) in Connect()
Drmfinalepsilon.h36 vector<bool> access; in RmFinalEpsilon() local
39 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props); in RmFinalEpsilon()
/external/webkit/LayoutTests/http/tests/appcache/resources/
Doffline-access.manifest2 /resources/network-simulator.php?path=/appcache/resources/offline-access-frame.html
3 /resources/network-simulator.php?path=/appcache/resources/offline-access.manifest
5 /resources/network-simulator.php?path=/appcache/resources/offline-access.js
/external/webkit/WebCore/manual-tests/wml/
DStartTests.wml6 <a href="access-target.wml">access-target.wml</a><br/>
14 <a href="deck-access-control.wml">deck-access-control.wml</a><br/>
/external/webkit/WebCore/platform/posix/
DFileSystemPOSIX.cpp127 if (!access(fullPath.data(), F_OK)) in makeAllDirectories()
138 if (access(fullPath.data(), F_OK)) in makeAllDirectories()
143 if (access(fullPath.data(), F_OK)) in makeAllDirectories()
/external/qemu/android/utils/
Dpath.c218 CHECKED(ret, access(path, F_OK)); in path_exists()
256 CHECKED(ret, access(path, R_OK)); in path_can_read()
264 CHECKED(ret, access(path, R_OK)); in path_can_write()
456 if ( access(source, F_OK) < 0 || in path_copy_file()
461 if ( access(source, R_OK) < 0 ) { in path_copy_file()
/external/dnsmasq/contrib/Suse/
Ddnsmasq-SuSE.patch7 -as. The defaults to "dip", if available, to facilitate access to
8 +as. The defaults to "dialout", if available, to facilitate access to
/external/wpa_supplicant_6/wpa_supplicant/
DREADME-WPS15 passphrase/PSK) and configuration of an access point and client
24 environments that require secure network access without chance for
25 allowing outsiders to gain access during the setup phase.
29 - access point: the WLAN access point
38 when WPS is used to configure the access point.
106 AP to access the network.
/external/webkit/WebKit/win/Interfaces/
DIWebScriptObject.idl35 directly. In normal uses of WebKit, you gain access to the script
38 The following KVC methods are commonly used to access properties of the
49 Also the sparse array access allowed in web script objects doesn't map well to NSArray, so
50 the following methods can be used to access index based properties:
113 @param index The index of the property to return. Index based access is dependent
/external/dnsmasq/contrib/lease-access/
DREADME3 For some specific application I needed to deny access to a MAC address
5 called with an extra parameter "access" once a dhcp request or discover
/external/astl/include/
Dmemory51 // destination iterators are random access ones, uninitialized_copy
55 // Default implementation used when iterators are not random access
74 // iterators are random access.
108 // Bothe pod but not both random access
/external/openssl/crypto/bn/asm/
DREADME15 On the 2 alpha C compilers I had access to, it was not possible to do
17 were 64 bits). So the hand assember gives access to the 128 bit result and

12345678910>>...18