Searched defs:Identifier (Results 1 - 25 of 39) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/runtime/
H A DStrictEvalActivation.cpp36 bool StrictEvalActivation::deleteProperty(ExecState*, const Identifier&) argument
H A DJSNotAnObject.cpp77 bool JSNotAnObject::getOwnPropertySlot(ExecState* exec, const Identifier&, PropertySlot&) argument
89 bool JSNotAnObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier&, PropertyDescriptor&) argument
95 void JSNotAnObject::put(ExecState* exec, const Identifier& , JSValue, PutPropertySlot&)
105 bool JSNotAnObject::deleteProperty(ExecState* exec, const Identifier&) argument
H A DIdentifier.h33 class Identifier { class in namespace:JSC
36 Identifier() { } function in class:JSC::Identifier
38 Identifier(ExecState* exec, const char* s) : m_string(add(exec, s)) { } // Only to be used with string literals. function in class:JSC::Identifier
39 Identifier(ExecState* exec, const UChar* s, int length) : m_string(add(exec, s, length)) { } function in class:JSC::Identifier
40 Identifier(ExecState* exec, StringImpl* rep) : m_string(add(exec, rep)) { } function in class:JSC::Identifier
41 Identifier(ExecState* exec, const UString& s) : m_string(add(exec, s.impl())) { } function in class:JSC::Identifier
43 Identifier(JSGlobalData* globalData, const char* s) : m_string(add(globalData, s)) { } // Only to be used with string literals. function in class:JSC::Identifier
44 Identifier(JSGlobalData* globalData, const UChar* s, int length) : m_string(add(globalData, s, length)) { } function in class:JSC::Identifier
45 Identifier(JSGlobalData* globalData, StringImpl* rep) : m_string(add(globalData, rep)) { } function in class:JSC::Identifier
46 Identifier(JSGlobalDat function in class:JSC::Identifier
[all...]
H A DNumberConstructor.cpp33 static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&);
34 static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier&);
35 static JSValue numberConstructorPosInfinity(ExecState*, JSValue, const Identifier&);
36 static JSValue numberConstructorMaxValue(ExecState*, JSValue, const Identifier&);
37 static JSValue numberConstructorMinValue(ExecState*, JSValue, const Identifier&);
58 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, numberPrototype->s_info.className))
69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
79 static JSValue numberConstructorNaNValue(ExecState*, JSValue, const Identifier&) argument
84 static JSValue numberConstructorNegInfinity(ExecState*, JSValue, const Identifier argument
89 numberConstructorPosInfinity(ExecState*, JSValue, const Identifier&) argument
94 numberConstructorMaxValue(ExecState*, JSValue, const Identifier&) argument
99 numberConstructorMinValue(ExecState*, JSValue, const Identifier&) argument
[all...]
H A DJSZombie.h59 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&) { ASSERT_NOT_REACHED(); } argument
61 virtual bool deleteProperty(ExecState*, const Identifier&) { ASSERT_NOT_REACHED(); return false; } argument
66 virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&) { ASSERT_NOT_REACHED(); return false; } argument
H A DRegExpObject.cpp37 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&) argument
97 JSValue regExpObjectIgnoreCase(ExecState*, JSValue slotBase, const Identifier&) argument
102 JSValue regExpObjectMultiline(ExecState*, JSValue slotBase, const Identifier argument
107 regExpObjectSource(ExecState* exec, JSValue slotBase, const Identifier&) argument
112 regExpObjectLastIndex(ExecState*, JSValue slotBase, const Identifier&) argument
[all...]
H A DJSActivation.cpp76 inline bool JSActivation::symbolTableGet(const Identifier& propertyName, PropertySlot& slot)
88 inline bool JSActivation::symbolTablePut(JSGlobalData& globalData, const Identifier& propertyName, JSValue value)
112 propertyNames.add(Identifier(exec, it->first.get()));
118 inline bool JSActivation::symbolTablePutWithAttributes(JSGlobalData& globalData, const Identifier& propertyName, JSValue value, unsigned attributes)
135 bool JSActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
157 void JSActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
172 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
187 bool JSActivation::deleteProperty(ExecState* exec, const Identifier& propertyName)
211 JSValue JSActivation::argumentsGetter(ExecState*, JSValue slotBase, const Identifier&) argument
H A DJSFunction.cpp64 JSFunction::JSFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, int length, const Identifier& name, NativeExecutable* thunk)
74 JSFunction::JSFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, int length, const Identifier& name, NativeFunction func)
93 const Identifier& name = static_cast<FunctionExecutable*>(m_executable.get())->name();
160 JSValue JSFunction::argumentsGetter(ExecState* exec, JSValue slotBase, const Identifier&) argument
167 JSValue JSFunction::callerGetter(ExecState* exec, JSValue slotBase, const Identifier&) argument
174 JSValue JSFunction::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) argument
181 bool JSFunction::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
228 bool JSFunction::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
278 void JSFunction::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
305 bool JSFunction::deleteProperty(ExecState* exec, const Identifier
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSHistoryCustom.cpp40 static JSValue nonCachingStaticBackFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
45 static JSValue nonCachingStaticForwardFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
50 static JSValue nonCachingStaticGoFunctionGetter(ExecState* exec, JSValue, const Identifier& propertyName)
55 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
95 bool JSHistory::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
140 bool JSHistory::putDelegate(ExecState* exec, const Identifier&, JSValue, PutPropertySlot&) argument
148 bool JSHistory::deleteProperty(ExecState* exec, const Identifier& propertyName)
/external/webkit/Source/WebCore/bridge/
H A Druntime_array.cpp54 JSValue RuntimeArray::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) argument
70 propertyNames.add(Identifier::from(exec, i));
78 bool RuntimeArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
97 bool RuntimeArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
130 void RuntimeArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
157 bool RuntimeArray::deleteProperty(ExecState*, const Identifier&) argument
H A Druntime_method.cpp46 RuntimeMethod::RuntimeMethod(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const Identifier& ident, Bindings::MethodList& m)
54 JSValue RuntimeMethod::lengthGetter(ExecState*, JSValue slotBase, const Identifier&) argument
67 bool RuntimeMethod::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
77 bool RuntimeMethod::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor &descriptor)
H A Druntime_object.cpp60 JSValue RuntimeObject::fallbackObjectGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
78 JSValue RuntimeObject::fieldGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
97 JSValue RuntimeObject::methodGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
114 bool RuntimeObject::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
159 bool RuntimeObject::getOwnPropertyDescriptor(ExecState *exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
208 void RuntimeObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
228 bool RuntimeObject::deleteProperty(ExecState*, const Identifier&) argument
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp437 const IdentifierInfo *Identifier = QT.getBaseTypeIdentifier(); local
438 if (Identifier->getName() == "size_t") {
440 } else if (Identifier->getName() == "ssize_t") {
443 } else if (Identifier->getName() == "intmax_t") {
445 } else if (Identifier->getName() == "uintmax_t") {
447 } else if (Identifier->getName() == "ptrdiff_t") {
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestInterface.cpp69 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
70 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
91 bool JSTestInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
96 bool JSTestInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
150 bool JSTestInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
155 bool JSTestInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
160 JSValue jsTestInterfaceConstructor(ExecState* exec, JSValue slotBase, const Identifier&) argument
H A DJSTestMediaQueryListListener.cpp70 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
71 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
90 bool JSTestMediaQueryListListenerConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
95 bool JSTestMediaQueryListListenerConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
122 bool JSTestMediaQueryListListenerPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
127 bool JSTestMediaQueryListListenerPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
146 bool JSTestMediaQueryListListener::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
151 bool JSTestMediaQueryListListener::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
156 JSValue jsTestMediaQueryListListenerConstructor(ExecState* exec, JSValue slotBase, const Identifier&) argument
H A DJSTestSerializedScriptValueInterface.cpp71 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&);
72 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&);
91 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
96 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
136 bool JSTestSerializedScriptValueInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
141 bool JSTestSerializedScriptValueInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
146 JSValue jsTestSerializedScriptValueInterfaceValue(ExecState* exec, JSValue slotBase, const Identifier&) argument
155 JSValue jsTestSerializedScriptValueInterfaceConstructor(ExecState* exec, JSValue slotBase, const Identifier&) argument
/external/webkit/Source/WebCore/bridge/jsc/
H A DBridgeJSC.h41 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(); } argument
94 virtual bool setValueOfUndefinedField(ExecState*, const Identifier&, JSValue) { return false; } argument
96 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName) = 0;
115 virtual bool getOwnPropertySlot(JSObject*, ExecState*, const Identifier&, PropertySlot&) { return false; } argument
116 virtual bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&) { return false; } argument
117 virtual void put(JSObject*, ExecState*, const Identifier&, JSValue, PutPropertySlot&) { } argument
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_class.cpp23 #include "Identifier.h"
69 JSValue QtClass::fallbackObject(ExecState* exec, Instance* inst, const Identifier& identifier)
118 MethodList QtClass::methodsNamed(const Identifier&, Instance*) const argument
126 Field* QtClass::fieldNamed(const Identifier& identifier, Instance* instance) const
/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h73 Identifier, enumerator in enum:clang::NestedNameSpecifier::SpecifierKind
372 /// \param Identifier The identifier.
377 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
H A DTemplateName.h450 const IdentifierInfo *Identifier; member in union:clang::DependentTemplateName::__anon2579
469 const IdentifierInfo *Identifier)
470 : Qualifier(Qualifier, false), Identifier(Identifier),
474 const IdentifierInfo *Identifier,
476 : Qualifier(Qualifier, false), Identifier(Identifier),
500 return Identifier;
522 const IdentifierInfo *Identifier) {
525 ID.AddPointer(Identifier);
468 DependentTemplateName(NestedNameSpecifier *Qualifier, const IdentifierInfo *Identifier) argument
473 DependentTemplateName(NestedNameSpecifier *Qualifier, const IdentifierInfo *Identifier, TemplateName Canon) argument
521 Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, const IdentifierInfo *Identifier) argument
[all...]
/external/clang/lib/AST/
H A DNestedNameSpecifier.cpp46 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
181 case Identifier:
182 // Identifier specifiers always represent dependent types
201 case Identifier:
227 case Identifier:
301 case NestedNameSpecifier::Identifier
520 Extend(ASTContext &Context, IdentifierInfo *Identifier, SourceLocation IdentifierLoc, SourceLocation ColonColonLoc) argument
[all...]
/external/clang/lib/Lex/
H A DPreprocessor.cpp429 IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier) const {
430 assert(Identifier.getRawIdentifierData() != 0 && "No raw identifier data!");
434 if (!Identifier.needsCleaning()) {
436 II = getIdentifierInfo(StringRef(Identifier.getRawIdentifierData(),
437 Identifier.getLength()));
441 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
446 Identifier.setIdentifierInfo(II);
447 Identifier.setKind(II->getTokenID());
470 void Preprocessor::HandlePoisonedIdentifier(Token & Identifier) { argument
471 assert(Identifier
489 HandleIdentifier(Token &Identifier) argument
[all...]
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp139 case NestedNameSpecifier::Identifier:
299 if (NNS->getKind() != NestedNameSpecifier::Identifier)
381 IdentifierInfo &Identifier,
389 LookupResult Found(*this, &Identifier, IdentifierLoc,
471 SS.Extend(Context, &Identifier, IdentifierLoc, CCLoc);
504 Found.setLookupName(&Identifier);
521 LookupResult FoundOuter(*this, &Identifier, IdentifierLoc,
539 << &Identifier;
618 // resolve Identifier, then extend the SS with Identifier
380 BuildCXXNestedNameSpecifier(Scope *S, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation CCLoc, QualType ObjectType, bool EnteringContext, CXXScopeSpec &SS, NamedDecl *ScopeLookupResult, bool ErrorRecoveryLookup) argument
660 ActOnCXXNestedNameSpecifier(Scope *S, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation CCLoc, ParsedType ObjectType, bool EnteringContext, CXXScopeSpec &SS) argument
682 IsInvalidUnlessNestedName(Scope *S, CXXScopeSpec &SS, IdentifierInfo &Identifier, SourceLocation IdentifierLoc, SourceLocation ColonLoc, ParsedType ObjectType, bool EnteringContext) argument
[all...]
/external/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h29 Identifier, enumerator in enum:llvm::AsmToken::TokenKind
87 if (Kind == Identifier)
/external/v8/src/
H A Dpreparser.h104 typedef int Identifier; typedef in class:v8::preparser::PreParser
216 Identifier ParseIdentifier(bool* ok);
217 Identifier ParseIdentifierName(bool* ok);
218 Identifier ParseIdentifierOrGetOrSet(bool* is_get, bool* is_set, bool* ok);
223 Identifier GetIdentifierSymbol();

Completed in 362 milliseconds

12