/external/webkit/Source/WebCore/bindings/js/ |
D | ScriptSourceCode.h | 47 , m_code(m_provider, startPosition.m_line.oneBasedInt()) 54 , m_code(m_provider) in ScriptSourceCode() 58 bool isEmpty() const { return m_code.length() == 0; } in isEmpty() 60 const JSC::SourceCode& jsSourceCode() const { return m_code; } in jsSourceCode() 64 int startLine() const { return m_code.firstLine(); } in startLine() 71 JSC::SourceCode m_code; variable
|
D | JSLazyEventListener.cpp | 43 , m_code(code) in JSLazyEventListener() 98 args.append(jsString(exec, m_code)); in initializeJSFunction() 122 m_code = String(); in initializeJSFunction()
|
D | ScheduledAction.h | 56 , m_code(code) in ScheduledAction() 69 String m_code; variable
|
D | ScheduledAction.cpp | 134 frame->script()->executeScriptInWorld(m_isolatedWorld.get(), m_code); in execute() 151 ScriptSourceCode code(m_code, workerContext->url()); in execute()
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
D | CodeAttribute_info.java | 97 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/Source/JavaScriptCore/assembler/ |
D | LinkBuffer.h | 77 , m_code(0) in LinkBuffer() 171 return CodeRef(m_code, m_executablePool, m_size); in finalizeCode() 189 return m_code; in debugAddress() 206 return m_code; in code() 212 ASSERT(!m_code); in linkCode() 214 m_code = m_assembler->m_assembler.executableCopy(m_executablePool.get()); in linkCode() 218 m_code = (uint8_t*)m_executablePool->alloc(initialSize); in linkCode() 219 if (!m_code) in linkCode() 221 ExecutableAllocator::makeWritable(m_code, m_assembler->size()); in linkCode() 223 uint8_t* outData = reinterpret_cast<uint8_t*>(m_code); in linkCode() [all …]
|
D | MacroAssemblerCodeRef.h | 209 : m_code(code) in MacroAssemblerCodeRef() 215 MacroAssemblerCodePtr m_code; variable
|
/external/webkit/Source/JavaScriptCore/jit/ |
D | JITCode.h | 56 return !m_ref.m_code.executableAddress(); 61 return m_ref.m_code; in addressForCall() 69 …rpret_cast<intptr_t>(pointerIntoCode) - reinterpret_cast<intptr_t>(m_ref.m_code.executableAddress(… in offsetOf() 77 …JSValue result = JSValue::decode(ctiTrampoline(m_ref.m_code.executableAddress(), registerFile, cal… in execute() 83 return m_ref.m_code.dataLocation(); in start() 88 ASSERT(m_ref.m_code.executableAddress()); in size()
|
/external/webkit/Source/WebCore/storage/ |
D | IDBDatabaseError.h | 55 unsigned short code() const { return m_code; } in code() 56 void setCode(unsigned short value) { m_code = value; } in setCode() 62 : m_code(code), m_message(message) { } in IDBDatabaseError() 64 unsigned short m_code; variable
|
D | SQLError.h | 43 unsigned code() const { return m_code; } in code() 58 …SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy())… in SQLError() 59 unsigned m_code; variable
|
D | DatabaseTask.cpp | 100 , m_code(code) in DatabaseOpenTask() 108 m_success = database()->performOpenAndVerify(m_setVersionInNewDatabase, m_code); in doPerformTask()
|
/external/webkit/Source/WebCore/page/ |
D | NavigatorUserMediaError.h | 41 NavigatorUserMediaError(ErrorCode code) : m_code(code) { } in NavigatorUserMediaError() 44 ErrorCode code() const { return m_code; } in code() 47 ErrorCode m_code;
|
D | GeolocationError.h | 47 ErrorCode code() const { return m_code; } in code() 52 : m_code(code) in GeolocationError() 57 ErrorCode m_code; variable
|
D | PositionError.h | 45 ErrorCode code() const { return m_code; } in code() 52 : m_code(code) in PositionError() 58 ErrorCode m_code; variable
|
/external/webkit/Source/WebCore/html/ |
D | MediaError.h | 42 Code code() const { return m_code; } in code() 45 MediaError(Code code) : m_code(code) { } in MediaError() 47 Code m_code; variable
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | Lexer.h | 69 int currentOffset() { return m_code - m_codeStart; } in currentOffset() 73 m_code = m_codeStart + offset; in setOffset() 78 if (LIKELY(m_code < m_codeEnd)) in setOffset() 79 m_current = *m_code; in setOffset() 133 const UChar* m_code; variable
|
D | Lexer.cpp | 238 ASSERT(m_code <= m_codeEnd); in currentCharacter() 239 return m_code; in currentCharacter() 259 m_code = data + source.startOffset(); in setCode() 265 m_buffer16.reserveInitialCapacity((m_codeEnd - m_code) / 2); in setCode() 267 if (LIKELY(m_code < m_codeEnd)) in setCode() 268 m_current = *m_code; in setCode() 279 ++m_code; in shift() 280 if (LIKELY(m_code < m_codeEnd)) in shift() 281 m_current = *m_code; in shift() 288 const UChar* code = m_code + offset; in peek() [all …]
|
/external/webkit/Source/WebCore/fileapi/ |
D | FileError.h | 61 ErrorCode code() const { return m_code; } in code() 65 : m_code(code) in FileError() 68 ErrorCode m_code; variable
|
D | DOMFileSystemSync.cpp | 85 int m_code; member in WebCore::__anonf872107b0111::GetPathHelper::GetPathResult 91 , m_code(0) in GetPathResult() 134 m_result->m_code = code; in didFail() 167 ec = result->m_code; in createFile()
|
/external/webkit/Source/WebCore/dom/ |
D | ExceptionBase.h | 40 unsigned short code() const { return m_code; } in code() 51 unsigned short m_code;
|
D | ExceptionBase.cpp | 37 : m_code(description.code) in ExceptionBase()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | ScheduledAction.cpp | 48 , m_code(String(), KURL(), TextPosition1::belowRangePosition()) in ScheduledAction() 122 proxy->evaluate(m_code, 0); in execute() 142 scriptController->evaluate(m_code); in execute()
|
D | ScheduledAction.h | 54 , m_code(code, url) in m_context() 71 ScriptSourceCode m_code; variable
|
D | V8LazyEventListener.cpp | 49 , m_code(code) in V8LazyEventListener() 116 code.append(m_code); in prepareListenerObject() 148 toStringResult.append(m_code); in prepareListenerObject()
|
/external/webkit/Source/JavaScriptCore/yarr/ |
D | YarrJIT.h | 68 …return reinterpret_cast<YarrJITCode>(m_ref.m_code.executableAddress())(input, start, length, outpu… in execute() 72 void *getAddr() { return m_ref.m_code.executableAddress(); } in getAddr()
|