HomeSort by relevance Sort by last modified time
    Searched refs:access (Results 101 - 125 of 1146) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/v8/test/mjsunit/
arguments-opt.js 63 // Integer access.
72 // Out-of-bounds integer access with and without argument
81 // String access.
97 // Object access.
127 // Make sure that out-of-bounds access do lookups in the
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp 124 rareNonInheritedData.access()->m_deprecatedFlexibleBox.init();
125 rareNonInheritedData.access()->m_flexibleBox.init();
126 rareNonInheritedData.access()->m_marquee.init();
127 rareNonInheritedData.access()->m_multiCol.init();
128 rareNonInheritedData.access()->m_transform.init();
129 rareNonInheritedData.access()->m_filter.init();
130 rareNonInheritedData.access()->m_grid.init();
131 rareNonInheritedData.access()->m_gridItem.init();
164 m_svgStyle.access()->inheritFrom(inheritParent->m_svgStyle.get());
190 m_svgStyle.access()->copyNonInheritedFrom(other->m_svgStyle.get())
    [all...]
RenderStyle.h 83 group.access()->variable = value
87 group.access()->variable.setColor(value)
346 void setVariable(const AtomicString& name, const String& value) { rareInheritedData.access()->m_variables.access()->setVariable(name, value); }
625 FillLayer* accessBackgroundLayers() { return &(m_background.access()->m_background); }
638 FillLayer* accessMaskLayers() { return &(rareNonInheritedData.access()->m_mask); }
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_buffer_objects.c 284 GLbitfield access, struct gl_buffer_object *obj)
296 obj->AccessFlags = access;
300 (access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == GL_MAP_READ_BIT;
319 /* If the access is synchronized (like a normal buffer mapping), then get
327 if (!(access & GL_MAP_UNSYNCHRONIZED_BIT)) {
329 if (access & GL_MAP_INVALIDATE_BUFFER_BIT) {
336 (access & GL_MAP_INVALIDATE_BUFFER_BIT)) {
347 if ((access & GL_MAP_INVALIDATE_RANGE_BIT) &&
349 if (access & GL_MAP_FLUSH_EXPLICIT_BIT) {
356 if (!(access & GL_MAP_READ_BIT))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_buffer_objects.c 284 GLbitfield access, struct gl_buffer_object *obj)
296 obj->AccessFlags = access;
300 (access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == GL_MAP_READ_BIT;
319 /* If the access is synchronized (like a normal buffer mapping), then get
327 if (!(access & GL_MAP_UNSYNCHRONIZED_BIT)) {
329 if (access & GL_MAP_INVALIDATE_BUFFER_BIT) {
336 (access & GL_MAP_INVALIDATE_BUFFER_BIT)) {
347 if ((access & GL_MAP_INVALIDATE_RANGE_BIT) &&
349 if (access & GL_MAP_FLUSH_EXPLICIT_BIT) {
356 if (!(access & GL_MAP_READ_BIT))
    [all...]
  /sdk/find_java/
find_java_lib.cpp 22 // However we do need 0x0502 to get access to the WOW-64-32 constants for the
152 REGSAM access,
159 KEY_READ | access, // samDesired,
199 static int exploreJavaRegistry(const char *entry, REGSAM access, CPath *outJavaPath) {
208 if (getRegValue(subKey.cstr(), "CurrentVersion", access, &currentVersion)) {
213 if (getRegValue(subKey.cstr(), "JavaHome", access, &javaHome)) {
236 KEY_READ | access, // samDesired
259 if (getRegValue(subKey.cstr(), "JavaHome", access, &javaHome)) {
280 static bool getMaxJavaInRegistry(const char *entry, REGSAM access, CPath *outJavaPath, int *inOutVersion) {
282 int version = exploreJavaRegistry(entry, access, &path);
    [all...]
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.cc 80 const std::string& access) {
81 file_access_permission_flags_ |= GetAccessPermissionFlagFromString(access);
158 // Initialize access permissions (optional).
168 std::string access; local
169 if (!access_list_value->GetString(i, &access) ||
170 result->AddFileAccessPermission(access)) {
182 // Initialize file filters (mandatory, unless "create" access is specified,
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 69 DWORD access = 0; local
73 access = GENERIC_READ | GENERIC_WRITE;
75 access = GENERIC_WRITE;
77 access = GENERIC_READ;
87 HANDLE file = CreateFileW(path, access, FILE_SHARE_READ, NULL, disposition,
  /external/chromium_org/remoting/webapp/
oauth2.js 37 remoting.OAuth2.prototype.KEY_ACCESS_TOKEN_ = 'oauth2-access-token';
157 * @param {string} token The new access token.
165 // If the access token is to be useful, this object must make some
179 * Returns the current access token, setting it to a invalid value if none
183 * @return {{token: string, expiration: number}} The current access token, or
198 console.log('Invalid access token stored.');
203 * Returns true if the access token is expired, or otherwise invalid.
207 * @return {boolean} True if a new access token is needed.
235 * @param {function(string):void} onOk Called with the new access token.
236 * @param {string} accessToken Access token
    [all...]
  /external/chromium/base/
shared_memory_win.cc 161 DWORD access = STANDARD_RIGHTS_REQUIRED | FILE_MAP_READ; local
166 access |= FILE_MAP_WRITE;
180 &result, access, FALSE, options))
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 10 * @param {String} url_access_token The OAuth access token URL.
55 * "access_url" {String} OAuth access token URL.
58 * "scope" {String} OAuth access scope.
91 * @param {Function} callback A function to call once an access token has
93 * token {String} The OAuth access token.
94 * secret {String} The OAuth access token secret.
120 * @return {Boolean} True if an access token exists.
232 * "access_url" {String} OAuth access token URL.
235 * "scope" {String} OAuth access scope.
259 * the OAuth flow. Once an access token is obtained, this function close
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 10 * @param {String} url_access_token The OAuth access token URL.
55 * "access_url" {String} OAuth access token URL.
58 * "scope" {String} OAuth access scope.
91 * @param {Function} callback A function to call once an access token has
93 * token {String} The OAuth access token.
94 * secret {String} The OAuth access token secret.
120 * @return {Boolean} True if an access token exists.
232 * "access_url" {String} OAuth access token URL.
235 * "scope" {String} OAuth access scope.
259 * the OAuth flow. Once an access token is obtained, this function close
    [all...]
  /external/chromium_org/sandbox/win/src/
Wow64.cc 103 DWORD access = EVENT_MODIFY_STATE | SYNCHRONIZE; local
105 &remote_load, access, FALSE, 0))
108 &remote_continue, access, FALSE, 0))
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.c 177 GLbitfield access, struct gl_buffer_object *obj)
181 (access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == GL_MAP_WRITE_BIT;
194 obj->AccessFlags = access;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_buffer_objects.c 177 GLbitfield access, struct gl_buffer_object *obj)
181 (access & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT)) == GL_MAP_WRITE_BIT;
194 obj->AccessFlags = access;
  /external/openfst/src/include/fst/
connect.h 129 // access[i]: accessibility of state i.
134 SccVisitor(vector<StateId> *scc, vector<bool> *access,
136 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
199 vector<StateId> *scc_stack_; // SCC stack (w/ random access)
304 vector<bool> access; local
307 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
310 for (StateId s = 0; s < access.size(); ++s)
311 if (!access[s] || !coaccess[s])
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmGeneratorTest.java 246 public void visit(int version, int access, String name, String signature,
252 super.visit(version, access, name, signature, superName, interfaces);
256 public FieldVisitor visitField(int access, String name, String desc,
259 return super.visitField(access, name, desc, signature, value);
264 public MethodVisitor visitMethod(int access, String name, String desc,
266 MethodVisitor mv = super.visitMethod(access, name, desc, signature, exceptions);
  /bionic/libstdc++/
Android.mk 4 # Note that we need to access private Bionic headers
  /dalvik/libdex/
CmdUtils.cpp 141 if (access("/tmp", W_OK) == 0) {
143 } else if (access("/sdcard", W_OK) == 0) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-template.rb 138 | % for attr, access in @attributes
139 | <%= attribute( :name => attr, :access => ( access || 'rw' ) ).to_s.chomp %>
151 | % case @access.to_s.downcase
  /external/chromium_org/gpu/GLES2/
gl2extchromium.h 78 GL_APICALL void* GL_APIENTRY glMapBufferCHROMIUM(GLuint target,GLenum access);
82 GLuint target,GLenum access);
115 GL_APICALL void* GL_APIENTRY glMapImageCHROMIUM(GLuint image_id, GLenum access);
126 GLuint image_id, GLenum access);
143 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access);
147 GLsizei height, GLenum format, GLenum type, GLenum access);
151 GLuint target, GLintptr offset, GLsizeiptr size, GLenum access);
156 GLsizei height, GLenum format, GLenum type, GLenum access);
  /external/chromium_org/media/audio/linux/
alsa_wrapper.h 40 snd_pcm_access_t access, unsigned int channels,
75 snd_pcm_format_t format, snd_pcm_access_t access,
  /external/chromium_org/ppapi/shared_impl/
ppb_graphics_3d_shared.cc 87 GLenum access) {
90 target, level, xoffset, yoffset, width, height, format, type, access);
  /external/chromium_org/sandbox/win/wow_helper/
wow_helper.cc 110 DWORD access = PROCESS_VM_OPERATION | PROCESS_VM_READ | PROCESS_VM_WRITE;
111 HANDLE child = ::OpenProcess(access, FALSE, process_id);
  /external/chromium_org/webkit/tools/test_shell/resources/
fonts.conf 3 <!-- /etc/fonts/fonts.conf file to configure system font access -->

Completed in 3453 milliseconds

1 2 3 45 6 7 8 91011>>