Searched refs:Value (Results 126 - 150 of 3761) sorted by relevance

1234567891011>>

/external/chromium_org/content/public/renderer/
H A Dv8_value_converter.h13 class Value;
18 // Converts between v8::Value (JavaScript values in the v8 heap) and Chrome's
31 typedef base::Callback<base::Value*(
32 v8::Handle<v8::Value>, v8::Isolate* isolate)> FromV8ValueCallback;
41 base::Value** out,
50 base::Value** out,
58 base::Value** out,
65 base::Value** out) const;
69 virtual bool FromV8Undefined(base::Value** out) const;
103 // Converts a base::Value t
[all...]
/external/chromium_org/extensions/browser/api/messaging/
H A Dnative_messaging_channel.h11 class Value;
25 virtual void OnMessage(scoped_ptr<base::Value> message) = 0;
40 virtual void SendMessage(scoped_ptr<base::Value> message) = 0;
/external/chromium_org/extensions/renderer/
H A Dapi_activity_logger.h32 static void LogAPICall(const v8::FunctionCallbackInfo<v8::Value>& args);
39 static void LogEvent(const v8::FunctionCallbackInfo<v8::Value>& args);
44 const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dsend_request_natives.h22 void GetNextRequestId(const v8::FunctionCallbackInfo<v8::Value>& args);
26 void StartRequest(const v8::FunctionCallbackInfo<v8::Value>& args);
29 void GetGlobal(const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dv8_context_native_handler.h19 void GetAvailability(const v8::FunctionCallbackInfo<v8::Value>& args);
20 void GetModuleSystem(const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dfile_system_natives.h20 void GetFileEntry(const v8::FunctionCallbackInfo<v8::Value>& args);
21 void GetIsolatedFileSystem(const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
25 void GetDOMError(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/chromium_org/net/url_request/
H A Durl_request_netlog_params.h17 class Value;
22 // Returns a Value containing NetLog parameters for starting a URLRequest.
23 NET_EXPORT base::Value* NetLogURLRequestStartCallback(
31 // Attempts to extract the load flags from a Value created by the above
35 const base::Value* event_params,
/external/chromium_org/tools/gn/
H A Dfunction_write_file.cc46 Value RunWriteFile(Scope* scope,
48 const std::vector<Value>& args,
53 return Value();
57 if (!args[0].VerifyTypeIs(Value::STRING, err))
58 return Value();
64 return Value();
68 if (args[1].type() == Value::LIST) {
69 const std::vector<Value>& list = args[1].list_value();
83 return Value(); // Nothing to do.
89 return Value();
[all...]
H A Doperators.h14 class Value;
25 Value ExecuteUnaryOperator(Scope* scope,
27 const Value& value,
29 Value ExecuteBinaryOperator(Scope* scope,
/external/llvm/include/llvm/Analysis/
H A DLoads.h29 bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom,
50 Value *FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB,
/external/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h16 class Value;
58 Value *StoredOnceValue;
76 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
H A DSimplifyLibCalls.h19 class Value;
45 Value *optimizeCall(CallInst *CI);
50 virtual void replaceAllUsesWith(Instruction *I, Value *With) const;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DArrayRegion.java31 private Value[] values;
39 values = new Value[length];
46 public Value getValue(int index) {
52 * @param value Value to set
54 public void setValue(int index, Value value) {
/external/chromium_org/base/json/
H A Djson_writer.h15 class Value;
41 static bool Write(const Value* const node, std::string* json);
45 static bool WriteWithOptions(const Value* const node, int options,
53 bool BuildJSONString(const Value* const node, size_t depth);
/external/chromium_org/base/prefs/
H A Dwriteable_pref_store.h14 class Value;
24 virtual void SetValue(const std::string& key, base::Value* value) = 0;
31 base::Value** result) = 0;
43 virtual void SetValueSilently(const std::string& key, base::Value* value) = 0;
/external/chromium_org/content/common/
H A Dframe_message_enums.h12 enum Value { enum in struct:FrameMsg_Navigate_Type
/external/chromium_org/net/cert/
H A Dx509_certificate_net_log_param.h15 base::Value* NetLogX509CertificateCallback(
/external/chromium_org/net/websockets/
H A Dwebsocket_net_log_params.h15 NET_EXPORT_PRIVATE base::Value* NetLogWebSocketHandshakeCallback(
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8ThrowException.h36 static v8::Handle<v8::Value> createDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
40 static v8::Handle<v8::Value> createDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*);
42 static v8::Handle<v8::Value> throwDOMException(int ec, const String& message, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
46 static v8::Handle<v8::Value> throwDOMException(int, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate*);
48 static v8::Handle<v8::Value> throwException(v8::Handle<v8::Value>, v8::Isolate*);
50 static v8::Handle<v8::Value> createGeneralError(const String&, v8::Isolate*);
51 static v8::Handle<v8::Value> throwGeneralError(const String&, v8::Isolate*);
52 static v8::Handle<v8::Value> createTypeError(const String&, v8::Isolate*);
53 static v8::Handle<v8::Value> throwTypeErro
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8DedicatedWorkerGlobalScopeCustom.cpp40 void V8DedicatedWorkerGlobalScope::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
H A DV8LocationCustom.cpp36 void V8Location::valueOfMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
H A DV8MessagePortCustom.cpp40 void V8MessagePort::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
H A DV8WorkerCustom.cpp40 void V8Worker::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8ServiceWorkerClientCustom.cpp14 void V8ServiceWorkerClient::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
H A DV8ServiceWorkerCustom.cpp14 void V8ServiceWorker::postMessageMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)

Completed in 1010 milliseconds

1234567891011>>