• Home
  • Raw
  • Download

Lines Matching full:date

22 // List of functions in Date, excluding the '@@' properties.
24 // where BuiltinsDate::func refers to the native implementation of Date[name].
27 … /* Date.now ( ) */ \
29 … /* Date.parse ( string ) */ \
31 … /* Date.UTC ( year [ , month [ , date [ , hours [ , minutes [ , seconds [ , ms ] ] ] ] ] ] ) */ \
34 // List of functions in Date.prototype, excluding the constructor and '@@' properties.
36 // where BuiltinsDate::func refers to the native implementation of Date.prototype[name].
38 /* Date.prototype.getDate ( ) */ \
40 /* Date.prototype.getDay ( ) */ \
42 /* Date.prototype.getFullYear ( ) */ \
44 /* Date.prototype.getHours ( ) */ \
46 /* Date.prototype.getMilliseconds ( ) */ \
48 /* Date.prototype.getMinutes ( ) */ \
50 /* Date.prototype.getMonth ( ) */ \
52 /* Date.prototype.getSeconds ( ) */ \
54 /* Date.prototype.getTime ( ) */ \
56 /* Date.prototype.getTimezoneOffset ( ) */ \
58 /* Date.prototype.getUTCDate ( ) */ \
60 /* Date.prototype.getUTCDay ( ) */ \
62 /* Date.prototype.getUTCFullYear ( ) */ \
64 /* Date.prototype.getUTCHours ( ) */ \
66 /* Date.prototype.getUTCMilliseconds ( ) */ \
68 /* Date.prototype.getUTCMinutes ( ) */ \
70 /* Date.prototype.getUTCMonth ( ) */ \
72 /* Date.prototype.getUTCSeconds ( ) */ \
74 /* Date.prototype.setDate ( date ) */ \
76 /* Date.prototype.setFullYear ( year [ , month [ , date ] ] ) */ \
78 /* Date.prototype.setHours ( hour [ , min [ , sec [ , ms ] ] ] ) */ \
80 /* Date.prototype.setMilliseconds ( ms ) */ \
82 /* Date.prototype.setMinutes ( min [ , sec [ , ms ] ] ) */ \
84 /* Date.prototype.setMonth ( month [ , date ] ) */ \
86 /* Date.prototype.setSeconds ( sec [ , ms ] ) */ \
88 /* Date.prototype.setTime ( time ) */ \
90 /* Date.prototype.setUTCDate ( date ) */ \
92 /* Date.prototype.setUTCFullYear ( year [ , month [ , date ] ] ) */ \
94 /* Date.prototype.setUTCHours ( hour [ , min [ , sec [ , ms ] ] ] ) */ \
96 /* Date.prototype.setUTCMilliseconds ( ms ) */ \
98 /* Date.prototype.setUTCMinutes ( min [ , sec [ , ms ] ] ) */ \
100 /* Date.prototype.setUTCMonth ( month [ , date ] ) */ \
102 /* Date.prototype.setUTCSeconds ( sec [ , ms ] ) */ \
104 /* Date.prototype.toDateString ( ) */ \
106 /* Date.prototype.toISOString ( ) */ \
108 /* Date.prototype.toJSON ( key ) */ \
110 /* Date.prototype.toLocaleDateString ( [ reserved1 [ , reserved2 ] ] ) */ \
112 /* Date.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] ) */ \
114 /* Date.prototype.toLocaleTimeString ( [ reserved1 [ , reserved2 ] ] ) */ \
116 /* Date.prototype.toString ( ) */ \
118 /* Date.prototype.toTimeString ( ) */ \
120 /* Date.prototype.toUTCString ( ) */ \
122 /* Date.prototype.valueOf ( ) */ \
130 // 20.4.2 The Date Constructor
133 // 20.4.3.1 Date.now ( )
136 …// 20.4.3.4 Date.UTC ( year [ , month [ , date [ , hours [ , minutes [ , seconds [ , ms ] ] ] ] ] …
141 // 20.4.4.2 Date.prototype.getDate ( )
144 // 20.4.4.3 Date.prototype.getDay ( )
147 // 20.4.4.4 Date.prototype.getFullYear ( )
150 // 20.4.4.5 Date.prototype.getHours ( )
153 // 20.4.4.6 Date.prototype.getMilliseconds ( )
156 // 20.4.4.7 Date.prototype.getMinutes ( )
159 // 20.4.4.8 Date.prototype.getMonth ( )
162 // 20.4.4.9 Date.prototype.getSeconds ( )
165 // 20.4.4.10 Date.prototype.getTime ( )
168 // 20.4.4.11 Date.prototype.getTimezoneOffset ( )
171 // 20.4.4.12 Date.prototype.getUTCDate ( )
174 // 20.4.4.13 Date.prototype.getUTCDay ( )
177 // 20.4.4.14 Date.prototype.getUTCFullYear ( )
180 // 20.4.4.15 Date.prototype.getUTCHours ( )
183 // 20.4.4.16 Date.prototype.getUTCMilliseconds ( )
186 // 20.4.4.17 Date.prototype.getUTCMinutes ( )
189 // 20.4.4.18 Date.prototype.getUTCMonth ( )
192 // 20.4.4.19 Date.prototype.getUTCSeconds ( )
195 // 20.3.4.20 Date.prototype.setDate ( date )
198 // 20.3.4.21 Date.prototype.setFullYear ( year [ , month [ , date ] ] )
201 // 20.3.4.22 Date.prototype.setHours ( hour [ , min [ , sec [ , ms ] ] ] )
204 // 20.3.4.23 Date.prototype.setMilliseconds ( ms )
207 // 20.3.4.24 Date.prototype.setMinutes ( min [ , sec [ , ms ] ] )
210 // 20.3.4.25 Date.prototype.setMonth ( month [ , date ] )
213 // 20.3.4.26 Date.prototype.setSeconds ( sec [ , ms ] )
216 // 20.3.4.27 Date.prototype.setTime ( time )
219 // 20.3.4.28 Date.prototype.setUTCDate ( date )
222 // 20.3.4.29 Date.prototype.setUTCFullYear ( year [ , month [ , date ] ] )
225 // 20.3.4.30 Date.prototype.setUTCHours ( hour [ , min [ , sec [ , ms ] ] ] )
228 // 20.3.4.31 Date.prototype.setUTCMilliseconds ( ms )
231 // 20.3.4.32 Date.prototype.setUTCMinutes ( min [ , sec [, ms ] ] )
234 // 20.3.4.33 Date.prototype.setUTCMonth ( month [ , date ] )
237 // 20.3.4.34 Date.prototype.setUTCSeconds ( sec [ , ms ] )
240 // 20.4.4.35 Date.prototype.toDateString ( )
243 // 20.4.4.36 Date.prototype.toISOString ( )
246 // 20.4.4.37 Date.prototype.toJSON ( key )
249 // 20.4.4.38 Date.prototype.toLocaleDateString ( [ reserved1 [ , reserved2 ] ] )
252 // 20.4.4.39 Date.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] )
255 // 20.4.4.40 Date.prototype.toLocaleTimeString ( [ reserved1 [ , reserved2 ] ] )
258 // 20.4.4.41 Date.prototype.toString ( )
261 // 20.4.4.42 Date.prototype.toTimeString ( )
264 // 20.4.4.43 Date.prototype.toUTCString ( )
267 // 20.4.4.44 Date.prototype.valueOf ( )
270 // 20.4.4.45 Date.prototype [ @@toPrimitive ]
287 // 2 : 2 more inline properties in Date.prototype: in GetNumPrototypeInlinedProperties()
288 // (1) Date.prototype.constructor in GetNumPrototypeInlinedProperties()
289 // (2) Date.prototype [ @@toPrimitive ] in GetNumPrototypeInlinedProperties()