Searched refs:Var (Results 1 - 25 of 386) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-02-18-64bitConstant.c8 long long Var = 123455678902ll; local
9 printf("%lld\n", Var);
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.h13 class Var;
22 // from this class and override the virtual functions you support. pp::Var has
39 virtual bool HasProperty(const Var& name, Var* exception);
42 virtual bool HasMethod(const Var& name, Var* exception);
46 virtual Var GetProperty(const Var& name, Var* exception);
49 virtual void GetAllPropertyNames(std::vector<Var>* propertie
[all...]
H A Durl_util_dev.h24 Var Canonicalize(const Var& url,
27 Var ResolveRelativeToURL(const Var& base_url,
28 const Var& relative_string,
30 Var ResolveRelativeToDocument(const InstanceHandle& instance,
31 const Var& relative_string,
34 bool IsSameSecurityOrigin(const Var& url_a, const Var& url_b) const;
35 bool DocumentCanRequest(const InstanceHandle& instance, const Var
[all...]
H A Dscriptable_object_deprecated.cc17 // Allows converting an output param of a Var to an output param of a PP_Var
29 Var* Get() { return &exception_; }
33 Var exception_;
36 // Used internally to convert a C-style array of PP_Var to a vector of Var.
37 void ArgListToVector(uint32_t argc, PP_Var* argv, std::vector<Var>* output) {
40 output->push_back(Var(Var::DontManage(), argv[i]));
46 Var(Var::DontManage(), name), e.Get());
52 Var(Va
[all...]
H A Durl_util_dev.cc42 Var URLUtil_Dev::Canonicalize(const Var& url,
45 return Var(PASS_REF,
50 return Var(PASS_REF,
54 return Var();
57 Var URLUtil_Dev::ResolveRelativeToURL(const Var& base_url,
58 const Var& relative_string,
61 return Var(PASS_REF,
68 return Var(PASS_RE
[all...]
/external/chromium_org/ppapi/cpp/
H A Dvar_dictionary.h17 class VarDictionary : public Var {
27 explicit VarDictionary(const Var& var);
43 /// The <code>Var</code> assignment operator is overridden here so that we can
50 /// <code>Var</code>&).
51 virtual Var& operator=(const Var& other);
60 Var Get(const Var& key) const;
70 bool Set(const Var& key, const Var
[all...]
H A Dvar_array.cc21 VarArray::VarArray() : Var(Null()) {
28 VarArray::VarArray(const Var& var) : Var(var) {
33 Var::operator=(Var(Null()));
37 VarArray::VarArray(const PP_Var& var) : Var(var) {
42 Var::operator=(Var(Null()));
46 VarArray::VarArray(const VarArray& other) : Var(other) {
53 Var
[all...]
H A Dvar_dictionary.cc21 VarDictionary::VarDictionary() : Var(Null()) {
28 VarDictionary::VarDictionary(const Var& var) : Var(var) {
33 Var::operator=(Var(Null()));
37 VarDictionary::VarDictionary(const PP_Var& var) : Var(var) {
42 Var::operator=(Var(Null()));
47 : Var(other) {
55 Var
[all...]
H A Dwebsocket.h24 class Var;
42 /// @param[in] url A <code>Var</code> of string type representing a WebSocket
45 /// @param[in] protocols A pointer to an array of <code>Var</code> of string
46 /// type specifying sub-protocols. Each <code>Var</code> represents one
72 int32_t Connect(const Var& url, const Var protocols[],
86 /// @param[in] reason A <code>Var</code> of string type representing the
103 int32_t Close(uint16_t code, const Var& reason,
113 /// ReceiveMessage() completes. Its received <code>Var</code> will be of
126 int32_t ReceiveMessage(Var* messag
[all...]
H A Durl_response_info.h40 /// @return A <code>Var</code> containing the response property value if
41 /// successful, <code>is_undefined Var</code> if an input parameter is
43 Var GetProperty(PP_URLResponseProperty property) const;
61 /// @return An <code>is_string Var</code> containing the response property
62 /// value if successful, <code>is_undefined Var</code> if an input parameter
64 Var GetURL() const {
71 /// @return An <code>is_string Var</code> containing the response property
72 /// value if successful, <code>is_undefined Var</code> if an input parameter
74 Var GetRedirectURL() const {
81 /// @return An <code>is_string Var</cod
[all...]
H A Dvar_array.h17 class VarArray : public Var {
27 explicit VarArray(const Var& var);
43 /// The <code>Var</code> assignment operator is overridden here so that we can
48 /// @return The resulting <code>VarArray</code> (as a <code>Var</code>&).
49 virtual Var& operator=(const Var& other);
57 Var Get(uint32_t index) const;
69 bool Set(uint32_t index, const Var& value);
H A Dnetwork_proxy.h34 /// @param[in] url A string <code>Var</code> containing a URL.
37 /// called upon completion. It will be passed a string <code>Var</code>
43 const Var& url,
44 const pp::CompletionCallbackWithOutput<Var>& callback);
H A Dvar.h21 class Var { class in namespace:pp
26 /// Default constructor. Creates a <code>Var</code> of type
28 Var();
30 /// A constructor used to create a <code>Var</code> of type <code>Null</code>.
31 Var(Null);
33 /// A constructor used to create a <code>Var</code> of type <code>Bool</code>.
36 Var(bool b);
38 /// A constructor used to create a 32 bit integer <code>Var</code>.
41 Var(int32_t i);
43 /// A constructor used to create a double value <code>Var</cod
62 Var(PassRef, const PP_Var& var) { function in class:pp::Var
78 Var(DontManage, const PP_Var& var) { function in class:pp::Var
[all...]
H A Dmessage_handler.h27 const Var& message_data) = 0;
41 /// @return Returns a pp::Var that is then copied to a JavaScript object
44 virtual pp::Var HandleBlockingMessage(pp::InstanceHandle instance,
45 const Var& message_data) = 0;
H A Dvar_array_buffer.h20 class VarArrayBuffer : public Var {
32 explicit VarArrayBuffer(const Var& var);
42 VarArrayBuffer(const VarArrayBuffer& buffer) : Var(buffer) {}
55 /// <code>VarArrayBuffer</code>. A Var's assignment operator is overloaded
61 /// @return The resulting <code>VarArrayBuffer</code> (as a Var&).
62 virtual Var& operator=(const Var& other);
/external/chromium_org/ppapi/cpp/private/
H A Dvar_private.h18 // VarPrivate is a version of Var that exposes the private scripting API.
19 // It's designed to be mostly interchangeable with Var since most callers will
21 class VarPrivate : public Var {
23 VarPrivate() : Var() {}
24 VarPrivate(Null) : Var(Null()) {}
25 VarPrivate(bool b) : Var(b) {}
26 VarPrivate(int32_t i) : Var(i) {}
27 VarPrivate(double d) : Var(d) {}
28 VarPrivate(const char* utf8_str) : Var(utf8_str) {}
29 VarPrivate(const std::string& utf8_str) : Var(utf8_st
[all...]
H A Dplatform_verification.h14 class Var;
21 int32_t ChallengePlatform(const Var& service_id,
22 const Var& challenge,
23 Var* signed_data,
24 Var* signed_data_signature,
25 Var* platform_key_certificate,
H A Dvar_private.cc52 bool VarPrivate::HasProperty(const Var& name, Var* exception) const {
59 bool VarPrivate::HasMethod(const Var& name, Var* exception) const {
66 VarPrivate VarPrivate::GetProperty(const Var& name, Var* exception) const {
68 return Var();
69 return Var(PassRef(), get_interface<PPB_Var_Deprecated>()->GetProperty(
73 void VarPrivate::GetAllPropertyNames(std::vector<Var>* properties,
74 Var* exceptio
[all...]
H A Dinstance_private.h22 class Var;
34 virtual Var GetInstanceObject();
48 VarPrivate ExecuteScript(const Var& script, Var* exception = NULL);
/external/chromium_org/ppapi/utility/websocket/
H A Dwebsocket_api.h17 class Var;
31 /// @param[in] url A <code>Var</code> of string type representing a WebSocket
34 /// <code>Var</code> specifying sub-protocols. Each <code>Var</code>
44 int32_t Connect(const Var& url, const Var protocols[],
51 /// @param[in] reason A <code>Var</code> of string type which represents the
57 int32_t Close(uint16_t code, const Var& reason);
68 int32_t Send(const Var& data);
80 /// @return Returns a <code>Var</cod
[all...]
/external/compiler-rt/test/tsan/
H A Dstack_race.cc13 int Var = 42; local
15 pthread_create(&t, 0, Thread, &Var);
16 Var = 43;
H A Dstack_race2.cc13 int Var = 42; local
15 pthread_create(&t, 0, Thread2, &Var);
16 Var = 42;
H A Dtls_race.cc13 static __thread int Var = 42; local
15 pthread_create(&t, 0, Thread, &Var);
16 Var = 43;
H A Dtls_race2.cc13 static __thread int Var = 42; local
15 pthread_create(&t, 0, Thread2, &Var);
16 Var = 42;
/external/chromium_org/ppapi/tests/
H A Dtest_console.cc34 pp::Var source,
35 pp::Var message) {
49 pp::Var source(std::string("somewhere"));
53 TestConsoleSub(interface, pp_instance, source, pp::Var());
54 TestConsoleSub(interface, pp_instance, source, pp::Var(pp::Var::Null()));
55 TestConsoleSub(interface, pp_instance, source, pp::Var(false));
56 TestConsoleSub(interface, pp_instance, source, pp::Var(12345678));
57 TestConsoleSub(interface, pp_instance, source, pp::Var(-0.0));
58 TestConsoleSub(interface, pp_instance, source, pp::Var("Hell
[all...]

Completed in 1457 milliseconds

1234567891011>>