HomeSort by relevance Sort by last modified time
    Searched defs:Construct (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/v8/test/mjsunit/
new.js 28 function Construct(x) { return x; }
30 assertFalse(null == new Construct(null));
31 assertFalse(void 0 == new Construct(void 0));
32 assertFalse(0 == new Construct(0));
33 assertFalse(1 == new Construct(1));
34 assertFalse(4.2 == new Construct(4.2));
35 assertFalse('foo' == new Construct('foo'));
36 assertFalse(true == new Construct(true));
39 assertTrue(x === new Construct(x));
40 assertFalse(x === new Construct(null))
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppp_class_deprecated.h 118 struct PP_Var (*Construct)(void* object,
ppb_var_deprecated.h 192 struct PP_Var (*Construct)(struct PP_Var object,
  /external/chromium_org/ppapi/cpp/private/
var_private.cc 128 VarPrivate VarPrivate::Construct(uint32_t argc, Var* argv,
137 return Var(PassRef(), get_interface<PPB_Var_Deprecated>()->Construct(
141 return Var(PassRef(), get_interface<PPB_Var_Deprecated>()->Construct(
  /external/chromium_org/third_party/libjingle/source/talk/base/
buffer.h 42 Construct(NULL, 0, 0);
45 Construct(data, length, length);
48 Construct(data, length, capacity);
51 Construct(buf.data(), buf.length(), buf.length());
62 Construct(buf.data(), buf.length(), buf.length());
103 Construct(NULL, 0, 0);
107 void Construct(const void* data, size_t length, size_t capacity) {
bytebuffer.cc 43 Construct(NULL, DEFAULT_SIZE, ORDER_NETWORK);
47 Construct(NULL, DEFAULT_SIZE, byte_order);
51 Construct(bytes, len, ORDER_NETWORK);
55 Construct(bytes, len, byte_order);
59 Construct(bytes, strlen(bytes), ORDER_NETWORK);
62 void ByteBuffer::Construct(const char* bytes, size_t len,
  /external/chromium_org/third_party/webrtc/base/
buffer.h 25 Construct(NULL, 0, 0);
28 Construct(data, length, length);
31 Construct(data, length, capacity);
34 Construct(buf.data(), buf.length(), buf.length());
45 Construct(buf.data(), buf.length(), buf.length());
86 Construct(NULL, 0, 0);
90 void Construct(const void* data, size_t length, size_t capacity) {
bytebuffer.cc 26 Construct(NULL, DEFAULT_SIZE, ORDER_NETWORK);
30 Construct(NULL, DEFAULT_SIZE, byte_order);
34 Construct(bytes, len, ORDER_NETWORK);
38 Construct(bytes, len, byte_order);
42 Construct(bytes, strlen(bytes), ORDER_NETWORK);
45 void ByteBuffer::Construct(const char* bytes, size_t len,
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
condition_variable_posix.cc 30 const int error = ptr->Construct();
42 int ConditionVariablePosix::Construct() {
event_posix.cc 32 const int error = ptr->Construct();
49 int EventPosix::Construct() {
thread_posix.cc 107 const int error = ptr->Construct();
148 int ThreadPosix::Construct() {
  /external/chromium_org/tools/grit/grit/node/
include.py 117 def Construct(parent, name, type, file, translateable=True,
message.py 228 def Construct(parent, message, name, desc='', meaning='', translateable=True):
structure.py 336 def Construct(parent, name, type, file, encoding='cp1252'):
  /external/chromium_org/v8/src/
elements-kind.cc 83 static void Construct(
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.cc 113 PP_Var Construct(void* object,
121 return static_cast<ScriptableObject*>(object)->Construct(
137 &Construct,
179 Var ScriptableObject::Construct(const std::vector<Var>& /*args*/,
181 *exception = Var("Construct method does not exist in ScriptableObject");
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stunrequest.cc 61 request->Construct();
156 void StunRequest::Construct() {
  /external/webrtc/src/system_wrappers/source/
condition_variable_posix.cc 32 const int error = ptr->Construct();
46 int ConditionVariablePosix::Construct()
event_posix.cc 33 const int error = ptr->Construct();
53 int EventPosix::Construct()
thread_posix.cc 85 const int error = ptr->Construct();
129 int ThreadPosix::Construct()
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.cc 96 Construct(timing);
100 Construct(NULL);
103 void RtpDataMediaChannel::Construct(talk_base::Timing* timing) {
  /external/chromium_org/v8/src/base/
lazy-instance.h 38 // static void Construct(MyClass* allocated_ptr) {
108 ConstructTrait::Construct(MutableInstance(storage));
131 static void Construct(T* allocated_ptr) {
  /external/chromium_org/content/renderer/pepper/
ppb_var_deprecated_impl.cc 43 const char kUnableToConstructException[] = "Error: Unable to construct";
338 PP_Var Construct(PP_Var var, uint32_t argc, PP_Var* argv, PP_Var* exception) {
356 if (!WebBindings::construct(
417 &Construct,
  /external/chromium_org/ppapi/proxy/
ppb_var_deprecated_proxy.cc 208 PP_Var Construct(PP_Var object,
309 &Construct,
485 result.Return(dispatcher(), ppb_var_impl_->Construct(
ppp_class_proxy.cc 146 PP_Var Construct(void* object,
184 &Construct,
367 ToPPPClass(ppp_class)->Construct,

Completed in 454 milliseconds

1 2