Home
last modified time | relevance | path

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

/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/chromium_org/third_party/WebKit/Source/bindings/v8/
DExceptionState.h57 : m_code(0) in ExceptionState()
65 : m_code(0) in ExceptionState()
73 : m_code(0) in ExceptionState()
88 bool hadException() const { return !m_exception.isEmpty() || m_code; } in hadException()
91 ExceptionCode code() const { return m_code; } in code()
96 if (!m_code) in throwIfNeeded()
98 throwUninformativeAndGenericDOMException(m_code); in throwIfNeeded()
110 ExceptionCode m_code;
DExceptionState.cpp42 m_code = 0; in clearException()
54 m_code = ec; in throwDOMException()
62 m_code = SecurityError; in throwSecurityError()
82 m_code = TypeError; in throwTypeError()
88 m_code = ec; in throwDOMException()
93 m_code = TypeError; in throwTypeError()
98 m_code = SecurityError; in throwSecurityError()
DScheduledAction.cpp51 , m_code(String(), KURL(), TextPosition::belowRangePosition()) in ScheduledAction()
61 , m_code(code, url) in ScheduledAction()
102 frame->script().executeScriptAndReturnValue(context, ScriptSourceCode(m_code)); in execute()
120 worker->script()->evaluate(m_code); in execute()
DV8LazyEventListener.cpp59 , m_code(code) in V8LazyEventListener()
134 …orInstrumentation::preprocessEventListener(toDocument(context)->frame(), m_code, m_sourceURL, m_fu… in prepareListenerObject()
213 …ingString = "function " + m_functionName + "(" + m_eventParameterName + ") {\n " + m_code + "\n}"; in prepareListenerObject()
DScheduledAction.h64 ScriptSourceCode m_code; variable
DV8LazyEventListener.h74 String m_code; variable
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DCloseEvent.h69 unsigned short code() const { return m_code; } in code()
79 , m_code(0) in CloseEvent()
87 , m_code(code) in CloseEvent()
96 , m_code(initializer.code) in CloseEvent()
103 unsigned short m_code; variable
/external/chromium_org/third_party/WebKit/Source/core/html/
DMediaError.h47 Code code() const { return m_code; } in code()
50 MediaError(Code code) : m_code(code) in MediaError()
55 Code m_code; variable
DMediaKeyError.h49 Code code() const { return m_code; } in code()
53 …explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCod… in MediaKeyError()
58 Code m_code; variable
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
DGeolocationError.h45 ErrorCode code() const { return m_code; } in code()
50 : m_code(code) in GeolocationError()
55 ErrorCode m_code; variable
DPositionError.h46 ErrorCode code() const { return m_code; } in code()
53 : m_code(code) in PositionError()
60 ErrorCode m_code; variable
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDOMException.h45 unsigned short code() const { return m_code; } in code()
61 …DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const Stri…
63 unsigned short m_code; variable
DDOMException.cpp92 m_code = code; in DOMException()
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DSQLError.h50 unsigned code() const { return m_code; } in code()
70 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy()) in SQLError()
75 unsigned m_code; variable
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DDOMFileSystemSync.cpp90 int m_code; member in WebCore::__anonfe1df2520111::CreateFileHelper::CreateFileResult
96 , m_code(0) in CreateFileResult()
114 m_result->m_code = code; in didFail()
172 exceptionState.throwUninformativeAndGenericDOMException(result->m_code); in createFile()
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
DFileError.h75 ErrorCode code() const { return m_code; } in code()
82 ErrorCode m_code; variable
DFileError.cpp142 , m_code(code) in FileError()
/external/chromium_org/third_party/WebKit/Source/testing/runner/
DMockWebSpeechRecognizer.cpp95 , m_code(code) in ErrorTask()
100 …() OVERRIDE { m_recognizer->client()->didReceiveError(m_recognizer->handle(), m_message, m_code); } in run()
103 WebSpeechRecognizerClient::ErrorCode m_code; member in WebTestRunner::__anon7cf61bc20111::ErrorTask