Home | History | Annotate | Download | only in text

Lines Matching refs:AtomicString

32 #include "AtomicString.h"
54 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, nullAtom)
55 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, emptyAtom, "")
56 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, textAtom, "#text")
57 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, commentAtom, "#comment")
58 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, starAtom, "*")
59 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, xmlAtom, "xml")
60 JS_EXPORTDATA DEFINE_GLOBAL(AtomicString, xmlnsAtom, "xmlns")
62 void AtomicString::init()
70 new ((void*)&nullAtom) AtomicString;
71 new ((void*)&emptyAtom) AtomicString("");
72 new ((void*)&textAtom) AtomicString("#text");
73 new ((void*)&commentAtom) AtomicString("#comment");
74 new ((void*)&starAtom) AtomicString("*");
75 new ((void*)&xmlAtom) AtomicString("xml");
76 new ((void*)&xmlnsAtom) AtomicString("xmlns");