Searched defs:code (Results 76 - 100 of 1408) sorted by relevance

1234567891011>>

/external/chromium_org/sandbox/win/src/
H A Dnamed_pipe_interception.cc2 // Use of this source code is governed by a BSD-style license that can be
53 ResultCode code = CrossCall(ipc, IPC_CREATENAMEDPIPEW_TAG, pipe_name, local
57 if (SBOX_ALL_OK != code)
/external/chromium_org/sandbox/win/wow_helper/
H A Dwow_helper.cc2 // 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/
H A DDOMException.h8 * 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/
H A DCompositionUnderlineRangeFilterTest.cpp2 // 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/
H A DMediaError.h7 * 1. Redistributions of source code must retain the above copyright
46 static PassRefPtrWillBeRawPtr<MediaError> create(Code code) argument
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) { } argument
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryReaderSync.h8 * * Redistributions of source code must retain the above copyright
64 void setError(FileError::ErrorCode code) argument
66 m_errorCode = code;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationError.h7 * 1. Redistributions of source code must retain the above copyright
40 static GeolocationError* create(ErrorCode code, const String& message) argument
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) argument
51 : m_code(code)
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechRecognitionError.cpp7 * * Redistributions of source code must retain the above copyright
32 static String ErrorCodeToString(SpeechRecognitionError::ErrorCode code) argument
34 switch (code) {
59 PassRefPtrWillBeRawPtr<SpeechRecognitionError> SpeechRecognitionError::create(ErrorCode code, const String& message) argument
61 return adoptRefWillBeNoop(new SpeechRecognitionError(ErrorCodeToString(code), message));
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DCloseEvent.h8 * * 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) argument
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) argument
84 , m_code(code)
90 , m_code(initializer.code)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSocketStreamError.cpp8 * * Redistributions of source code must retain the above copyright
39 void WebSocketStreamError::assign(int code, const WebString& message) argument
41 m_private = SocketStreamError::create(code, message);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLocaleToScriptMapping.cpp8 * * 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/WebKit/Source/web/
H A DWebGeolocationError.cpp8 * 1. Redistributions of source code must retain the above copyright
34 void WebGeolocationError::assign(Error code, const WebString& message) argument
36 m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebGeolocationError.h8 * 1. Redistributions of source code must retain the above copyright
44 WebGeolocationError(Error code, const WebString& message) { assign(code, message); } argument
48 BLINK_EXPORT void assign(Error code, const WebString& message);
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffcmap.c82 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/icu/source/common/
H A Duscript.c33 UScriptCode code = USCRIPT_INVALID_CODE; local
47 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
50 if(code==(UScriptCode)UCHAR_INVALID_CODE){
63 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, cName);
64 /* got the script code now fill in the buffer */
66 *(fillIn)++=code;
80 code = USCRIPT_INVALID_CODE;
82 if(code==(UScriptCode)UCHAR_INVALID_CODE){
84 code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
86 if(code!
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dstatus.cc2 // Use of this source code is governed by a BSD-style license that can be
19 Status::Status(Code code, const Slice& msg, const Slice& msg2) { argument
20 assert(code != kOk);
26 result[4] = static_cast<char>(code);
42 switch (code()) {
62 snprintf(tmp, sizeof(tmp), "Unknown code(%d): ",
63 static_cast<int>(code()));
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman_encode.h3 // 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:__anon13298
52 // huffman code tree.
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry_x86-64_tls.h91 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;
H A Dentry_x86_tls.h118 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;
H A Dentry_x86_tsd.h80 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/
H A Dprerror.h69 ** 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 assignments
136 ** values in the error code ar
273 NSPR_API(const char *) PR_ErrorToName(PRErrorCode code); variable
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dcompile_test.cc2 // 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/
H A Dinftrees.h12 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:__anon16406
35 01000000 - invalid code
[all...]
/external/chromium_org/tools/android/findbugs_plugin/src/org/chromium/tools/findbugs/plugin/
H A DSynchronizedMethodDetector.java2 // Use of this source code is governed by a BSD-style license that can be
24 public void visit(Code code) { argument
31 super.visit(code);
H A DSynchronizedThisDetector.java2 // Use of this source code is governed by a BSD-style license that can be
16 * The pattern of byte code of synchronized(this) is
33 public void visit(Code code) { argument
35 super.visit(code);

Completed in 3201 milliseconds

1234567891011>>