Home
last modified time | relevance | path

Searched refs:m_code (Results 1 – 25 of 27) sorted by relevance

12

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

12