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

  /external/webkit/WebCore/svg/
SVGTests.cpp 45 if (!m_features)
46 m_features = SVGStringList::create(SVGNames::requiredFeaturesAttr);
48 return m_features.get();
76 if (m_features) {
77 for (unsigned long i = 0; i < m_features->numberOfItems(); i++) {
78 String value = m_features->getItem(i, ec);
SVGTests.h 51 mutable RefPtr<SVGStringList> m_features; member in class:WebCore::SVGTests
  /external/webkit/JavaScriptCore/parser/
Grammar.y 323 IDENT ':' AssignmentExpr { $$ = createNodeInfo<PropertyNode*>(new (GLOBAL_DATA) PropertyNode(GLOBAL_DATA, *$1, $3.m_node, PropertyNode::Constant), $3.m_features, $3.m_numConstants); }
324 | STRING ':' AssignmentExpr { $$ = createNodeInfo<PropertyNode*>(new (GLOBAL_DATA) PropertyNode(GLOBAL_DATA, *$1, $3.m_node, PropertyNode::Constant), $3.m_features, $3.m_numConstants); }
325 | NUMBER ':' AssignmentExpr { $$ = createNodeInfo<PropertyNode*>(new (GLOBAL_DATA) PropertyNode(GLOBAL_DATA, $1, $3.m_node, PropertyNode::Constant), $3.m_features, $3.m_numConstants); }
329 $$ = createNodeInfo<PropertyNode*>(makeGetterOrSetterPropertyNode(GLOBAL_DATA, *$1, *$2, $4.m_node.head, $7, GLOBAL_DATA->lexer->sourceCode($6, $8, @6.first_line)), $4.m_features | ClosureFeature, 0);
330 if ($4.m_features & ArgumentsFeature)
341 $$.m_features = $1.m_features;
345 $$.m_features = $1.m_features | $3.m_features;
    [all...]
NodeInfo.h 30 CodeFeatures m_features; member in struct:JSC::NodeInfo
48 CodeFeatures m_features; member in struct:JSC::NodeDeclarationInfo
Parser.h 64 CodeFeatures m_features; member in class:JSC::Parser
84 m_features,
Parser.cpp 86 m_features = features;
Nodes.cpp 94 , m_features(NoFeatures)
102 , m_features(features)
Nodes.h 1430 CodeFeatures m_features; member in class:JSC::ScopeNode
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Executable.h 110 , m_features(0)
123 , m_features(0)
139 bool usesEval() const { return m_features & EvalFeature; }
140 bool usesArguments() const { return m_features & ArgumentsFeature; }
141 bool needsActivation() const { return m_features & (EvalFeature | ClosureFeature | WithFeature | CatchFeature); }
148 m_features = features;
154 CodeFeatures m_features; member in class:JSC::ScriptExecutable
  /external/webkit/WebKit/wx/
WebView.h 343 wxWebKitWindowFeatures GetWindowFeatures() { return m_features; }
344 void SetWindowFeatures(wxWebKitWindowFeatures features) { m_features = features; }
351 wxWebKitWindowFeatures m_features; member in class:wxWebViewNewWindowEvent

Completed in 53 milliseconds