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

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSCallbackData.cpp 51 JSValue function = callback()->get(exec, Identifier(exec, "handleEvent"));
JSNodeFilterCondition.cpp 60 function = m_filter.get().get(exec, Identifier(exec, "acceptNode"));
JSSQLResultSetRowListCustom.cpp 77 object->putDirect(exec->globalData(), Identifier(exec, stringToUString(m_impl->columnNames()[i])), jsValue, DontDelete | ReadOnly);
JSDOMWindowCustom.cpp 107 JSValue nonCachingStaticFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
112 static JSValue childFrameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
122 static JSValue namedItemGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
137 bool JSDOMWindow::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
280 bool JSDOMWindow::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
352 void JSDOMWindow::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
371 bool JSDOMWindow::deleteProperty(ExecState* exec, const Identifier& propertyName)
395 void JSDOMWindow::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes)
408 void JSDOMWindow::defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes)
416 bool JSDOMWindow::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow
    [all...]
JSDOMBinding.h 231 String identifierToString(const JSC::Identifier&);
235 AtomicString identifierToAtomicString(const JSC::Identifier&);
237 AtomicStringImpl* findAtomicString(const JSC::Identifier&);
292 JSC::JSValue objectToStringFunctionGetter(JSC::ExecState*, JSC::JSValue, const JSC::Identifier& propertyName);
328 inline String identifierToString(const JSC::Identifier& i)
338 inline AtomicString identifierToAtomicString(const JSC::Identifier& identifier)
340 return AtomicString(identifier.impl());
JSArrayBufferViewHelper.h 66 uint32_t length = array->get(exec, JSC::Identifier(exec, "length")).toInt32(exec);
137 uint32_t length = srcArray->get(exec, JSC::Identifier(exec, "length")).toUInt32(exec);
  /external/webkit/Source/WebCore/bridge/c/
c_instance.h 62 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
c_utility.cpp 151 Identifier identifierFromNPIdentifier(ExecState* exec, const NPUTF8* name)
153 return Identifier(exec, WebCore::stringToUString(convertUTF8ToUTF16WithLatin1Fallback(name, -1)));
  /external/webkit/Source/WebCore/storage/
IDBKeyPath.cpp 135 element.identifier = String(start, m_ptr - start);
168 // Start => {Identifier, Array}
169 // Identifier => {Dot, Array, End}
171 // Dot => {Identifier}
173 enum ParserState { Identifier, Array, Dot, End };
179 state = Identifier;
191 case Identifier : {
256 state = Identifier;
  /external/webkit/Source/WebKit2/PluginProcess/
PluginProcess.h 47 void initialize(CoreIPC::Connection::Identifier, RunLoop*);
WebProcessConnection.cpp 38 PassRefPtr<WebProcessConnection> WebProcessConnection::create(CoreIPC::Connection::Identifier connectionIdentifier)
50 WebProcessConnection::WebProcessConnection(CoreIPC::Connection::Identifier connectionIdentifier)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPMethod.cpp 44 JSNPMethod::JSNPMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, NPIdentifier npIdentifier)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnectionManager.cpp 66 CoreIPC::Connection::Identifier connectionIdentifier;
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.h 298 static FunctionExecutable* create(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
303 static FunctionExecutable* create(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
366 const Identifier& name() { return m_name; }
374 static FunctionExecutable* fromGlobalCode(const Identifier&, ExecState*, Debugger*, const SourceCode&, JSObject** exception);
378 FunctionExecutable(JSGlobalData*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
379 FunctionExecutable(ExecState*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
392 Identifier m_name;
JSValue.h 41 class Identifier;
206 JSValue get(ExecState*, const Identifier& propertyName) const;
207 JSValue get(ExecState*, const Identifier& propertyName, PropertySlot&) const;
210 void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
211 void putDirect(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 46 assert(II && "Identifier cannot be NULL");
99 assert(II && "Identifier cannot be NULL");
120 return Identifier;
159 case Identifier:
160 // Identifier specifiers always represent dependent types
180 case Identifier:
181 // Identifier specifiers always represent dependent types
199 case Identifier:
224 case Identifier:
301 case NestedNameSpecifier::Identifier
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObjectFunctions.h 114 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
169 bool JSCallbackObject<Base>::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
188 void JSCallbackObject<Base>::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
247 bool JSCallbackObject<Base>::deleteProperty(ExecState* exec, const Identifier& propertyName)
292 return deleteProperty(exec, Identifier::from(exec, propertyName));
419 propertyNames.add(Identifier(exec, name));
430 propertyNames.add(Identifier(exec, name));
518 JSValue JSCallbackObject<Base>::staticValueGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
549 JSValue JSCallbackObject<Base>::staticFunctionGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
575 JSValue JSCallbackObject<Base>::callbackGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName
    [all...]
JSObjectRef.cpp 36 #include "Identifier.h"
96 Identifier nameID = name ? name->identifier(&exec->globalData()) : Identifier(exec, "anonymous");
120 Identifier nameID = name ? name->identifier(&exec->globalData()) : Identifier(exec, "anonymous");
248 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
258 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->globalData()));
273 Identifier name(propertyName->identifier(&exec->globalData()))
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp 236 stubCall.addArgument(TrustedImmPtr(&m_codeBlock->identifier(currentInstruction[2].u.operand)));
245 stubCall.addArgument(TrustedImmPtr(&m_codeBlock->identifier(currentInstruction[2].u.operand)));
254 stubCall.addArgument(TrustedImmPtr(&m_codeBlock->identifier(currentInstruction[3].u.operand)));
274 Identifier* ident = &(m_codeBlock->identifier(currentInstruction[3].u.operand));
293 Identifier* ident = &(m_codeBlock->identifier(currentInstruction[2].u.operand));
327 Identifier* ident = &(m_codeBlock->identifier(currentInstruction[3].u.operand));
375 Identifier* ident = &(m_codeBlock->identifier(currentInstruction[3].u.operand))
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.cpp 149 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
150 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
169 bool JSTestObjConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
174 bool JSTestObjConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
247 bool JSTestObjPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
252 bool JSTestObjPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
271 bool JSTestObj::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
276 bool JSTestObj::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
281 JSValue jsTestObjReadOnlyIntAttr(ExecState* exec, JSValue slotBase, const Identifier&)
290 JSValue jsTestObjReadOnlyStringAttr(ExecState* exec, JSValue slotBase, const Identifier&
    [all...]
  /external/clang/lib/Analysis/
PrintfFormatString.cpp 425 const IdentifierInfo *Identifier = QT.getBaseTypeIdentifier();
426 if (Identifier->getName() == "size_t") {
428 } else if (Identifier->getName() == "ssize_t") {
431 } else if (Identifier->getName() == "intmax_t") {
433 } else if (Identifier->getName() == "uintmax_t") {
435 } else if (Identifier->getName() == "ptrdiff_t") {
ScanfFormatString.cpp 381 const IdentifierInfo *Identifier = QT.getBaseTypeIdentifier();
382 if (Identifier->getName() == "size_t") {
384 } else if (Identifier->getName() == "ssize_t") {
387 } else if (Identifier->getName() == "intmax_t") {
389 } else if (Identifier->getName() == "uintmax_t") {
391 } else if (Identifier->getName() == "ptrdiff_t") {
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.cpp 139 bool QtInstance::getOwnPropertySlot(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
144 void QtInstance::put(JSObject* object, ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
220 array.add(Identifier(exec, prop.name()));
226 array.add(Identifier(exec, ba.constData()));
233 array.add(Identifier(exec, method.signature()));
238 JSValue QtInstance::getMethod(ExecState* exec, const Identifier& propertyName)
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 114 bool invoke(uint32_t objectID, const JSC::Identifier& methodName, data_t argumentsData, mach_msg_type_number_t argumentsLength, data_t& resultData, mach_msg_type_number_t& resultLength);
119 bool getProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t &resultData, mach_msg_type_number_t& resultLength);
121 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength);
123 bool removeProperty(uint32_t objectID, const JSC::Identifier& propertyName);
125 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName);
127 bool hasMethod(uint32_t objectID, const JSC::Identifier& methodName);
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 163 bool BytecodeGenerator::addVar(const Identifier& ident, bool isConstant, RegisterID*& r0)
178 bool BytecodeGenerator::addGlobalVar(const Identifier& ident, bool isConstant, RegisterID*& r0)
400 const Identifier& ident = function->ident();
412 const Identifier& ident = *varStack[i].first;
428 const Identifier& ident = function->ident();
444 const Identifier& ident = *varStack[i].first;
527 Vector<Identifier> variables;
543 void BytecodeGenerator::addParameter(const Identifier& ident, int parameterIndex)
558 RegisterID* BytecodeGenerator::registerFor(const Identifier& ident)
576 bool BytecodeGenerator::willResolveToArguments(const Identifier& ident
    [all...]

Completed in 801 milliseconds

1 2 3 4 5 6 78 91011>>