HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 101 - 125 of 1048) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/sandbox/win/src/
registry_interception.cc 2 // Use of this source code is governed by a BSD-style license that can be
62 ResultCode code = CrossCall(ipc, IPC_NTCREATEKEY_TAG, name, attributes, local
68 if (SBOX_ALL_OK != code)
120 ResultCode code = CrossCall(ipc, IPC_NTOPENKEY_TAG, name, attributes, local
125 if (SBOX_ALL_OK != code)
sync_interception.cc 2 // Use of this source code is governed by a BSD-style license that can be
30 ResultCode code = CrossCall(ipc, IPC_CREATEEVENT_TAG, name, event_type, local
32 return code;
47 ResultCode code = CrossCall(ipc, IPC_OPENEVENT_TAG, name, desired_access, local
50 return code;
90 ResultCode code = ProxyCreateEvent(name, initial_state, event_type, memory, local
94 if (code != SBOX_ALL_OK) {
143 ResultCode code = ProxyOpenEvent(name, desired_access, memory, &answer); local
146 if (code != SBOX_ALL_OK) {
  /external/chromium_org/sandbox/win/wow_helper/
wow_helper.cc 2 // Use of this source code is governed by a BSD-style license that can be
31 char* code = reinterpret_cast<char*>(thunk) + used; local
33 code, thunk, thunk_bytes, NULL);
44 if (!::WriteProcessMemory(child, code, &TargetNtMapViewOfSection, size,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.cpp 8 * 1. Redistributions of source code must retain the above copyright
39 const int code; member in struct:blink::CoreException
92 DOMException::DOMException(unsigned short code, const String& name, const String& sanitizedMessage, const String& unsanitizedMessage)
95 m_code = code;
105 return adoptRefWillBeNoop(new DOMException(entry->code,
DOMException.h 8 * 1. Redistributions of source code must retain the above copyright
47 unsigned short code() const { return m_code; } function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositionUnderlineRangeFilterTest.cpp 2 // Use of this source code is governed by a BSD-style license that can be
48 int code = (*it).color.red(); local
49 ret.append(static_cast<char>('A' + code));
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
38 enum Code {
46 static PassRefPtrWillBeRawPtr<MediaError> create(Code code)
48 return adoptRefWillBeNoop(new MediaError(code));
51 Code code() const { return m_code; } function in class:blink::FINAL
56 MediaError(Code code) : m_code(code) { }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationError.h 7 * 1. Redistributions of source code must retain the above copyright
40 static GeolocationError* create(ErrorCode code, const String& message)
42 return new GeolocationError(code, message);
46 ErrorCode code() const { return m_code; } function in class:blink::GeolocationError
50 GeolocationError(ErrorCode code, const String& message)
51 : m_code(code)
PositionError.h 7 * 1. Redistributions of source code must retain the above copyright
44 static PositionError* create(ErrorCode code, const String& message) { return new PositionError(code, message); }
47 ErrorCode code() const { return m_code; } function in class:blink::PositionError
53 PositionError(ErrorCode code, const String& message)
54 : m_code(code)
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
CloseEvent.h 8 * * Redistributions of source code must retain the above copyright
41 , code(0) { }
44 unsigned short code; member in struct:blink::CloseEventInit
56 static PassRefPtrWillBeRawPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason)
58 return adoptRefWillBeNoop(new CloseEvent(wasClean, code, reason));
67 unsigned short code() const { return m_code; } function in class:blink::FINAL
81 CloseEvent(bool wasClean, int code, const String& reason)
84 , m_code(code)
90 , m_code(initializer.code)
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LocaleToScriptMapping.cpp 8 * * Redistributions of source code must retain the above copyright
44 UScriptCode code; member in struct:blink::ScriptNameCode
47 // This generally maps an ISO 15924 script code to its UScriptCode, but certain families of script codes are
164 scriptNameCodeMap.set(scriptNameCodeList[i].name, scriptNameCodeList[i].code);
396 UScriptCode code = scriptNameToCode(canonicalLocale.substring(pos + 1)); local
397 if (code != USCRIPT_INVALID_CODE && code != USCRIPT_UNKNOWN)
398 return code;
  /external/chromium_org/third_party/freetype/src/cff/
cffcmap.c 82 FT_UInt code = (FT_UInt)(char_code + 1); local
87 if ( code >= 256 )
90 result = cmap->gids[code];
93 *pchar_code = code;
97 code++;
  /external/chromium_org/third_party/libwebp/utils/
huffman_encode.h 3 // Use of this source code is governed by a BSD-style license
25 uint8_t code; // value (0..15) or escape code (16,17,18) member in struct:__anon17923
32 uint8_t* code_lengths; // Code lengths of the symbols.
52 // huffman code tree.
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_entrypoint.c 28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
100 GLubyte * const code = (GLubyte *) u_execmem_alloc(DISPATCH_FUNCTION_SIZE); local
103 if ( code != NULL ) {
104 (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE);
105 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset );
108 return (_glapi_proc) code;
119 GLubyte * const code = (GLubyte *) entrypoint; local
122 *((unsigned int *)(code + 8)) = 4 * offset;
124 *((unsigned int *)(code + 11)) = 4 * offset;
125 *((unsigned int *)(code + 22)) = 4 * offset
195 unsigned int *code = &__glapi_sparc_tls_stub; local
199 unsigned int *code = &__glapi_sparc_pthread_stub; local
283 unsigned int *code = (unsigned int *) u_execmem_alloc(sizeof(template)); local
302 unsigned int *code = (unsigned int *) entrypoint; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
entry_x86-64_tls.h 91 char *code = (char *) entry; local
92 *((unsigned int *) (code + 12)) = slot * sizeof(mapi_func);
105 void *code; local
113 code = u_execmem_alloc(sizeof(code_templ));
114 if (!code)
117 memcpy(code, code_templ, sizeof(code_templ));
119 *((unsigned int *) (code + 5)) = addr;
120 entry = (mapi_func) code;
entry_x86_tls.h 118 char *code = (char *) entry; local
119 *((unsigned long *) (code + 8)) = slot * sizeof(mapi_func);
130 void *code; local
133 code = u_execmem_alloc(sizeof(code_templ));
134 if (!code)
137 memcpy(code, code_templ, sizeof(code_templ));
139 *((unsigned long *) (code + 2)) = x86_current_tls();
140 entry = (mapi_func) code;
entry_x86_tsd.h 80 char *code = (char *) entry; local
82 *((unsigned long *) (code + 11)) = slot * sizeof(mapi_func);
83 *((unsigned long *) (code + 22)) = slot * sizeof(mapi_func);
90 void *code; local
93 code = u_execmem_alloc(X86_ENTRY_SIZE);
94 if (!code)
97 memcpy(code, code_templ, X86_ENTRY_SIZE);
98 entry = (mapi_func) code;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prerror.h 13 * The Original Code is the Netscape Portable Runtime (NSPR).
15 * The Initial Developer of the Original Code is Netscape
69 ** Return the current threads last set error code.
74 ** Return the current threads last set os error code. This is used for
75 ** machine specific code that desires the underlying os error.
112 * The interfaces for error-code-translation described in the rest of
118 ** Description: Localizable error code to string function.
121 ** NSPR provides a mechanism for converting an error code to a
126 ** error code is from, and the low order 8 bits are a sequential error
128 ** error code is not a multiple of 256, such error code assignment
273 NSPR_API(const char *) PR_ErrorToName(PRErrorCode code); variable
    [all...]
  /external/chromium_org/third_party/re2/re2/
filtered_re2.cc 2 // Use of this source code is governed by a BSD-style
27 RE2::ErrorCode code = re->error_code(); local
40 return code;
  /external/chromium_org/third_party/re2/re2/testing/
compile_test.cc 2 // Use of this source code is governed by a BSD-style
18 // the regexp compiles to the expected code.
21 // that run the compiled code.
25 const char* code; member in struct:re2::Test
123 if (s != t.code) {
124 LOG(ERROR) << "Incorrect compiled code for: " << t.regexp;
125 LOG(ERROR) << "Want:\n" << t.code;
  /external/chromium_org/third_party/zlib/
inftrees.h 12 information needed to do the operation requested by the code that
14 table that indexes more bits of the code. op indicates whether
16 distance, an end-of-block, or an invalid code. For a table
19 is the number of extra bits to get after the code. bits is
20 the number of bits in this code or part of the code to drop off
26 unsigned char bits; /* bits in this part of the code */
27 unsigned short val; /* offset in table or code value */
28 } code; typedef in typeref:struct:__anon21024
35 01000000 - invalid code
    [all...]
  /external/chromium_org/v8/src/
code-factory.cc 2 // Use of this source code is governed by a BSD-style license that can be
8 #include "src/code-factory.h"
38 Handle<Code> ic = mode == SLOPPY
47 Handle<Code> code = CompareIC::GetUninitialized(isolate, op); local
48 return Callable(code, BinaryOpDescriptor(isolate));
  /external/chromium_org/v8/src/ic/arm/
stub-cache-arm.cc 2 // Use of this source code is governed by a BSD-style license that can be
19 Code::Flags flags, bool leave_frame,
44 // Multiply by 3 because there are 3 fields per entry (name, code, map).
62 // Get the code entry from the cache.
63 Register code = scratch2; local
65 __ ldr(code, MemOperand(base_addr, value_off_addr - key_off_addr));
70 __ ldr(flags_reg, FieldMemOperand(code, Code::kFlagsOffset));
73 uint32_t mask = Code::kFlagsNotUsedInLookup;
89 // Jump to the first instruction in the code stub
    [all...]
  /external/chromium_org/v8/src/ic/mips/
stub-cache-mips.cc 2 // Use of this source code is governed by a BSD-style license that can be
19 Code::Flags flags, bool leave_frame,
44 // Multiply by 3 because there are 3 fields per entry (name, code, map).
62 // Get the code entry from the cache.
63 Register code = scratch2; local
65 __ lw(code, MemOperand(base_addr, value_off_addr - key_off_addr));
70 __ lw(flags_reg, FieldMemOperand(code, Code::kFlagsOffset));
71 __ And(flags_reg, flags_reg, Operand(~Code::kFlagsNotUsedInLookup));
84 // Jump to the first instruction in the code stub
    [all...]
  /external/chromium_org/v8/src/ic/mips64/
stub-cache-mips64.cc 2 // Use of this source code is governed by a BSD-style license that can be
19 Code::Flags flags, bool leave_frame,
44 // Multiply by 3 because there are 3 fields per entry (name, code, map).
62 // Get the code entry from the cache.
63 Register code = scratch2; local
65 __ ld(code, MemOperand(base_addr, value_off_addr - key_off_addr));
70 __ lw(flags_reg, FieldMemOperand(code, Code::kFlagsOffset));
71 __ And(flags_reg, flags_reg, Operand(~Code::kFlagsNotUsedInLookup));
84 // Jump to the first instruction in the code stub
    [all...]

Completed in 1453 milliseconds

1 2 3 45 6 7 8 91011>>