• Home
  • Raw
  • Download

Lines Matching refs:Identifier

32     class Identifier {
35 Identifier() { } in Identifier() function
37Identifier(ExecState* exec, const char* s) : _ustring(add(exec, s)) { } // Only to be used with st… in Identifier() function
38 Identifier(ExecState* exec, const UChar* s, int length) : _ustring(add(exec, s, length)) { } in Identifier() function
39 Identifier(ExecState* exec, UString::Rep* rep) : _ustring(add(exec, rep)) { } in Identifier() function
40 Identifier(ExecState* exec, const UString& s) : _ustring(add(exec, s.rep())) { } in Identifier() function
42Identifier(JSGlobalData* globalData, const char* s) : _ustring(add(globalData, s)) { } // Only to … in Identifier() function
43Identifier(JSGlobalData* globalData, const UChar* s, int length) : _ustring(add(globalData, s, len… in Identifier() function
44Identifier(JSGlobalData* globalData, UString::Rep* rep) : _ustring(add(globalData, rep)) { } in Identifier() function
45Identifier(JSGlobalData* globalData, const UString& s) : _ustring(add(globalData, s.rep())) { } in Identifier() function
48 Identifier(PlacementNewAdoptType) : _ustring(PlacementNewAdopt) { } in Identifier() function
57 … static Identifier from(ExecState* exec, unsigned y) { return Identifier(exec, UString::from(y)); } in from()
58 … static Identifier from(ExecState* exec, int y) { return Identifier(exec, UString::from(y)); } in from()
59 … static Identifier from(ExecState* exec, double y) { return Identifier(exec, UString::from(y)); } in from()
70 friend bool operator==(const Identifier&, const Identifier&);
71 friend bool operator!=(const Identifier&, const Identifier&);
73 friend bool operator==(const Identifier&, const char*);
74 friend bool operator!=(const Identifier&, const char*);
88 …static bool equal(const Identifier& a, const Identifier& b) { return a._ustring.rep() == b._ustrin… in equal()
89 static bool equal(const Identifier& a, const char* b) { return equal(a._ustring.rep(), b); } in equal()
122 inline bool operator==(const Identifier& a, const Identifier& b)
124 return Identifier::equal(a, b);
127 inline bool operator!=(const Identifier& a, const Identifier& b)
129 return !Identifier::equal(a, b);
132 inline bool operator==(const Identifier& a, const char* b)
134 return Identifier::equal(a, b);
137 inline bool operator!=(const Identifier& a, const char* b)
139 return !Identifier::equal(a, b);