Home
last modified time | relevance | path

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

12345678910>>...35

/external/clang/test/SemaObjC/
Divar-access-tests.m18 int access;
20 access = s->private;
21 access = s->protected;
31 int access;
33 access = s->private; // expected-error {{instance variable 'private' is private}}
34 access = s->protected;
36 access = m->private; // expected-error {{instance variable 'private' is private}}
37 access = m->protected;
47 int access;
49 access = s->private; // expected-error {{instance variable 'private' is private}}
[all …]
Dobjc-container-subscripting-2.m25 …array[10]; // expected-warning {{container access result unused - container access should not be u…
28 …dict[array]; // expected-warning {{container access result unused - container access should not be…
/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/webkit/Source/WebCore/rendering/style/
DSVGRenderStyle.h150 fill.access()->opacity = obj; in setFillOpacity()
156 fill.access()->paint = obj; in setFillPaint()
162 stroke.access()->opacity = obj; in setStrokeOpacity()
168 stroke.access()->paint = obj; in setStrokePaint()
174 stroke.access()->dashArray = obj; in setStrokeDashArray()
180 stroke.access()->miterLimit = obj; in setStrokeMiterLimit()
186 stroke.access()->width = obj; in setStrokeWidth()
192 stroke.access()->dashOffset = obj; in setStrokeDashOffset()
198 text.access()->kerning = obj; in setKerning()
204 stops.access()->opacity = obj; in setStopOpacity()
[all …]
DRenderStyle.h88 group.access()->variable = value;
577 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); } in accessBackgroundLayers()
591 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); } in accessMaskLayers()
826 rareNonInheritedData.access()->m_dashboardRegions.clear(); in setDashboardRegion()
827 rareNonInheritedData.access()->m_dashboardRegions.append(region); in setDashboardRegion()
921 …inherited.access()->font = Font(v, inherited->font.letterSpacing(), inherited->font.wordSpacing()); in setFontDescription()
944 void setWordSpacing(int v) { inherited.access()->font.setWordSpacing(v); } in setWordSpacing()
945 void setLetterSpacing(int v) { inherited.access()->font.setLetterSpacing(v); } in setLetterSpacing()
947 …void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer… in clearBackgroundLayers()
948 …void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = pare… in inheritBackgroundLayers()
[all …]
/external/chromium/base/win/
Dregistry.cc24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) in RegKey() argument
29 if (access & (KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_CREATE_LINK)) in RegKey()
30 Create(rootkey, subkey, access); in RegKey()
32 Open(rootkey, subkey, access); in RegKey()
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { in Create() argument
44 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create()
48 DWORD* disposition, REGSAM access) { in CreateWithDisposition() argument
50 DCHECK(rootkey && subkey && access && disposition); in CreateWithDisposition()
54 REG_OPTION_NON_VOLATILE, access, NULL, &key_, in CreateWithDisposition()
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) { in Open() argument
[all …]
Dregistry.h28 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
34 DWORD* disposition, REGSAM access);
36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG OpenKey(const wchar_t* name, REGSAM access);
/external/v8/src/
Dexecution.cc343 ExecutionAccess access(isolate_); in IsStackOverflow() local
350 ExecutionAccess access(isolate_); in EnableInterrupts() local
351 if (has_pending_interrupts(access)) { in EnableInterrupts()
352 set_interrupt_limits(access); in EnableInterrupts()
358 ExecutionAccess access(isolate_); in SetStackLimit() local
374 ExecutionAccess access(isolate_); in DisableInterrupts() local
375 reset_limits(access); in DisableInterrupts()
380 ExecutionAccess access(isolate_); in ShouldPostponeInterrupts() local
381 return should_postpone_interrupts(access); in ShouldPostponeInterrupts()
386 ExecutionAccess access(isolate_); in IsInterrupted() local
[all …]
/external/sepolicy/
Daccess_vectors2 # Define common prefixes for access vectors
8 # Define a common prefix for file access vectors.
34 # Define a common prefix for socket access vectors.
66 # Define a common prefix for ipc access vectors.
83 # Define a common prefix for userspace database object access vectors.
97 # Define a common prefix for pointer and keyboard access vectors.
124 # Define the access vectors.
130 # Define the access vector interpretation for file-related objects.
219 # Define the access vector interpretation for network-related objects.
297 # Define the access vector interpretation for process-related objects
[all …]
/external/javassist/src/main/javassist/bytecode/analysis/
DSubroutine.java31 private Set access = new HashSet(); field in Subroutine
47 public void access(int index) { in access() method in Subroutine
48 access.add(new Integer(index)); in access()
52 return access.contains(new Integer(index)); in isAccessed()
56 return access; in accessed()
/external/oprofile/events/avr32/
Devents15 event:0x0c counters:1,2 um:zero minimum:500 name:WRITE_ACCESS : write access
16 event:0x0d counters:1,2 um:zero minimum:500 name:CYCLES_WRITE_ACCESS : cycles when write access is …
17 event:0x0e counters:1,2 um:zero minimum:500 name:READ_ACCESS : read access
18 event:0x0f counters:1,2 um:zero minimum:500 name:CYCLES_READ_ACCESS : cycles when read access is on…
19 event:0x10 counters:1,2 um:zero minimum:500 name:CACHE_STALL : read or write access that stalled
20 …ounters:1,2 um:zero minimum:500 name:CYCLES_CACHE_STALL : cycles stalled doing read or write access
21 event:0x12 counters:1,2 um:zero minimum:500 name:DCACHE_ACCESS : data cache access
22 …unters:1,2 um:zero minimum:500 name:CYCLES_DCACHE_ACCESS : cycles when data cache access is ongoing
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
DLIST4 access-binary-trees
5 access-fannkuch
6 access-nbody
7 access-nsieve
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
DLIST4 access-binary-trees
5 access-fannkuch
6 access-nbody
7 access-nsieve
/external/llvm/lib/Target/MBlaze/
DMBlazeSchedule5.td25 , InstrStage<1,[MA]> // one cycle in memory access stage
40 , InstrStage<1,[MA]> // one cycle in memory access stage
48 // stages except the memory access stage, which takes 31 cycles. The two
50 // after the memory access stage.
55 , InstrStage<31,[MA]> // 31 cycles in memory access stage
65 // ready after the memory access stage.
70 , InstrStage<1,[MA]> // one cycle in memory access stage
83 , InstrStage<1,[MA]> // one cycle in memory access stage
94 , InstrStage<1,[MA]> // one cycle in memory access stage
107 , InstrStage<1,[MA]> // one cycle in memory access stage
[all …]
/external/chromium/chrome/browser/ui/cocoa/applescript/
Dconstants_applescript.mm8 // Property to access windows.
11 // Property to access tabs.
14 // Property to access bookmarks folders.
17 // Property to access bookmark items.
/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/oprofile/events/arm/armv7/
Devents8 event:0x43 counters:1,2,3,4 um:zero minimum:500 name:L2_ACCESS : Any access to L2 cache
13 event:0x48 counters:1,2,3,4 um:zero minimum:500 name:UNALIGNED_ACCESS_REPLAY : Unaligned access tha…
16 event:0x4B counters:1,2,3,4 um:zero minimum:500 name:L1_DATA_COLORING : L1 data access in which a p…
17 event:0x4C counters:1,2,3,4 um:zero minimum:500 name:L1_NEON_DATA : NEON data access that hits L1 c…
18 event:0x4D counters:1,2,3,4 um:zero minimum:500 name:L1_NEON_CACH_DATA : NEON cacheable data access
19 …x4E counters:1,2,3,4 um:zero minimum:500 name:L2_NEON : L2 access as a result of NEON memory access
21 event:0x50 counters:1,2,3,4 um:zero minimum:500 name:L1_INST : Any L1 instruction cache access, exc…
/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/Source/WebKit/chromium/src/
DExtensions3DChromium.cpp80 …ensions3DChromium::mapBufferSubDataCHROMIUM(unsigned target, int offset, int size, unsigned access) in mapBufferSubDataCHROMIUM() argument
82 return m_internal->mapBufferSubDataCHROMIUM(target, offset, size, access); in mapBufferSubDataCHROMIUM()
90 …, int xoffset, int yoffset, int width, int height, unsigned format, unsigned type, unsigned access) in mapTexSubImage2DCHROMIUM() argument
92 …al->mapTexSubImage2DCHROMIUM(target, level, xoffset, yoffset, width, height, format, type, access); in mapTexSubImage2DCHROMIUM()
/external/clang/include/clang/Basic/
DDiagnosticASTKinds.td52 "comparison of address of fields %0 and %2 of %4 with differing access "
60 "cannot %select{access base class of|access derived class of|access field of|"
61 "access array element of|ERROR|call member function on|"
62 "access real component of|access imaginary component of}0 "
65 "cannot %select{access base class of|access derived class of|access field of|"
66 "access array element of|perform pointer arithmetic on|"
67 "call member function on|access real component of|"
68 "access imaginary component of}0 null pointer">;
/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()
/external/smali/smali/src/test/resources/LexerTest/
DMiscTest.smali42 illegal-class-access
43 illegal-field-access
44 illegal-method-access
/external/chromium/chrome/browser/
Dutility.sb10 ; This configuration locks everything down, except access to one configurable
12 ; file system access is entireley restricted.
16 ; Enable full access to given directory if needed.
/external/chromium/chrome/common/extensions/docs/server/
DREADME22 You will need to have access to the appropriate appspot.com app. Contact
23 aa@chromium.org or kurrik@chromium.org to obtain access.
25 Once you have access:
34 that has access to the production app.

12345678910>>...35