Searched defs:code (Results 201 - 225 of 835) sorted by relevance

1234567891011>>

/external/skia/src/animator/
H A DSkDisplayEvent.h5 * Use of this source code is governed by a BSD-style license that can be
49 SkKey code; member in class:SkDisplayEvent
58 SkKey fMax; // if the code expresses a range
/external/v8/src/
H A Dframes.h6 // * Redistributions of source code must retain the above copyright
43 // Return the code of the n-th saved register available to JavaScript.
56 Code* code; member in struct:v8::internal::InnerPointerToCodeCache::InnerPointerToCodeCacheEntry
151 // manually and the FrameScope does not need to emit code.
223 // Get the code associated with this frame.
227 // Get the code associated with this frame.
230 // Get the code object that contains the given pc.
233 // Get the code object containing the given pc and fill in the
422 // and parts of the fixed part including context and code fields.
451 Code* code,
[all...]
/external/v8/test/cctest/
H A Dtest-disasm-ia32.cc6 // * Redistributions of source code must retain the above copyright
461 Object* code = HEAP->CreateCode( local
465 CHECK(code->IsCode());
467 Code::cast(code)->Print();
468 byte* begin = Code::cast(code)->instruction_start();
469 byte* end = begin + Code::cast(code)->instruction_size();
H A Dtest-disasm-x64.cc6 // * Redistributions of source code must retain the above copyright
416 Object* code = HEAP->CreateCode( local
420 CHECK(code->IsCode());
422 Code::cast(code)->Print();
423 byte* begin = Code::cast(code)->instruction_start();
424 byte* end = begin + Code::cast(code)->instruction_size();
H A Dtest-hashing.cc6 // * Redistributions of source code must retain the above copyright
35 #include "code-stubs.h"
164 Code* code = Code::cast(HEAP->CreateCode( local
168 CHECK(code->IsCode());
170 HASH_FUNCTION hash = FUNCTION_CAST<HASH_FUNCTION>(code->entry());
193 Code* code = Code::cast(HEAP->CreateCode( local
197 CHECK(code->IsCode());
199 HASH_FUNCTION hash = FUNCTION_CAST<HASH_FUNCTION>(code->entry());
/external/valgrind/main/none/tests/amd64/
H A Dfaultstatus.c15 int code; member in struct:test
39 static int testcode(int code, int want) argument
41 if (code != want) {
42 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
63 ok = ok && testcode(si->si_code, cur_test->code);
116 #define T(n, sig, code, addr) { test##n, sig, code, addr }
/external/webkit/Source/JavaScriptCore/assembler/
H A DMacroAssemblerCodeRef.h7 * 1. Redistributions of source code must retain the above copyright
39 // ARM/thumb instructions must be 16-bit aligned, but all code pointers to be loaded
41 // thumb code (as oposed to 32-bit traditional ARM). The first test checks for both
124 // 'call' instructions exectued in JIT code. We use return addresses to look up
154 // MacroAssemblerCodePtr should be used to wrap pointers to JIT generated code.
164 // Decorate the pointer as a thumb code pointer.
198 // A reference to a section of JIT generated code. A CodeRef consists of a
199 // pointer to the code, and a ref pointer to the pool from within which it
208 MacroAssemblerCodeRef(void* code, PassRefPtr<ExecutablePool> executablePool, size_t size) argument
209 : m_code(code)
[all...]
H A DRepatchBuffer.h7 * 1. Redistributions of source code must retain the above copyright
38 // This class is used to modify code after code generation has been completed,
39 // and after the code has potentially already been executed. This mechanism is
40 // used to apply optimizations to the code.
48 JITCode& code = codeBlock->getJITCode(); local
49 m_start = code.start();
50 m_size = code.size();
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocator.cpp7 * 1. Redistributions of source code must retain the above copyright
111 __asm void ExecutableAllocator::cacheFlush(void* code, size_t size) argument
H A DJITCode.h7 * 1. Redistributions of source code must retain the above copyright
65 // this block of code. The pointer provided must be a pointer into this
66 // block of code. It is ASSERTed that no codeblock >4gb in size.
74 // Execute the code!
99 static JITCode HostFunction(CodePtr code) argument
101 return JITCode(code.dataLocation(), 0, 0);
105 JITCode(void* code, PassRefPtr<ExecutablePool> executablePool, size_t size) argument
106 : m_ref(code, executablePool, size)
/external/webkit/Source/WebCore/bindings/v8/
H A DV8LazyEventListener.cpp8 * * Redistributions of source code must retain the above copyright
45 V8LazyEventListener::V8LazyEventListener(const String& functionName, bool isSVGEvent, const String& code, const String sourceURL, const TextPosition0& position, const WorldContextHandle& worldContext) argument
49 , m_code(code)
110 // have the same numbers as in the original code.
111 String code = "(function (evt) {" \ local
116 code.append(m_code);
118 code.append( "\n}).call(this, evt);}}}})");
119 v8::Handle<v8::String> codeExternalString = v8ExternalString(code);
131 // argument wrapping the event source code. The reason for this is
/external/webkit/Source/WebCore/bridge/
H A Dtestqtbindings.cpp7 * 1. Redistributions of source code must retain the above copyright
82 static char code[] = variable
108 if (code) {
110 Completion comp(interp->evaluate("", 0, code));
/external/webkit/Source/WebCore/fileapi/
H A DFileError.h8 * * Redistributions of source code must retain the above copyright
59 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); } argument
61 ErrorCode code() const { return m_code; } function in class:WebCore::FileError
64 FileError(ErrorCode code) argument
65 : m_code(code)
H A DFileWriter.cpp8 * * Redistributions of source code must retain the above copyright
175 void FileWriter::didFail(FileError::ErrorCode code) argument
177 m_error = FileError::create(code);
179 if (FileError::ABORT_ERR == code)
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformKeyboardEventBrew.cpp7 * 1. Redistributions of source code must retain the above copyright
113 static int windowsKeyCodeForKeyEvent(uint16 code) argument
115 switch (code) {
217 PlatformKeyboardEvent::PlatformKeyboardEvent(AEEEvent event, uint16 code, uint32 modifiers, Type type) argument
221 , m_windowsVirtualKeyCode((type == RawKeyDown || type == KeyUp) ? windowsKeyCodeForKeyEvent(code) : 0)
225 int result = IKeysMapping_GetMapping(keysMapping.get(), code, modifiers, reinterpret_cast<AECHAR*>(&code));
226 if (result == AEE_SUCCESS) // Reset the modifier when key code is successfully mapped.
230 m_text = (type == Char) ? singleCharacterString(code) : String();
231 m_unmodifiedText = (type == Char) ? singleCharacterString(code)
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformKeyboardEventQt.cpp9 * 1. Redistributions of source code must retain the above copyright
414 // handled by key code above
508 static bool isVirtualKeyCodeRepresentingCharacter(int code) argument
510 switch (code) {
/external/webkit/Source/WebCore/storage/
H A DDatabaseTask.cpp8 * 1. Redistributions of source code must retain the above copyright
101 Database::DatabaseOpenTask::DatabaseOpenTask(Database* database, bool setVersionInNewDatabase, DatabaseTaskSynchronizer* synchronizer, ExceptionCode& code, bool& success) argument
104 , m_code(code)
/external/webkit/Source/WebKit/win/
H A DDOMCSSClasses.cpp7 * 1. Redistributions of source code must retain the above copyright
144 WebCore::ExceptionCode code; local
145 m_style->setProperty(propertyNameString, valueString, priorityString, code);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
H A Deap_ikev2_common.c57 struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code) argument
62 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 1, code, id);
70 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 0, code, id);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_common.c117 * @code: Message Code (EAP_CODE_*)
129 u8 code, u8 identifier)
142 hdr->code = code;
128 eap_msg_alloc(int vendor, EapType type, size_t payload_len, u8 code, u8 identifier) argument
H A Deap_ikev2_common.c51 struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code) argument
56 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 1, code, id);
64 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 0, code, id);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_common.c117 * @code: Message Code (EAP_CODE_*)
129 u8 code, u8 identifier)
142 hdr->code = code;
128 eap_msg_alloc(int vendor, EapType type, size_t payload_len, u8 code, u8 identifier) argument
H A Deap_ikev2_common.c51 struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code) argument
56 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 1, code, id);
64 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 0, code, id);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_common.c117 * @code: Message Code (EAP_CODE_*)
129 u8 code, u8 identifier)
142 hdr->code = code;
128 eap_msg_alloc(int vendor, EapType type, size_t payload_len, u8 code, u8 identifier) argument
H A Deap_ikev2_common.c51 struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code) argument
56 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 1, code, id);
64 msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IKEV2, 0, code, id);

Completed in 3288 milliseconds

1234567891011>>