Lines Matching refs:Name
26 // assume there are no name conflicts with the embedder's code.
86 class Name;
1459 * Returns the resource name for the script from where the function causing
1604 * Returns the name of the resource that contains the script for the
1610 * Returns the name of the resource that contains the script for the
1611 * function for this StackFrame or sourceURL value if the script name
1618 * Returns the name of the function associated with this stack frame.
2075 class V8_EXPORT Name : public Primitive {
2086 V8_INLINE static Name* Cast(v8::Value* obj);
2098 class V8_EXPORT String : public Name {
2465 class V8_EXPORT Symbol : public Name {
2467 // Returns the print name string of the symbol, or undefined if none.
2468 Local<Value> Name() const;
2470 // Create a symbol. If name is not empty, it will be used as the description.
2472 Local<String> name = Local<String>());
2477 // Also, there is only one global name space for the names used as keys.
2479 static Local<Symbol> For(Isolate *isolate, Local<String> name);
2483 static Local<Symbol> ForApi(Isolate *isolate, Local<String> name);
2506 // Returns the print name string of the private symbol, or undefined if none.
2507 Local<Value> Name() const;
2509 // Create a private symbol. If name is not empty, it will be the description.
2511 Local<String> name = Local<String>());
2513 // Retrieve a global private symbol. If a symbol with this name has not
2517 // Also, there is only one global name space for the names used as keys.
2520 static Local<Private> ForApi(Isolate* isolate, Local<String> name);
2600 Local<Name> property,
2609 Local<Name> property,
2654 Local<Name> key,
2667 Local<Context> context, Local<Name> key, Local<Value> value,
2728 bool SetAccessor(Local<String> name,
2735 bool SetAccessor(Local<Name> name,
2742 Maybe<bool> SetAccessor(Local<Context> context, Local<Name> name,
2749 void SetAccessorProperty(Local<Name> name, Local<Function> getter,
2817 * Returns the name of the function invoked as a constructor for this object.
2859 Local<Name> key);
2863 Local<Name> key);
2871 Local<Context> context, Local<Name> key);
2881 Local<Context> context, Local<Name> key);
2894 Local<Name> key);
2904 Local<Context> context, Local<Name> key);
2915 Local<Context> context, Local<Name> key);
3252 void SetName(Local<String> name);
3256 * Name inferred from variable or property assignment of this function.
3264 * displayName if it is set, otherwise name if it is configured, otherwise
3265 * function name, otherwise inferred name.
3270 * User-defined name assigned to the "displayName" property of this function.
4087 #define V8_DECL_INTRINSIC(name, iname) k##name,
4102 Name> name, Local<Data> value,
4104 V8_INLINE void Set(Isolate* isolate, const char* name, Local<Data> value);
4107 Local<Name> name,
4114 * Whenever the property with the given name is accessed on objects
4119 * \param name The name of the property for which an accessor is added.
4141 Local<String> name, AccessorGetterCallback getter,
4148 Local<Name> name, AccessorNameGetterCallback getter,
4159 void SetIntrinsicDataProperty(Local<Name> name, Intrinsic intrinsic,
4224 Local<Name> property, const PropertyCallbackInfo<Value>& info);
4232 Local<Name> property, Local<Value> value,
4242 Local<Name> property, const PropertyCallbackInfo<Integer>& info);
4251 Local<Name> property, const PropertyCallbackInfo<Boolean>& info);
4389 * Let's use "function" as the JS variable name of the function object
4491 * Set the class name of the FunctionTemplate. This is used for
4495 void SetClassName(Local<String> name);
4633 * Whenever the property with the given name is accessed on objects
4638 * \param name The name of the property for which an accessor is added.
4660 Local<String> name, AccessorGetterCallback getter,
4665 Local<Name> name, AccessorNameGetterCallback getter,
4673 * Whenever a property whose name is a string is accessed on objects created
4835 Extension(const char* name,
4842 v8::Isolate* isolate, v8::Local<v8::String> name) {
4846 const char* name() const { return name_; }
4938 typedef void (*LogEventCallback)(const char* name, int event);
4971 typedef int* (*CounterLookupCallback)(const char* name);
4973 typedef void* (*CreateHistogramCallback)(const char* name,
5206 // Name of the object associated with the code, note that the string is not
5224 struct name_t name;
7745 void Template::Set(Isolate* isolate, const char* name, v8::Local<Data> value) {
7746 Set(v8::String::NewFromUtf8(isolate, name, NewStringType::kNormal)
7956 Name* Name::Cast(v8::Value* value) {
7960 return static_cast<Name*>(value);