Searched defs:code (Results 51 - 75 of 1278) sorted by relevance

1234567891011>>

/external/webp/src/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:__anon28022
/external/bison/src/
H A Dscan-code.h1 /* Bison code properties structure and scanner.
36 * A code passage captured from the grammar file and possibly translated,
37 * and/or properties associated with such a code passage. Don't break
52 char const *code; member in struct:code_props
53 /** Undefined iff \c code_props::code is \c NULL. */
59 * the \c code_props that would contain the code passage associated
65 * referenced in the code passage.
80 * - \c self has been overwritten to contain no code.
94 * - <tt>code != NULL</tt>.
95 * - \c code i
[all...]
/external/chromium/chrome/browser/chromeos/cros/
H A Dmock_cryptohome_library.h2 // Use of this source code is governed by a BSD-style license that can be
25 void SetUp(bool outcome, int code) { argument
27 code_ = code;
95 void SetAsyncBehavior(bool outcome, int code) { argument
97 code_ = code;
/external/chromium/chrome/browser/chromeos/login/
H A Dmock_auth_response_handler.cc2 // Use of this source code is governed by a BSD-style license that can be
23 const int code,
27 http_response_code_(code),
20 MockAuthResponseHandler( const GURL& url, const net::URLRequestStatus& status, const int code, const std::string& data) argument
/external/chromium/chrome/browser/
H A Dlanguage_combobox_model.h2 // Use of this source code is governed by a BSD-style license that can be
21 // Provides code to enumerate locale names for language selection lists.
27 LocaleData(const string16& name, const std::string& code) argument
28 : native_name(name), locale_code(code) { }
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtaskparent.h8 * 1. Redistributions of source code must retain the above copyright notice,
50 // Retrieves a parent that corresponds to the given "code". The code
58 virtual TaskParent *GetParent(int code) { return parent_->GetParent(code); } argument
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DJSUtils.java2 // Use of this source code is governed by a BSD-style license that can be
64 final String code) throws Exception {
69 awContents.getContentViewCore(), code);
60 executeJavaScriptAndWaitForResult( InstrumentationTestCase testCase, final AwContents awContents, final OnEvaluateJavaScriptResultHelper onEvaluateJavaScriptResultHelper, final String code) argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dlanguage_list.h2 // Use of this source code is governed by a BSD-style license that can be
18 // language code (e.g. English (United States) for en-US).
43 LocaleData(const string16& name, const std::string& code) argument
44 : native_name(name), locale_code(code) {}
/external/chromium_org/chrome/browser/google_apis/
H A Drequest_sender.cc2 // Use of this source code is governed by a BSD-style license that can be
64 GDataErrorCode code,
72 if (code == HTTP_SUCCESS) {
76 request->OnAuthFailed(code);
62 OnAccessTokenFetched( const base::WeakPtr<AuthenticatedRequestInterface>& request, GDataErrorCode code, const std::string& ) argument
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dstatus.cc2 // Use of this source code is governed by a BSD-style license that can be
12 const char* DefaultMessageForStatusCode(StatusCode code) { argument
13 switch (code) {
65 Status::Status(StatusCode code) argument
66 : code_(code), msg_(DefaultMessageForStatusCode(code)) {}
68 Status::Status(StatusCode code, const std::string& details) argument
69 : code_(code),
70 msg_(DefaultMessageForStatusCode(code) + std::string(": ") + details) {
73 Status::Status(StatusCode code, cons argument
78 Status(StatusCode code, const std::string& details, const Status& cause) argument
100 StatusCode Status::code() const { function in class:Status
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dkeycode_text_conversion_win.cc2 // Use of this source code is governed by a BSD-style license that can be
28 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0); local
31 if (code <= 0 || (code == 1 && std::iscntrl(chars[0])))
34 WideToUTF8(chars, code, text);
/external/chromium_org/chrome/test/webdriver/
H A Dkeycode_text_conversion_gtk.cc2 // Use of this source code is governed by a BSD-style license that can be
32 // Converts a character to the key code and modifier set that would
60 ui::KeyboardCode code = ui::WindowsKeyCodeForGdkKeyCode(gdk_key_code); local
61 if (code != ui::VKEY_UNKNOWN)
62 *key_code = code;
63 return code != ui::VKEY_UNKNOWN;
H A Dkeycode_text_conversion_win.cc2 // Use of this source code is governed by a BSD-style license that can be
27 int code = ::ToUnicode(key_code, scan_code, keyboard_state, chars, 4, 0); local
30 if (code <= 0 || (code == 1 && std::iscntrl(chars[0]))) {
34 WideToUTF8(chars, code, &text);
H A Dwebdriver_error.cc2 // Use of this source code is governed by a BSD-style license that can be
16 const char* DefaultMessageForErrorCode(ErrorCode code) { argument
17 switch (code) {
57 ErrorCode code = kUnknownError; local
58 switch (error.code()) {
60 code = kNoAlertOpenError;
63 code = kUnexpectedAlertOpen;
66 code = kNoSuchWindow;
74 if (code == kUnknownError) {
80 code
97 Error(ErrorCode code) argument
102 Error(ErrorCode code, const std::string& details) argument
113 ErrorCode Error::code() const { function in class:webdriver::Error
[all...]
/external/chromium_org/content/browser/download/
H A Dbase_file_win.cc2 // Use of this source code is governed by a BSD-style license that can be
63 DownloadInterruptReason MapShFileOperationCodes(int code) { argument
70 switch (code) {
71 // Not a pre-Win32 error code; here so that this particular
239 "Download.MapWinShErrorFileFailed", code,
247 "Download.MapWinShErrorAccessDenied", code,
256 // If not one of the above codes, it should be a standard Windows error code.
258 net::MapSystemError(code), DOWNLOAD_INTERRUPT_FROM_DISK);
261 // Maps a return code from ScanAndSaveDownloadedFile() to a
262 // DownloadInterruptReason. The return code i
[all...]
/external/chromium_org/content/public/common/
H A Dspeech_recognition_error.h2 // Use of this source code is governed by a BSD-style license that can be
23 SpeechRecognitionErrorCode code; member in struct:content::SpeechRecognitionError
27 : code(SPEECH_RECOGNITION_ERROR_NONE),
31 : code(code_value),
36 : code(code_value),
/external/chromium_org/content/renderer/media/
H A Dcache_util.cc2 // Use of this source code is governed by a BSD-style license that can be
29 const int code = response.httpStatusCode(); local
36 if (code != kHttpOK && code != kHttpPartialContent)
38 if (http_version < HttpVersion(1, 1) && code == kHttpPartialContent)
40 if (code == kHttpPartialContent &&
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dinstruction.h2 // Use of this source code is governed by a BSD-style license that can be
16 // code -- Opcode of the instruction. This is typically a bitwise
31 code(c), next(n), k(parm) { }
35 code(c), jt_ptr(jt), jf_ptr(jf), k(parm) { }
37 uint16_t code; member in struct:playground2::Instruction
39 // When code generation is complete, we will have computed relative
/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/third_party/WebKit/Source/bindings/v8/
H A DExceptionState.h8 * * Redistributions of source code must retain the above copyright
57 ExceptionCode code() { return m_code; } function in class:WebCore::ExceptionState
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMException.h8 * 1. Redistributions of source code must retain the above copyright
45 unsigned short code() const { return m_code; } function in class:WebCore::DOMException
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileError.cpp8 * * Redistributions of source code must retain the above copyright
51 void FileError::throwDOMException(ExceptionState& es, ErrorCode code) argument
53 if (code == FileError::OK)
60 switch (code) {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaError.h7 * 1. Redistributions of source code must retain the above copyright
45 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); } argument
47 Code code() const { return m_code; } function in class:WebCore::MediaError
50 MediaError(Code code) : m_code(code) argument
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
H A DWebSocketStreamError.cpp8 * * Redistributions of source code must retain the above copyright
41 void WebSocketStreamError::assign(int code, const WebString& message) argument
43 m_private = SocketStreamError::create(code, message);
/external/chromium_org/third_party/WebKit/Source/core/platform/text/
H A DLocaleToScriptMappingDefault.cpp8 * * Redistributions of source code must retain the above copyright
44 UScriptCode code; member in struct:WebCore::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;

Completed in 504 milliseconds

1234567891011>>