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

1 2 3 4 5 6 7 891011>>

  /external/v8/src/
preparser.cc 113 case i::Token::IDENTIFIER:
296 // 'function' Identifier '(' FormalParameterListopt ')' '{' FunctionBody '}'
299 Identifier identifier = ParseIdentifier(CHECK_OK); local
305 !identifier.IsValidStrictVariable()) {
309 if (identifier.IsFutureStrictReserved()) {
365 // ('var' | 'const') (Identifier ('=' AssignmentExpression)?)+[',']
372 // Identifier '=' AssignmentExpression
449 Identifier identifier = ParseIdentifier(CHECK_OK) local
1036 Identifier identifier = Identifier::Default(); local
    [all...]
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmLexer.cpp 97 case AsmToken::Identifier:
  /external/webkit/Source/JavaScriptCore/runtime/
Arguments.h 105 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
107 virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&);
109 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
111 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
ArrayConstructor.cpp 41 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, arrayPrototype->classInfo()->className))
BooleanConstructor.cpp 32 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, booleanPrototype->classInfo()->className))
JSCell.h 128 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
130 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
142 bool fastGetOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
159 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
JSString.cpp 271 bool JSString::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
292 bool JSString::getStringPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
309 bool JSString::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
325 return JSString::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
NativeErrorConstructor.cpp 36 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, nameAndMessage))
JSONObject.cpp 65 PropertyNameForFunctionCall(const Identifier&);
71 const Identifier* m_identifier;
176 inline PropertyNameForFunctionCall::PropertyNameForFunctionCall(const Identifier& identifier)
177 : m_identifier(&identifier)
222 m_arrayReplacerPropertyNames.add(Identifier(exec, propertyName));
228 m_arrayReplacerPropertyNames.add(Identifier::from(exec, value));
238 m_arrayReplacerPropertyNames.add(Identifier(exec, propertyName));
539 Identifier& propertyName = m_propertyNames->propertyNameVector()[index];
597 bool JSONObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot
    [all...]
Structure.cpp 29 #include "Identifier.h"
284 void Structure::despecifyDictionaryFunction(JSGlobalData& globalData, const Identifier& propertyName)
298 Structure* Structure::addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
317 Structure* Structure::addPropertyTransition(JSGlobalData& globalData, Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
379 Structure* Structure::removePropertyTransition(JSGlobalData& globalData, Structure* structure, const Identifier& propertyName, size_t& offset)
408 Structure* Structure::despecifyFunctionTransition(JSGlobalData& globalData, Structure* structure, const Identifier& replaceFunction)
580 size_t Structure::addPropertyWithoutTransition(JSGlobalData& globalData, const Identifier& propertyName, unsigned attributes, JSCell* specificValue)
598 size_t Structure::removePropertyWithoutTransition(JSGlobalData& globalData, const Identifier& propertyName)
659 bool Structure::despecifyFunction(JSGlobalData& globalData, const Identifier& propertyName)
686 size_t Structure::putSpecificValue(JSGlobalData& globalData, const Identifier& propertyName, unsigned attributes, JSCell* specificValue
    [all...]
LiteralParser.cpp 296 Vector<Identifier, 16> identifierStack;
348 identifierStack.append(Identifier(m_exec, identifierToken.stringToken));
370 identifierStack.append(Identifier(m_exec, identifierToken.stringToken));
ExceptionHelpers.cpp 88 JSObject* createUndefinedVariableError(ExecState* exec, const Identifier& ident)
JSPropertyNameIterator.cpp 89 JSValue identifier = m_jsStrings[i].get(); local
91 return identifier;
93 if (!base->hasProperty(exec, Identifier(exec, asString(identifier)->value(exec))))
95 return identifier;
  /external/webkit/Source/WebCore/bindings/js/
JSCustomXPathNSResolver.cpp 74 JSValue function = m_customResolver->get(exec, Identifier(exec, "lookupNamespaceURI"));
  /external/webkit/Source/WebCore/bridge/qt/
qt_class.cpp 23 #include "Identifier.h"
68 // identifier.
69 JSValue QtClass::fallbackObject(ExecState* exec, Instance* inst, const Identifier& identifier)
73 const UString& ustring = identifier.ustring();
89 QtRuntimeMetaMethod* val = new (exec) QtRuntimeMetaMethod(exec, identifier, static_cast<QtInstance*>(inst), index, normal, false);
108 QtRuntimeMetaMethod* val = new (exec) QtRuntimeMetaMethod(exec, identifier, static_cast<QtInstance*>(inst), index, normal, false);
118 MethodList QtClass::methodsNamed(const Identifier&, Instance*) const
126 Field* QtClass::fieldNamed(const Identifier& identifier, Instance* instance) cons
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebProcessProxy.h 144 virtual void didFinishLaunching(ProcessLauncher*, CoreIPC::Connection::Identifier);
147 virtual void didFinishLaunching(ThreadLauncher*, CoreIPC::Connection::Identifier);
149 void didFinishLaunching(CoreIPC::Connection::Identifier);
  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 158 ExpressionNode* createResolve(const Identifier* ident, int start)
187 ExpressionNode* createString(const Identifier* string)
212 ExpressionNode* createDotAccess(ExpressionNode* base, const Identifier& property, int start, int divot, int end)
219 ExpressionNode* createRegExp(const Identifier& pattern, const Identifier& flags, int start)
248 ExpressionNode* createAssignResolve(const Identifier& ident, ExpressionNode* rhs, bool rhsHasAssignment, int start, int divot, int end)
255 ExpressionNode* createFunctionExpr(const Identifier* name, FunctionBodyNode* body, ParameterNode* parameters, int openBracePos, int closeBracePos, int bodyStartLine, int bodyEndLine)
268 template <bool> PropertyNode* createGetterOrSetterProperty(PropertyNode::Type type, const Identifier* name, ParameterNode* params, FunctionBodyNode* body, int openBracePos, int closeBracePos, int bodyStartLine, int bodyEndLine)
281 template <bool> PropertyNode* createProperty(const Identifier* propertyName, ExpressionNode* node, PropertyNode::Type type) { return new (m_globalData) PropertyNode(m_globalData, *propertyName, node, type); }
289 ParameterNode* createFormalParameterList(const Identifier& ident) { return new (m_globalData) ParameterNode(m_globalData, ident);
787 const Identifier& identifier = resolve->identifier(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JIT.h 186 static void compileGetByIdProto(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress)
192 static void compileGetByIdSelfList(JSGlobalData* globalData, CodeBlock* codeBlock, StructureStubInfo* stubInfo, PolymorphicAccessStructureList* polymorphicStructures, int currentIndex, Structure* structure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset)
197 static void compileGetByIdProtoList(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructureList, int currentIndex, Structure* structure, Structure* prototypeStructure, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset)
202 static void compileGetByIdChainList(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, PolymorphicAccessStructureList* prototypeStructureList, int currentIndex, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset)
208 static void compileGetByIdChain(JSGlobalData* globalData, CallFrame* callFrame, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* structure, StructureChain* chain, size_t count, const Identifier& ident, const PropertySlot& slot, size_t cachedOffset, ReturnAddressPtr returnAddress)
267 void privateCompileGetByIdProto(StructureStubInfo*, Structure*, Structure* prototypeStructure, const Identifier&, const PropertySlot&, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame);
268 void privateCompileGetByIdSelfList(StructureStubInfo*, PolymorphicAccessStructureList*, int, Structure*, const Identifier&, const PropertySlot&, size_t cachedOffset);
269 void privateCompileGetByIdProtoList(StructureStubInfo*, PolymorphicAccessStructureList*, int, Structure*, Structure* prototypeStructure, const Identifier&, const PropertySlot&, size_t cachedOffset, CallFrame* callFrame);
270 void privateCompileGetByIdChainList(StructureStubInfo*, PolymorphicAccessStructureList*, int, Structure*, StructureChain* chain, size_t count, const Identifier&, const PropertySlot&, size_t cachedOffset, CallFrame* callFrame);
271 void privateCompileGetByIdChain(StructureStubInfo*, Structure*, StructureChain*, size_t count, const Identifier&, const PropertySlot&, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame)
    [all...]
JITStubs.h 48 class Identifier;
69 Identifier& identifier() { return *static_cast<Identifier*>(asPointer); } function in union:JSC::JITStubArg
285 static void tryCacheGetByID(CallFrame*, CodeBlock*, ReturnAddressPtr returnAddress, JSValue baseValue, const Identifier& propertyName, const PropertySlot&, StructureStubInfo* stubInfo);
  /external/clang/include/clang/Lex/
Preprocessor.h 184 /// \brief Whether the module import expectes an identifier next. Otherwise,
264 /// deserializing from PCH, we don't need to deserialize identifier & macros
437 /// getMacroInfo - Given an identifier, return the MacroInfo it is #defined to
446 /// setMacroInfo - Specify a macro for this identifier.
465 /// identifier token. The version of this method that takes two character
466 /// pointers is preferred unless the identifier is already available as a
544 /// identifier for an object-like macro.
545 void EnterMacro(Token &Identifier, SourceLocation ILEnd, MacroArgs *Args);
617 /// expansion of identifier tokens.
630 /// expansion of identifier tokens
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 407 void addIdentifier(const Identifier& i) { return m_identifiers.append(i); }
408 Identifier& identifier(int index) { return m_identifiers[index]; } function in class:JSC::CodeBlock
528 Vector<Identifier> m_identifiers;
597 const Identifier& variable(unsigned index) { return m_variables[index]; }
599 void adoptVariables(Vector<Identifier>& variables)
607 Vector<Identifier> m_variables;
  /external/webkit/Source/WebCore/bridge/objc/
objc_class.mm 76 MethodList ObjcClass::methodsNamed(const Identifier& identifier, Instance*) const
81 CString jsName = identifier.ascii();
152 Field* ObjcClass::fieldNamed(const Identifier& identifier, Instance* instance) const
156 CString jsName = identifier.ascii();
242 JSValue ObjcClass::fallbackObject(ExecState* exec, Instance* instance, const Identifier &propertyName)
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.cpp 110 JSValue UserObjectImp::userObjectGetter(ExecState*, JSValue slotBase, const Identifier& propertyName)
125 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
148 void UserObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&)
  /external/webkit/Source/WebCore/bridge/c/
c_instance.cpp 114 CRuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, const Identifier& name, Bindings::MethodList& list)
132 JSValue CInstance::getMethod(ExecState* exec, const Identifier& propertyName)
151 NPIdentifier ident = method->identifier();
310 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]); local
312 if (identifier->isString())
313 nameArray.add(identifierFromNPIdentifier(exec, identifier->string()));
315 nameArray.add(Identifier::from(exec, identifier->number()));
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmLexer.cpp 106 case AsmToken::Identifier: {

Completed in 789 milliseconds

1 2 3 4 5 6 7 891011>>