Home | History | Annotate | Download | only in include

Lines Matching refs:Number

86 class Number;
186 * Handle<Number> it will cause a compile-time error. Assigning
196 * Handle<Number>.
272 * Handle<Number>.
329 * Persistent<Number> will cause a compile-time error. Assigning
339 * Handle<Number>.
423 * A stack-allocated class that governs a number of local handles.
449 * Counts the number of allocated handles.
712 * Returns the number, 1-based, of the line where the error occurred.
777 * Returns the number of StackFrames.
789 * \param frame_limit The maximum number of stack frames we want to capture.
805 * Returns the number, 1-based, of the line for the associate function call.
807 * retrieve the line number, or if kLineNumber was not passed as an option
816 * the column number, or if kColumnOffset was not passed as an option when
910 * Returns true if this value is a number.
940 * Returns true if this value is a Number object.
960 V8EXPORT Local<Number> ToNumber() const;
1013 * Returns the number of characters in this string.
1018 * Returns the number of bytes in the UTF-8 encoded
1047 * \param length The number of characters to copy from the string. For
1048 * WriteUtf8 the number of bytes in the buffer.
1049 * \param nchars_ref The number of characters written, can be NULL.
1052 * \return The number of characters copied to the buffer excluding the null
1053 * terminator. For WriteUtf8: The number of bytes copied to the buffer
1137 * The length of the string. That is, the number of two-byte characters.
1166 /** The number of ASCII characters in the string.*/
1342 * A JavaScript number value (ECMA-262, 4.3.20)
1344 class Number : public Primitive {
1347 V8EXPORT static Local<Number> New(double value);
1348 static inline Number* Cast(v8::Value* obj);
1350 V8EXPORT Number();
1358 class Integer : public Number {
1550 /** Gets the number of internal fields for this Object. */
1751 * Returns zero based line number of function body and
1756 * Returns zero based column number of function body and
1806 * A Number object (ECMA-262, 4.3.21).
1813 * Returns the Number held by the object.
1959 * including the receiver, the number and values of arguments, and
2140 * t->Set("func_property", v8::Number::New(1));
2144 * proto_t->Set("proto_const", v8::Number::New(2));
2149 * instance_t->Set("instance_property", Number::New(3));
2429 * Gets the number of internal fields for objects generated from
2435 * Sets the number of internal fields for objects generated from
3131 * as a source of entropy for random number generators.
3283 * these notifications to guide the GC heuristic. Returns the number
4198 Number* Number::Cast(v8::Value* value) {
4202 return static_cast<Number*>(value);