Searched defs:code (Results 376 - 400 of 1408) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/sandbox/win/src/
H A Dfilesystem_interception.cc2 // Use of this source code is governed by a BSD-style license that can be
69 ResultCode code = CrossCall(ipc, IPC_NTCREATEFILE_TAG, name, attributes, local
72 if (SBOX_ALL_OK != code)
138 ResultCode code = CrossCall(ipc, IPC_NTOPENFILE_TAG, name, attributes, local
140 if (SBOX_ALL_OK != code)
203 ResultCode code = CrossCall(ipc, IPC_NTQUERYATTRIBUTESFILE_TAG, name, local
208 if (SBOX_ALL_OK != code)
264 ResultCode code = CrossCall(ipc, IPC_NTQUERYFULLATTRIBUTESFILE_TAG, name, local
269 if (SBOX_ALL_OK != code)
339 // really helps to simplify the code
344 ResultCode code = CrossCall(ipc, IPC_NTSETINFO_RENAME_TAG, file, local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionState.h8 * * Redistributions of source code must retain the above copyright
87 ExceptionCode code() const { return m_code; } function in class:blink::ExceptionState
H A DV8LazyEventListener.cpp8 * * Redistributions of source code must retain the above copyright
55 V8LazyEventListener::V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) argument
59 , m_code(code)
153 // have the same numbers as in the original code.
160 String code = "(function() {" local
169 v8::Handle<v8::String> codeExternalString = v8String(isolate(), code);
197 // FIXME: Remove this code when we stop doing the 'with' hack above.
207 // argument wrapping the event source code. The reason for this is
222 // For the time being, we comment out the following code since the
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileError.h8 * * Redistributions of source code must retain the above copyright
75 static PassRefPtrWillBeRawPtr<FileError> create(ErrorCode code) argument
77 return adoptRefWillBeNoop(new FileError(code));
80 ErrorCode code() const { return m_code; } function in class:blink::FileError
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAppletElement.cpp143 const AtomicString& code = getAttribute(codeAttr); local
144 paramNames.append("code");
145 paramValues.append(code.string());
148 // plugin will load. If the 'code' attribute is set, and the 'archive' is not set, then we need
149 // to check the url generated by resolving 'code' against 'codebase'. If the 'archive'
150 // attribute is set, then 'code' points to a class inside the archive, so we need to check the
156 else if (!code.isNull())
157 urlToCheck = KURL(rootURL, code);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriter.cpp8 * * Redistributions of source code must retain the above copyright
231 void FileWriter::didFail(WebFileError code) argument
234 ASSERT(static_cast<FileError::ErrorCode>(code) != FileError::OK);
243 signalCompletion(static_cast<FileError::ErrorCode>(code));
292 void FileWriter::signalCompletion(FileError::ErrorCode code) argument
296 if (FileError::OK != code) {
297 m_error = FileError::create(code);
298 if (FileError::ABORT_ERR == code)
H A DSyncCallbackHelper.h9 * * Redistributions of source code must retain the above copyright
136 m_helper->setError(error->code());
147 void setError(FileError::ErrorCode code) argument
149 m_errorCode = code;
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DBody.cpp2 // Use of this source code is governed by a BSD-style license that can be
195 void Body::didFail(FileError::ErrorCode code) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DSpeechRecognitionClientProxy.cpp7 * * Redistributions of source code must retain the above copyright
122 void SpeechRecognitionClientProxy::didReceiveError(const WebSpeechRecognitionHandle& handle, const WebString& message, WebSpeechRecognizerClient::ErrorCode code) argument
125 SpeechRecognitionError::ErrorCode errorCode = static_cast<SpeechRecognitionError::ErrorCode>(code);
H A DWebSocketImpl.cpp8 * * Redistributions of source code must retain the above copyright
139 void WebSocketImpl::close(int code, const WebString& reason) argument
142 m_private->close(code, reason);
202 void WebSocketImpl::didClose(WebSocketChannelClient::ClosingHandshakeCompletionStatus status, unsigned short code, const String& reason) argument
205 m_client->didClose(static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason)); local
208 m_client->didClose(m_bufferedAmount - m_bufferedAmountAfterClose, static_cast<WebSocketClient::ClosingHandshakeCompletionStatus>(status), code, WebString(reason));
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DViewportTest.cpp8 * * Redistributions of source code must retain the above copyright
86 void executeScript(WebFrame* frame, const WebString& code) argument
88 frame->executeScript(WebScriptSource(code));
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dprefix.cc24 // Represents the range of values belonging to a prefix code:
102 int InsertLengthExtraBits(int code) { argument
103 int insert_code = (kInsertRangeLut[code >> 6] << 3) + ((code >> 3) & 7);
107 int InsertLengthOffset(int code) { argument
108 int insert_code = (kInsertRangeLut[code >> 6] << 3) + ((code >> 3) & 7);
112 int CopyLengthExtraBits(int code) { argument
113 int copy_code = (kCopyRangeLut[code >> 6] << 3) + (code
117 CopyLengthOffset(int code) argument
122 PrefixEncodeCopyDistance(int distance_code, int num_direct_codes, int postfix_bits, uint16_t* code, int* nbits, uint32_t* extra_bits) argument
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffparse.h55 FT_UInt code,
86 int code; member in struct:CFF_Field_Handler_
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdapi.c62 /* bogus names should return invalid code */
75 log_data_err("Error getting script code Got: %i Expected: %i for name %s (Error code does not propagate if data is not present. Are you missing data?)\n",
103 log_err("Japanese locale: code #%d was %d (%s) but expected %d (%s)\n", j,
240 UScriptCode code = USCRIPT_INVALID_CODE; local
245 code = uscript_getScript(codepoints[i],&status);
247 if( code != expected[i] ||
248 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT)
265 UScriptCode code= USCRIPT_INVALID_CODE; local
267 code
273 UScriptCode code= USCRIPT_INVALID_CODE; local
[all...]
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dstatus.h2 // Use of this source code is governed by a BSD-style license that can be
55 bool IsNotFound() const { return code() == kNotFound; }
58 bool IsCorruption() const { return code() == kCorruption; }
61 bool IsIOError() const { return code() == kIOError; }
71 // state_[4] == code
84 Code code() const { function in class:leveldb::Status
88 Status(Code code, const Slice& msg, const Slice& msg2);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddtmfsender.cc8 * 1. Redistributions of source code must retain the above copyright notice,
53 // 2 seconds before processing the next tone. We use -1 as its code.
66 // Get DTMF code from the DTMF event character.
67 bool GetDtmfCode(char tone, int* code) { argument
74 *code = p - kDtmfTonesTable - 1;
198 int code = 0; local
208 if (!GetDtmfCode(tone, &code)) {
216 if (code == kDtmfCodeTwoSecondDelay) {
227 if (!provider_->InsertDtmf(track_->id(), code, duration_)) {
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppengineimpl_iq.cc8 * 1. Redistributions of source code must retain the above copyright notice,
120 const char * type, const char * code) {
122 error_element->AddAttr(QN_CODE, code, 1);
129 AddErrorCode(XmlElement * error_element, XmppStanzaError code) { argument
130 switch (code) {
202 XmppStanzaError code,
236 AddErrorCode(&error_element, code);
119 AecImpl(XmlElement * error_element, const QName & name, const char * type, const char * code) argument
201 SendStanzaError(const XmlElement * element_original, XmppStanzaError code, const std::string & text) argument
H A Dxmpptask.cc8 * 1. Redistributions of source code must retain the above copyright notice,
73 XmppStanzaError code,
77 return GetClient()->SendStanzaError(element_original, code, text);
72 SendStanzaError(const XmlElement* element_original, XmppStanzaError code, const std::string& text) argument
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaDec.h56 UInt32 range, code; member in struct:__anon13433
102 LZMA_STATUS_NOT_SPECIFIED, /* use main error code instead */
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.c150 * avoid generating bad code.
164 * implementation) somehow becomes invalid code.
568 /* Dump byte code to a file */
591 void *code; local
597 code = LLVMGetPointerToGlobal(gallivm->engine, func);
598 assert(code);
599 jit_func = pointer_to_func(code);
602 lp_disassemble(code);
613 * Free the function (and its machine code).
618 const void *code)
616 gallivm_free_function(struct gallivm_state *gallivm, LLVMValueRef func, const void *code) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_program.h27 uint32_t *code; member in struct:nvc0_program
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr300_fragprog.c61 struct r300_fragment_program_code *code = &compiler->code->code.r300; local
70 fprintf(stderr, "code_offset_ext: %08x\n", code->r400_code_offset_ext);
73 for (n = 0; n <= (code->config & 3); n++) {
74 uint32_t code_addr = code->code_addr[3 - (code->config & 3) + n];
76 (((code->r400_code_offset_ext >> (24 - (n * 6))) & 0x7) << 6);
78 (((code->r400_code_offset_ext >> (27 - (n * 6))) & 0x7) << 6);
86 if (n > 0 || (code
[all...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.h57 UInt32 range, code; member in struct:__anon14764
103 LZMA_STATUS_NOT_SPECIFIED, /* use main error code instead */
/external/chromium_org/third_party/skia/experimental/webtry/res/js/
H A Dwebtry.js2 * Common JS that talks XHR back to the server and runs the code and receives
25 var code = document.getElementById('code'); variable
143 var editor = CodeMirror.fromTextArea(code, {
152 editor.setSize(editor.defaultCharWidth() * code.cols,
153 editor.defaultTextHeight() * code.rows);
195 // "code": "source code for try"
199 code.value = body.code;
[all...]
/external/chromium_org/third_party/skia/include/xml/
H A DSkXMLParser.h5 * Use of this source code is governed by a BSD-style license that can be
41 void setCode(ErrorCode code) { fCode = code; } argument

Completed in 846 milliseconds

<<11121314151617181920>>