Searched refs:m_code (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/WebCore/bindings/js/
H A DScriptSourceCode.h46 , m_code(m_provider, startLine)
53 , m_code(m_provider)
57 bool isEmpty() const { return m_code.length() == 0; }
59 const JSC::SourceCode& jsSourceCode() const { return m_code; }
63 int startLine() const { return m_code.firstLine(); }
70 JSC::SourceCode m_code; member in class:WebCore::ScriptSourceCode
H A DScheduledAction.h52 : m_code(code)
65 String m_code; member in class:WebCore::ScheduledAction
H A DJSLazyEventListener.cpp42 , m_code(code)
104 args.append(jsString(exec, m_code));
130 m_code = String();
H A DScheduledAction.cpp129 frame->script()->executeScriptInWorld(m_isolatedWorld.get(), m_code);
146 ScriptSourceCode code(m_code, workerContext->url());
H A DJSLazyEventListener.h46 mutable String m_code; member in class:WebCore::JSLazyEventListener
/external/webkit/WebCore/html/
H A DMediaError.h41 Code code() const { return m_code; }
44 MediaError(Code code) : m_code(code) { }
46 Code m_code; member in class:WebCore::MediaError
/external/webkit/WebCore/page/
H A DGeolocationError.h47 ErrorCode code() const { return m_code; }
52 : m_code(code)
57 ErrorCode m_code; member in class:WebCore::GeolocationError
H A DPositionError.h45 ErrorCode code() const { return m_code; }
52 : m_code(code)
58 ErrorCode m_code; member in class:WebCore::PositionError
/external/webkit/WebCore/storage/
H A DIDBDatabaseError.h47 unsigned short code() const { return m_code; }
48 void setCode(unsigned short value) { m_code = value; }
55 unsigned short m_code; member in class:WebCore::IDBDatabaseError
H A DIDBDatabaseException.h47 unsigned short code() const { return m_code; }
48 void setCode(unsigned short value) { m_code = value; }
55 unsigned short m_code; member in class:WebCore::IDBDatabaseException
H A DSQLError.h43 unsigned code() const { return m_code; }
47 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy()) { }
48 unsigned m_code; member in class:WebCore::SQLError
H A DDatabaseTask.cpp92 , m_code(code)
100 m_success = database()->performOpenAndVerify(m_code);
/external/webkit/WebCore/dom/
H A DExceptionBase.h40 unsigned short code() const { return m_code; }
51 unsigned short m_code; member in class:WebCore::ExceptionBase
H A DExceptionBase.cpp35 : m_code(description.code)
/external/webkit/JavaScriptCore/jit/
H A DJITCode.h58 return !m_ref.m_code.executableAddress();
63 return m_ref.m_code;
71 intptr_t result = reinterpret_cast<intptr_t>(pointerIntoCode) - reinterpret_cast<intptr_t>(m_ref.m_code.executableAddress());
79 return JSValue::decode(ctiTrampoline(m_ref.m_code.executableAddress(), registerFile, callFrame, exception, Profiler::enabledProfilerReference(), globalData));
84 return m_ref.m_code.dataLocation();
89 ASSERT(m_ref.m_code.executableAddress());
98 // Host functions are a bit special; they have a m_code pointer but they
/external/webkit/JavaScriptCore/parser/
H A DLexer.cpp66 return m_code - 4;
79 if (LIKELY(m_code < m_codeEnd))
80 m_next3 = m_code[0];
84 ++m_code;
91 if (LIKELY(m_code + 1 < m_codeEnd)) {
92 m_next2 = m_code[0];
93 m_next3 = m_code[1];
95 m_next2 = m_code < m_codeEnd ? m_code[0] : -1;
99 m_code
[all...]
H A DLexer.h97 const UChar* m_code; member in class:JSC::Lexer
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DCodeAttribute_info.java97 m_code = (code != null ? code : EMPTY_BYTE_ARRAY);
98 m_codeSize = m_code.length;
110 return m_code;
171 _clone.m_code = (m_codeSize == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_code.clone ()); // does not trim
189 out.write (m_code, 0, m_codeSize); // TODO: THIS IS WRONG
198 m_code = code;
219 m_code = new byte [(int) code_length];
220 bytes.readFully (m_code);
252 private byte [] m_code; // neve field in class:CodeAttribute_info
[all...]
/external/webkit/WebCore/bindings/v8/
H A DScheduledAction.h54 , m_code(code, url)
71 ScriptSourceCode m_code; member in class:WebCore::ScheduledAction
H A DScheduledAction.cpp49 , m_code(String(), KURL(), 0)
123 proxy->evaluate(m_code, 0);
143 scriptController->evaluate(m_code);
H A DV8LazyEventListener.cpp48 , m_code(code)
113 code.append(m_code);
145 toStringResult.append(m_code);
H A DV8LazyEventListener.h65 String m_code; member in class:WebCore::V8LazyEventListener
/external/webkit/JavaScriptCore/yarr/
H A DRegexJIT.h71 bool operator!() { return !m_ref.m_code.executableAddress(); }
76 return reinterpret_cast<RegexJITCode>(m_ref.m_code.executableAddress())(input, start, length, output);
/external/webkit/JavaScriptCore/assembler/
H A DLinkBuffer.h64 // m_code uses m_executablePool, *not* executablePool, since this is no longer valid.
67 , m_code(masm->m_assembler.executableCopy(m_executablePool.get()))
155 return CodeRef(m_code, m_executablePool, m_size);
169 return m_code;
184 void* m_code; member in class:JSC::LinkBuffer
H A DMacroAssemblerCodeRef.h179 : m_code(code)
185 MacroAssemblerCodePtr m_code; member in class:JSC::MacroAssemblerCodeRef

Completed in 254 milliseconds

12