Lines Matching refs:Value
120 const PropertyCallbackInfo<Value>& info);
122 const PropertyCallbackInfo<Value>& info);
124 const PropertyCallbackInfo<Value>& info);
126 const PropertyCallbackInfo<Value>& info);
129 static void MapGet(Local<Name> name, const PropertyCallbackInfo<Value>& info);
130 static void MapSet(Local<Name> name, Local<Value> value,
131 const PropertyCallbackInfo<Value>& info);
156 static void LogCallback(const v8::FunctionCallbackInfo<v8::Value>& args) {
159 Local<Value> arg = args[0];
160 String::Utf8Value value(arg);
161 HttpRequestProcessor::Log(*value);
203 Local<Value> process_val;
242 Local<Value> result;
304 Local<Value> argv[argc] = {request_obj};
307 Local<Value> result;
373 void* ptr = field->Value();
380 string ObjectToString(Local<Value> value) {
381 String::Utf8Value utf8_value(value);
387 const PropertyCallbackInfo<Value>& info) {
396 // Look up the value if it exists using the standard STL ideom.
402 // Otherwise fetch the value and wrap it in a JavaScript string
403 const string& value = (*iter).second;
405 String::NewFromUtf8(info.GetIsolate(), value.c_str(),
407 static_cast<int>(value.length())).ToLocalChecked());
411 void JsHttpRequestProcessor::MapSet(Local<Name> name, Local<Value> value_obj,
412 const PropertyCallbackInfo<Value>& info) {
418 // Convert the key and value to std::strings.
420 string value = ObjectToString(value_obj);
423 (*obj)[key] = value;
425 // Return the value; any non-empty handle will work.
489 void* ptr = field->Value();
495 const PropertyCallbackInfo<Value>& info) {
512 const PropertyCallbackInfo<Value>& info) {
523 const PropertyCallbackInfo<Value>& info) {
535 const PropertyCallbackInfo<Value>& info) {
625 string value = arg.substr(index+1);
626 (*options)[key] = value;