HomeSort by relevance Sort by last modified time
    Searched refs:m_code (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ExceptionState.h 48 : m_code(0)
54 bool hadException() const { return !m_exception.isEmpty() || m_code; }
57 ExceptionCode code() { return m_code; }
62 if (!m_code)
64 throwDOMException(m_code);
72 ExceptionCode m_code; member in class:WebCore::ExceptionState
ExceptionState.cpp 41 m_code = 0;
49 m_code = ec;
67 m_code = TypeError;
73 m_code = ec;
78 m_code = TypeError;
ScheduledAction.cpp 51 , m_code(String(), KURL(), TextPosition::belowRangePosition())
61 , m_code(code, url)
102 frame->script()->compileAndRunScript(m_code);
119 worker->script()->evaluate(m_code);
ScheduledAction.h 63 ScriptSourceCode m_code; member in class:WebCore::ScheduledAction
V8LazyEventListener.h 74 String m_code; member in class:WebCore::V8LazyEventListener
V8LazyEventListener.cpp 58 , m_code(code)
151 // we have to do this hack! What if m_code escapes to run arbitrary script?
161 m_code + "\n" // Insert '\n' otherwise //-style comments could break the handler.
216 String toStringString = "function " + m_functionName + "(" + m_eventParameterName + ") {\n " + m_code + "\n}";
230 // m_code = String();
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaError.h 47 Code code() const { return m_code; }
50 MediaError(Code code) : m_code(code)
55 Code m_code; member in class:WebCore::MediaError
MediaKeyError.h 49 Code code() const { return m_code; }
53 explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCode)
58 Code m_code; member in class:WebCore::MediaKeyError
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationError.h 45 ErrorCode code() const { return m_code; }
50 : m_code(code)
55 ErrorCode m_code; member in class:WebCore::GeolocationError
PositionError.h 46 ErrorCode code() const { return m_code; }
53 : m_code(code)
60 ErrorCode m_code; member in class:WebCore::PositionError
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.h 45 unsigned short code() const { return m_code; }
56 DOMException(unsigned short m_code, const String& name, const String& message);
58 unsigned short m_code; member in class:WebCore::DOMException
DOMException.cpp 92 m_code = code;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileError.h 74 ErrorCode code() const { return m_code; }
80 : m_code(code)
85 ErrorCode m_code; member in class:WebCore::FileError
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
CloseEvent.h 69 unsigned short code() const { return m_code; }
79 , m_code(0)
87 , m_code(code)
96 , m_code(initializer.code)
103 unsigned short m_code; member in class:WebCore::CloseEvent
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLError.h 50 unsigned code() const { return m_code; }
70 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy())
75 unsigned m_code; member in class:WebCore::SQLError
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
CodeAttribute_info.java 97 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; // never null [valid content extent is m_codeSize field in class:CodeAttribute_info
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemSync.cpp 85 int m_code; member in class:WebCore::__anon12760::CreateFileHelper::CreateFileResult
91 , m_code(0)
109 m_result->m_code = code;
165 es.throwDOMException(result->m_code);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebSpeechRecognizer.cpp 95 , m_code(code)
100 virtual void run() OVERRIDE { m_recognizer->client()->didReceiveError(m_recognizer->handle(), m_message, m_code); }
103 WebSpeechRecognizerClient::ErrorCode m_code; member in class:WebTestRunner::__anon12805::ErrorTask
  /external/emma/lib/
emma.jar 

Completed in 416 milliseconds