HomeSort by relevance Sort by last modified time
    Searched refs:Var (Results 1 - 25 of 401) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.h 13 class Var;
22 // from this class and override the virtual functions you support. pp::Var has
24 // to convert your custom object to a var.
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)
    [all...]
url_util_dev.h 9 #include "ppapi/cpp/var.h"
24 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
    [all...]
scriptable_object_deprecated.cc 9 #include "ppapi/cpp/var.h"
17 // 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())
    [all...]
selection_dev.h 13 class Var;
44 virtual Var GetSelectedText(bool html) = 0;
url_util_dev.cc 42 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_REF
    [all...]
  /external/clang/test/CodeGen/
2002-02-18-64bitConstant.c 8 long long Var = 123455678902ll;
9 printf("%lld\n", Var);
  /external/chromium_org/ppapi/cpp/
var_dictionary.h 9 #include "ppapi/cpp/var.h"
17 class VarDictionary : public Var {
19 /// Constructs a new dictionary var.
22 /// Constructs a <code>VarDictionary</code> given a var for which
23 /// is_dictionary() is true. This will refer to the same dictionary var, but
26 /// @param[in] var A dictionary var.
27 explicit VarDictionary(const Var& var);
32 /// @param[in] var A <code>PP_Var</code> of type PP_VARTYPE_DICTIONARY
    [all...]
var_array.cc 21 VarArray::VarArray() : Var(Null()) {
28 VarArray::VarArray(const Var& var) : Var(var) {
29 if (!var.is_array()) {
33 Var::operator=(Var(Null()));
37 VarArray::VarArray(const PP_Var& var) : Var(var)
    [all...]
var_array.h 10 #include "ppapi/cpp/var.h"
17 class VarArray : public Var {
19 /// Constructs a new array var.
22 /// Constructs a <code>VarArray</code> given a var for which is_array() is
23 /// true. This will refer to the same array var, but allow you to access
26 /// @param[in] var An array var.
27 explicit VarArray(const Var& var);
32 /// @param[in] var A <code>PP_Var</code> of type PP_VARTYPE_ARRAY
    [all...]
var_dictionary.cc 21 VarDictionary::VarDictionary() : Var(Null()) {
28 VarDictionary::VarDictionary(const Var& var) : Var(var) {
29 if (!var.is_dictionary()) {
33 Var::operator=(Var(Null()));
37 VarDictionary::VarDictionary(const PP_Var& var) : Var(var)
    [all...]
websocket.h 24 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* message
    [all...]
var_array_buffer.h 8 #include "ppapi/cpp/var.h"
20 class VarArrayBuffer : public Var {
26 /// Construct a <code>VarArrayBuffer</code> given a var for which
28 /// <code>ArrayBuffer</code> as var, but allows you to access methods
31 /// @param[in] var An <code>ArrayBuffer</code> var.
32 explicit VarArrayBuffer(const Var& var);
42 VarArrayBuffer(const VarArrayBuffer& buffer) : Var(buffer) {}
55 /// <code>VarArrayBuffer</code>. A Var's assignment operator is overloade
    [all...]
url_response_info.h 10 #include "ppapi/cpp/var.h"
40 /// @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
    [all...]
network_proxy.h 34 /// @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);
var.h 21 class Var {
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</code>
    [all...]
  /external/chromium_org/ppapi/cpp/private/
var_private.h 8 #include "ppapi/cpp/var.h"
18 // 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) {
    [all...]
platform_verification.h 14 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,
instance_private.h 22 class Var;
34 virtual Var GetInstanceObject();
48 VarPrivate ExecuteScript(const Var& script, Var* exception = NULL);
var_private.cc 52 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* exception) const
    [all...]
  /external/chromium_org/ppapi/utility/websocket/
websocket_api.h 17 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</code> of string type. If called before th
    [all...]
  /external/compiler-rt/test/tsan/
stack_race.cc 13 int Var = 42;
15 pthread_create(&t, 0, Thread, &Var);
16 Var = 43;
stack_race2.cc 13 int Var = 42;
15 pthread_create(&t, 0, Thread2, &Var);
16 Var = 42;
tls_race.cc 13 static __thread int Var = 42;
15 pthread_create(&t, 0, Thread, &Var);
16 Var = 43;
tls_race2.cc 13 static __thread int Var = 42;
15 pthread_create(&t, 0, Thread2, &Var);
16 Var = 42;
  /external/chromium_org/v8/src/
effects.h 78 template<class Var, class Base, class Effects>
83 Effect Lookup(Var var) {
85 return this->Find(var, &locator)
89 Bounds LookupBounds(Var var) {
90 Effect effect = Lookup(var);
96 void Seq(Var var, Effect effect) {
98 if (!this->Insert(var, &locator))
    [all...]

Completed in 239 milliseconds

1 2 3 4 5 6 7 8 91011>>