HomeSort by relevance Sort by last modified time
    Searched refs:Identifier (Results 26 - 50 of 349) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSDOMPluginCustom.cpp 30 bool JSDOMPlugin::canGetItemsForName(ExecState*, DOMPlugin* plugin, const Identifier& propertyName)
35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
JSDOMWindowShell.h 73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
74 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
75 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
76 virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, unsigned attributes);
77 virtual bool deleteProperty(JSC::ExecState*, const JSC::Identifier& propertyName);
80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
81 virtual void defineSetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* setterFunction, unsigned attributes);
82 virtual bool defineOwnProperty(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&, bool shouldThrow);
83 virtual JSC::JSValue lookupGetter(JSC::ExecState*, const JSC::Identifier& propertyName);
84 virtual JSC::JSValue lookupSetter(JSC::ExecState*, const JSC::Identifier& propertyName)
    [all...]
JSDataGridColumnListCustom.cpp 41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName)
46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
  /external/webkit/Source/WebCore/bridge/c/
c_class.h 46 virtual MethodList methodsNamed(const Identifier&, Instance*) const;
47 virtual Field* fieldNamed(const Identifier&, Instance*) const;
c_utility.h 38 class Identifier;
49 Identifier identifierFromNPIdentifier(ExecState*, const NPUTF8* name);
  /external/webkit/Source/WebKit2/UIProcess/Launcher/
ThreadLauncher.cpp 43 CoreIPC::Connection::Identifier connectionIdentifier = createWebThread();
49 void ThreadLauncher::didFinishLaunchingThread(CoreIPC::Connection::Identifier identifier)
54 // FIXME: Dispose of the connection identifier.
58 m_client->didFinishLaunching(this, identifier);
  /external/webkit/Source/JavaScriptCore/runtime/
CommonIdentifiers.h 24 #include "Identifier.h"
87 const Identifier nullIdentifier;
88 const Identifier emptyIdentifier;
89 const Identifier underscoreProto;
90 const Identifier thisIdentifier;
91 const Identifier useStrictIdentifier;
93 #define JSC_IDENTIFIER_DECLARE_PROPERTY_NAME_GLOBAL(name) const Identifier name;
RegExpObject.cpp 37 static JSValue regExpObjectGlobal(ExecState*, JSValue, const Identifier&);
38 static JSValue regExpObjectIgnoreCase(ExecState*, JSValue, const Identifier&);
39 static JSValue regExpObjectMultiline(ExecState*, JSValue, const Identifier&);
40 static JSValue regExpObjectSource(ExecState*, JSValue, const Identifier&);
41 static JSValue regExpObjectLastIndex(ExecState*, JSValue, const Identifier&);
82 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
87 bool RegExpObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
92 JSValue regExpObjectGlobal(ExecState*, JSValue slotBase, const Identifier&)
97 JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, const Identifier&)
102 JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, const Identifier&
    [all...]
JSFunction.h 48 JSFunction(ExecState*, JSGlobalObject*, Structure*, int length, const Identifier&, NativeFunction);
49 JSFunction(ExecState*, JSGlobalObject*, Structure*, int length, const Identifier&, NativeExecutable*);
94 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
95 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
97 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
98 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
102 static JSValue argumentsGetter(ExecState*, JSValue, const Identifier&);
103 static JSValue callerGetter(ExecState*, JSValue, const Identifier&);
104 static JSValue lengthGetter(ExecState*, JSValue, const Identifier&);
PropertyNameArray.h 25 #include "Identifier.h"
38 typedef Vector<Identifier, 20> PropertyNameVector;
71 void add(const Identifier& identifier) { add(identifier.impl()); }
73 void addKnownUnique(StringImpl* identifier) { m_data->propertyNameVector().append(Identifier(m_globalData, identifier)); }
75 Identifier& operator[](unsigned i) { return m_data->propertyNameVector()[i]; }
76 const Identifier& operator[](unsigned i) const { return m_data->propertyNameVector()[i];
    [all...]
RegExpConstructor.cpp 43 static JSValue regExpConstructorInput(ExecState*, JSValue, const Identifier&);
44 static JSValue regExpConstructorMultiline(ExecState*, JSValue, const Identifier&);
45 static JSValue regExpConstructorLastMatch(ExecState*, JSValue, const Identifier&);
46 static JSValue regExpConstructorLastParen(ExecState*, JSValue, const Identifier&);
47 static JSValue regExpConstructorLeftContext(ExecState*, JSValue, const Identifier&);
48 static JSValue regExpConstructorRightContext(ExecState*, JSValue, const Identifier&);
49 static JSValue regExpConstructorDollar1(ExecState*, JSValue, const Identifier&);
50 static JSValue regExpConstructorDollar2(ExecState*, JSValue, const Identifier&);
51 static JSValue regExpConstructorDollar3(ExecState*, JSValue, const Identifier&);
52 static JSValue regExpConstructorDollar4(ExecState*, JSValue, const Identifier&)
    [all...]
JSStaticScopeObject.cpp 49 void JSStaticScopeObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&)
57 void JSStaticScopeObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
70 bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot)
JSVariableObject.cpp 37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
50 propertyNames.add(Identifier(exec, it->first.get()));
61 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor)
DatePrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
JSONObject.h 48 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
49 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
NumberConstructor.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
ObjectConstructor.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
StringPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
35 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 88 ALWAYS_INLINE Property(const Identifier* ident, PropertyNode::Type ty)
99 const Identifier* name;
132 ExpressionType createResolve(const Identifier*, int) { return ResolveExpr; }
138 ExpressionType createString(const Identifier*) { return StringExpr; }
142 ExpressionType createDotAccess(ExpressionType, const Identifier&, int, int, int) { return DotExpr; }
143 ExpressionType createRegExp(const Identifier& pattern, const Identifier&, int) { return Yarr::checkSyntax(pattern.ustring()) ? 0 : RegExpExpr; }
147 ExpressionType createAssignResolve(const Identifier&, ExpressionType, bool, int, int, int) { return AssignmentExpr; }
148 ExpressionType createFunctionExpr(const Identifier*, int, int, int, int, int, int) { return FunctionExpr; }
154 template <bool complete> Property createProperty(const Identifier* name, int, PropertyNode::Type type
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.h 38 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
39 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
40 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
74 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
124 JSC::JSValue jsTestObjReadOnlyIntAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
125 JSC::JSValue jsTestObjReadOnlyStringAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
126 JSC::JSValue jsTestObjReadOnlyTestObjAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
127 JSC::JSValue jsTestObjShortAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&);
129 JSC::JSValue jsTestObjUnsignedShortAttr(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&)
    [all...]
  /external/webkit/Source/JavaScriptCore/debugger/
DebuggerActivation.cpp 54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName)
79 bool DebuggerActivation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
84 void DebuggerActivation::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
89 void DebuggerActivation::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes)
94 JSValue DebuggerActivation::lookupGetter(ExecState* exec, const Identifier& propertyName)
99 JSValue DebuggerActivation::lookupSetter(ExecState* exec, const Identifier& propertyName)
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 41 class Identifier;
67 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0;
68 virtual Field* fieldNamed(const Identifier&, Instance*) const = 0;
69 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&) { return jsUndefined(); }
94 virtual bool setValueOfUndefinedField(ExecState*, const Identifier&, JSValue) { return false; }
96 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName) = 0;
115 virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&) { return false; }
116 virtual bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&) { return false; }
117 virtual void put(JSObject*, ExecState*, const Identifier&, JSValue, PutPropertySlot&) { }
  /external/webkit/Source/WebCore/bridge/
runtime_array.h 41 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
43 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
44 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
47 virtual bool deleteProperty(ExecState* exec, const Identifier &propertyName);
70 static JSValue lengthGetter(ExecState*, JSValue, const Identifier&);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
nuances.rb 13 | {false}? Identifier
14 | Identifier
19 Identifier: 'a'..'z'+ ;
  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.h 35 class Identifier;
44 typedef EncodedJSValue (*J_DFGOperation_EJI)(ExecState*, EncodedJSValue, Identifier*);
49 typedef void (*V_DFGOperation_EJJI)(ExecState*, EncodedJSValue, EncodedJSValue, Identifier*);
56 EncodedJSValue operationGetById(ExecState*, EncodedJSValue encodedBase, Identifier*);
59 void operationPutByIdStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
60 void operationPutByIdNonStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
61 void operationPutByIdDirectStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);
62 void operationPutByIdDirectNonStrict(ExecState*, EncodedJSValue encodedValue, EncodedJSValue encodedBase, Identifier*);

Completed in 739 milliseconds

12 3 4 5 6 7 8 91011>>