Searched refs:Identifier (Results 226 - 250 of 343) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bridge/
H A Dtestbindings.mm251 global.put(exec, Identifier("myInterface"), Instance::createRuntimeObject(Instance::ObjectiveCLanguage, (void *)myInterface));
265 Value lineVal = Object::dynamicCast(exVal).get(exec,Identifier("line"));
/external/webkit/Source/WebKit2/UIProcess/Plugins/
H A DPluginProcessProxy.h90 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier);
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProcessConnection.cpp55 PluginProcessConnection::PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier)
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h75 Identifier, enumerator in enum:clang::NestedNameSpecifier::SpecifierKind
378 /// \param Identifier The identifier.
383 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.cpp167 void FunctionBodyNode::finishParsing(const SourceCode& source, ParameterNode* firstParameter, const Identifier& ident)
173 void FunctionBodyNode::finishParsing(PassRefPtr<FunctionParameters> parameters, const Identifier& ident)
/external/webkit/Source/WebCore/bindings/js/
H A DScriptFunctionCall.cpp130 JSValue function = thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name)));
168 JSObject* constructor = asObject(thisObject->get(m_exec, Identifier(m_exec, stringToUString(m_name))));
H A DSerializedScriptValue.cpp347 JSValue getProperty(JSObject* object, const Identifier& propertyName)
547 void write(const Identifier& ident)
580 write(Identifier(m_exec, str));
588 write(Identifier(m_exec, str.impl()));
608 Identifier m_emptyIdentifier;
1036 void putProperty(JSObject* object, const Identifier& property, JSValue value)
1197 Vector<Identifier, 16> propertyNameStack;
1285 putProperty(outputObjectStack.last(), Identifier(m_exec, cachedString->ustring()), terminal);
1289 propertyNameStack.append(Identifier(m_exec, cachedString->ustring()));
H A DJSEventListener.cpp97 JSValue handleEventFunction = jsFunction->get(exec, Identifier(exec, "handleEvent"));
H A DScriptValue.cpp151 const Identifier& name = propertyNames[i];
/external/webkit/Source/WebCore/bridge/objc/
H A Dobjc_instance.mm179 ObjCRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
197 JSValue ObjcInstance::getMethod(ExecState* exec, const Identifier& propertyName)
383 bool ObjcInstance::setValueOfUndefinedField(ExecState* exec, const Identifier& property, JSValue aValue)
411 JSValue ObjcInstance::getValueOfUndefinedField(ExecState* exec, const Identifier& property) const
/external/webkit/Source/JavaScriptCore/runtime/
H A DObjectConstructor.cpp79 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, "Object"))
87 bool ObjectConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
92 bool ObjectConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
146 if (!object->getOwnPropertyDescriptor(exec, Identifier(exec, propertyName), descriptor))
293 O->defineOwnProperty(exec, Identifier(exec, propertyName), descriptor, true);
H A DJSArray.cpp249 return getOwnPropertySlot(exec, Identifier::from(exec, i), slot);
269 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, i), slot);
272 bool JSArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
287 bool JSArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
321 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
380 put(exec, Identifier::from(exec, i), value, slot);
481 bool JSArray::deleteProperty(ExecState* exec, const Identifier& propertyName)
526 return deleteProperty(exec, Identifier::from(exec, i));
542 propertyNames.add(Identifier::from(exec, i));
548 propertyNames.add(Identifier
[all...]
H A DExecutable.cpp75 FunctionExecutable::FunctionExecutable(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine)
87 FunctionExecutable::FunctionExecutable(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine)
345 FunctionExecutable* FunctionExecutable::fromGlobalCode(const Identifier& functionName, ExecState* exec, Debugger* debugger, const SourceCode& source, JSObject** exception)
/external/webkit/Source/WebCore/bindings/objc/
H A DWebScriptObject.mm295 JSValue function = [self _imp]->get(exec, Identifier(exec, stringToUString(String(name))));
372 [self _imp]->put(exec, Identifier(exec, stringToUString(String(key))), convertObjcValueToValue(exec, &value, ObjcObjectType, [self _rootObject]), slot);
397 JSValue result = [self _imp]->get(exec, Identifier(exec, stringToUString(String(key))));
426 [self _imp]->deleteProperty(exec, Identifier(exec, stringToUString(String(key))));
445 BOOL result = [self _imp]->hasProperty(exec, Identifier(exec, stringToUString(String(key))));
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp733 if (Tok.is(AsmToken::Identifier)) {
804 StringRef Identifier; local
805 if (Parser.parseIdentifier(Identifier))
810 MCSymbol *Sym = getContext().GetOrCreateSymbol("$" + Identifier);
819 case AsmToken::Identifier:
854 if (Tok.isNot(AsmToken::Identifier))
870 if (nextTok.isNot(AsmToken::Identifier))
1117 } else if (Tok.is(AsmToken::Identifier)) {
1356 if (Reg.is(AsmToken::Identifier)) {
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DConnection.cpp185 PassRefPtr<Connection> Connection::createServerConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
190 PassRefPtr<Connection> Connection::createClientConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop)
/external/webkit/Source/WebKit2/UIProcess/
H A DWebProcessProxy.cpp327 void WebProcessProxy::didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier connectionIdentifier)
332 void WebProcessProxy::didFinishLaunching(ThreadLauncher*, CoreIPC::Connection::Identifier connectionIdentifier)
337 void WebProcessProxy::didFinishLaunching(CoreIPC::Connection::Identifier connectionIdentifier)
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNPJSObject.cpp80 static Identifier identifierFromIdentifierRep(ExecState* exec, IdentifierRep* identifierRep)
87 return Identifier(exec, String::fromUTF8WithLatin1Fallback(string, length).impl());
210 Identifier identifier = identifierFromIdentifierRep(exec, identifierRep);
/external/clang/tools/libclang/
H A DIndexTypeSourceInfo.cpp130 case NestedNameSpecifier::Identifier:
/external/llvm/utils/vim/
H A Dllvm.vim98 HiLink llvmNoName Identifier
102 HiLink llvmIdentifier Identifier
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.h135 void tryCacheGetByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const Identifier& propertyName, const PropertySlot&);
/external/webkit/Source/JavaScriptGlue/
H A DJSValueWrapper.cpp83 Identifier name = *iterator;
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp938 ret->put(exec, Identifier(exec, reinterpret_cast_ptr<const UChar *>(s.constData()), s.length()), val, slot);
984 QtRuntimeMethod::QtRuntimeMethod(QtRuntimeMethodData* dd, ExecState* exec, const Identifier& ident, PassRefPtr<QtInstance> inst)
1394 QtRuntimeMetaMethod::QtRuntimeMetaMethod(ExecState* exec, const Identifier& ident, PassRefPtr<QtInstance> inst, int index, const QByteArray& signature, bool allowPrivate)
1455 bool QtRuntimeMetaMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
1471 bool QtRuntimeMetaMethod::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
1500 propertyNames.add(Identifier(exec, "connect"));
1501 propertyNames.add(Identifier(exec, "disconnect"));
1508 JSValue QtRuntimeMetaMethod::lengthGetter(ExecState*, JSValue, const Identifier&) argument
1514 JSValue QtRuntimeMetaMethod::connectGetter(ExecState* exec, JSValue slotBase, const Identifier& ident)
1524 JSValue QtRuntimeMetaMethod::disconnectGetter(ExecState* exec, JSValue slotBase, const Identifier
1714 lengthGetter(ExecState*, JSValue, const Identifier&) argument
[all...]
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DNetscapePluginHostProxy.mm605 static Identifier identifierFromIdentifierRep(IdentifierRep* identifier)
611 return Identifier(JSDOMWindow::commonJSGlobalData(), stringToUString(String::fromUTF8WithLatin1Fallback(str, strlen(str))));
633 Identifier methodNameIdentifier = identifierFromIdentifierRep(identifier);
722 Identifier propertyNameIdentifier = identifierFromIdentifierRep(identifier);
758 Identifier propertyNameIdentifier = identifierFromIdentifierRep(identifier);
790 Identifier propertyNameIdentifier = identifierFromIdentifierRep(identifier);
822 Identifier propertyNameIdentifier = identifierFromIdentifierRep(identifier);
852 Identifier methodNameIdentifier = identifierFromIdentifierRep(identifier);
/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
H A DConnectionWin.cpp83 void Connection::platformInitialize(Identifier identifier)

Completed in 446 milliseconds

1234567891011>>