Searched refs:m_location (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DJITWriteBarrier.h51 ASSERT(!m_location);
52 m_location = CodeLocationDataLabelPtr(JITWriteBarrierFlag);
57 return !!m_location;
62 ASSERT(!m_location);
63 m_location = location;
68 ASSERT((!!m_location) && m_location.executableAddress() != JITWriteBarrierFlag);
69 return m_location;
83 m_location = location;
84 ASSERT(((!!m_location)
108 CodeLocationDataLabelPtr m_location; member in class:JSC::JITWriteBarrierBase
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DLabel.h46 , m_location(invalidLocation)
55 if (m_location == invalidLocation) {
59 return m_location - opcode;
70 bool isForward() const { return m_location == invalidLocation; }
84 unsigned m_location; member in class:JSC::Label
H A DBytecodeGenerator.cpp54 m_location = location;
58 m_generator->m_instructions[m_unresolvedJumps[i].second].u.operand = m_location - m_unresolvedJumps[i].first;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/ios/
H A DWebPlatformTouchPointIOS.cpp41 encoder << m_location; local
49 if (!decoder.decode(result.m_location))
/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DSourceProviderCacheItem.h64 token.m_location.startOffset = closeBraceOffset;
65 token.m_location.endOffset = closeBraceOffset + 1;
66 token.m_location.line = closeBraceLine;
67 token.m_location.lineStartOffset = closeBraceLineStartOffset;
68 // token.m_location.sourceOffset is initialized once by the client. So,
H A DParser.h539 int lastLine = m_token.m_location.line;
540 int lastTokenEnd = m_token.m_location.endOffset;
541 int lastTokenLineStart = m_token.m_location.lineStartOffset;
549 int lastLine = m_token.m_location.line;
550 int lastTokenEnd = m_token.m_location.endOffset;
551 int lastTokenLineStart = m_token.m_location.lineStartOffset;
588 return m_token.m_location.startOffset;
598 return m_token.m_location.line;
613 return m_token.m_location.lineStartOffset;
618 return m_token.m_location;
[all...]
H A DParser.cpp213 m_token.m_location.line = source.firstLine();
214 m_token.m_location.startOffset = source.startOffset();
215 m_token.m_location.endOffset = source.startOffset();
216 m_token.m_location.lineStartOffset = source.startOffset();
555 return context.createBindingLocation(m_token.m_location, name, m_token.m_startPosition, m_token.m_endPosition);
572 auto arrayPattern = context.createArrayPattern(m_token.m_location);
579 context.appendArrayPatternSkipEntry(arrayPattern, m_token.m_location);
583 JSTokenLocation location = m_token.m_location;
605 auto objectPattern = context.createObjectPattern(m_token.m_location);
610 JSTokenLocation location = m_token.m_location;
[all...]
H A DParserTokens.h202 JSTokenLocation m_location; member in struct:JSC::JSToken
H A DLexer.h349 JSTokenLocation* tokenLocation = &tokenRecord->m_location;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DWebEvent.h275 , m_location(location)
281 WebCore::IntPoint location() const { return m_location; }
290 WebCore::IntPoint m_location; member in class:WebKit::WebPlatformTouchPoint
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorRuntimeAgent.cpp110 range = buildErrorRangeObject(error.m_token.m_location);

Completed in 141 milliseconds