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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
StringConstructor.cpp 52 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, stringPrototype->classInfo()->className))
ObjectConstructor.cpp 79 : 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);
JSArray.cpp 249 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));
533 // FIXME: Filling PropertyNameArray with an identifier for every integer
542 propertyNames.add(Identifier::from(exec, i))
    [all...]
Executable.cpp 75 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/js/
JSDOMBinding.cpp 245 AtomicStringImpl* findAtomicString(const Identifier& identifier)
247 if (identifier.isNull())
249 StringImpl* impl = identifier.impl();
291 int lineNumber = exceptionObject->get(exec, Identifier(exec, "line")).toInt32(exec);
292 UString exceptionSourceURL = exceptionObject->get(exec, Identifier(exec, "sourceURL")).toString(exec);
424 JSValue objectToStringFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
JSLazyEventListener.cpp 100 JSObject* jsFunction = constructFunction(exec, exec->lexicalGlobalObject(), args, Identifier(exec, stringToUString(m_functionName)), stringToUString(m_sourceURL), m_lineNumber); // FIXME: is globalExec ok?
ScriptFunctionCall.cpp 130 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))));
SerializedScriptValue.cpp 347 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)
    [all...]
  /external/webkit/Source/WebCore/bridge/
npruntime.cpp 36 #include <runtime/Identifier.h>
65 bool _NPN_IdentifierIsString(NPIdentifier identifier)
67 return static_cast<IdentifierRep*>(identifier)->isString();
70 NPUTF8 *_NPN_UTF8FromIdentifier(NPIdentifier identifier)
72 const char* string = static_cast<IdentifierRep*>(identifier)->string();
79 int32_t _NPN_IntFromIdentifier(NPIdentifier identifier)
81 return static_cast<IdentifierRep*>(identifier)->number();
testbindings.mm 251 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/
PluginProcessProxy.h 65 // Asks the plug-in process to create a new connection to a web process. The connection identifier will be
90 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.cpp 55 PluginProcessConnection::PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier)
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 39 /// specifiers, each of which can be a namespace, type, identifier
62 /// can be an identifier, a declaration, or a type.
74 /// \brief An identifier, stored as an IdentifierInfo*.
75 Identifier,
109 /// \brief Builds a specifier combining a prefix and an identifier.
112 /// referencing an identifier are only permitted when the identifier
133 /// \brief Builds a specifier that consists of just an identifier.
158 /// \brief Retrieve the identifier stored in this nested name
374 /// nested-name-specifier component of the form 'identifier::'
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.cpp 167 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/bridge/objc/
objc_instance.mm 179 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/WebCore/bindings/objc/
WebScriptObject.mm 295 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/clang/include/clang/Sema/
DeclSpec.h 94 /// nested-name-specifier component of the form 'identifier::'.
99 /// \param Identifier The identifier.
101 /// \param IdentifierLoc The location of the identifier.
104 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
774 /// \brief An identifier.
797 /// \brief When Kind == IK_Identifier, the parsed identifier, or when Kind
798 /// == IK_UserLiteralId, the identifier suffix.
799 IdentifierInfo *Identifier;
836 /// which will be the location of the identifier, "operator" keyword
    [all...]
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 396 case AsmToken::Identifier:
423 case AsmToken::Identifier:
445 case AsmToken::Identifier:
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.cpp 185 PassRefPtr<Connection> Connection::createServerConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
187 return adoptRef(new Connection(identifier, true, client, clientRunLoop));
190 PassRefPtr<Connection> Connection::createClientConnection(Identifier identifier, Client* client, RunLoop* clientRunLoop)
192 return adoptRef(new Connection(identifier, false, client, clientRunLoop));
195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop)
214 platformInitialize(identifier);
  /external/webkit/Source/WebKit2/UIProcess/
WebProcessProxy.cpp 327 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/
NPJSObject.cpp 80 static Identifier identifierFromIdentifierRep(ExecState* exec, IdentifierRep* identifierRep)
87 return Identifier(exec, String::fromUTF8WithLatin1Fallback(string, length).impl());
139 bool NPJSObject::hasProperty(NPIdentifier identifier)
141 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(identifier);
210 Identifier identifier = identifierFromIdentifierRep(exec, identifierRep); local
212 if (!m_jsObject->hasProperty(exec, identifier)) {
217 m_jsObject->deleteProperty(exec, identifier);
  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 131 case NestedNameSpecifier::Identifier:
  /external/llvm/lib/MC/MCDisassembler/
EDToken.cpp 143 case AsmToken::Identifier:
152 // any identifier that isn't an opcode is mere punctuation; so we fall
  /external/llvm/utils/vim/
llvm.vim 101 HiLink llvmNoName Identifier
105 HiLink llvmIdentifier Identifier
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 135 void tryCacheGetByID(CallFrame*, CodeBlock*, Instruction*, JSValue baseValue, const Identifier& propertyName, const PropertySlot&);

Completed in 2609 milliseconds

1 2 3 4 5 6 7 8 91011>>