Searched refs:Construct (Results 1 - 25 of 88) sorted by relevance

1234

/external/chromium_org/v8/test/mjsunit/
H A Dnew.js28 function Construct(x) { return x; } function
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(nul
[all...]
/external/v8/test/mjsunit/
H A Dnew.js28 function Construct(x) { return x; } function
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(nul
[all...]
/external/chromium_org/tools/grit/grit/tool/
H A Dtoolbar_postprocess.py112 node.AddChild(misc.IdentifierNode.Construct(node, 'IDS_COMMAND_gcFirst', '12000', ''))
113 node.AddChild(misc.IdentifierNode.Construct(node,
115 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_BUTTON', '0', ''))
116 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_MENU', '1', ''))
117 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP', '2', ''))
118 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_OPTIONS_TEXT', '3', ''))
119 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_DISABLED', '4', ''))
120 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_MENU', '5', ''))
121 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_MENU_DISABLED', '6', ''))
122 node.AddChild(misc.IdentifierNode.Construct(nod
[all...]
/external/webrtc/src/system_wrappers/source/
H A Dcondition_variable_posix.h32 int Construct();
H A Devent_posix.h44 int Construct();
H A Dthread_posix.h44 int Construct();
H A Dcondition_variable_posix.cc32 const int error = ptr->Construct();
46 int ConditionVariablePosix::Construct() function in class:webrtc::ConditionVariablePosix
/external/chromium/third_party/libjingle/source/talk/base/
H A Dbuffer.h42 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) { function in class:talk_base::Buffer
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbuffer.h42 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) { function in class:talk_base::Buffer
H A Dbytebuffer.cc42 Construct(NULL, DEFAULT_SIZE, ORDER_NETWORK);
46 Construct(NULL, DEFAULT_SIZE, byte_order);
50 Construct(bytes, len, ORDER_NETWORK);
54 Construct(bytes, len, byte_order);
58 Construct(bytes, strlen(bytes), ORDER_NETWORK);
61 void ByteBuffer::Construct(const char* bytes, size_t len, function in class:talk_base::ByteBuffer
/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h118 struct PP_Var (*Construct)(void* object, member in struct:PPP_Class_Deprecated
H A Dppb_var_deprecated.h192 struct PP_Var (*Construct)(struct PP_Var object, member in struct:PPB_Var_Deprecated
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocommon.h178 Construct(0, 0, 0, 0);
182 Construct(w, h, interval_ns, cc);
186 Construct(format.width, format.height, format.interval, format.fourcc);
189 void Construct(int w, int h, int64 interval_ns, uint32 cc) { function in struct:cricket::VideoFormat
/external/openfst/src/include/fst/script/
H A Dshortest-distance.h60 static Queue *Construct(const Fst<Arc> &, function in struct:fst::script::QueueConstructor
71 static AutoQueue<typename Arc::StateId> *Construct( function in struct:fst::script::QueueConstructor
84 *Construct(const Fst<Arc> &fst, function in struct:fst::script::QueueConstructor
94 static TopOrderQueue<typename Arc::StateId> *Construct( function in struct:fst::script::QueueConstructor
111 QueueConstructor<Queue, Arc, AnyArcFilter<Arc> >::Construct(
121 QueueConstructor<Queue, Arc, AnyArcFilter<Arc> >::Construct(
132 QueueConstructor<Queue, Arc, InputEpsilonArcFilter<Arc> >::Construct(
144 OutputEpsilonArcFilter<Arc> >::Construct(
H A Dshortest-path.h73 ArcFilter>::Construct(ifst, &weights);
85 ArcFilter>::Construct(ifst, &weights);
97 ArcFilter >::Construct(ifst, &weights);
109 ArcFilter>::Construct(ifst, &weights);
121 ArcFilter>::Construct(ifst, &weights);
133 ArcFilter>::Construct(ifst, &weights);
/external/chromium_org/tools/grit/grit/node/
H A Dmessage_unittest.py52 msg_node = message.MessageNode.Construct(None, msg, 'BINGOBONGO')
63 msg_node = message.MessageNode.Construct(None, msg, 'BINGOBONGO')
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dstunrequest.h85 void Construct();
H A Dstunrequest.cc61 request->Construct();
150 void StunRequest::Construct() { function in class:cricket::StunRequest
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc113 PP_Var Construct(void* object, function in namespace:pp::deprecated::__anon9320
121 return static_cast<ScriptableObject*>(object)->Construct(
137 &Construct,
179 Var ScriptableObject::Construct(const std::vector<Var>& /*args*/, function in class:pp::deprecated::ScriptableObject
181 *exception = Var("Construct method does not exist in ScriptableObject");
H A Dscriptable_object_deprecated.h75 virtual Var Construct(const std::vector<Var>& args,
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dscriptable_plugin.h77 virtual pp::Var Construct(const std::vector<pp::Var>& args,
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dstunrequest.h87 void Construct();
H A Dstunrequest.cc61 request->Construct();
156 void StunRequest::Construct() { function in class:cricket::StunRequest
/external/chromium_org/v8/src/
H A Dlazy-instance.h61 // static void Construct(MyClass* allocated_ptr) {
132 ConstructTrait::Construct(MutableInstance(storage));
157 static void Construct(T* allocated_ptr) { function in struct:v8::internal::DefaultConstructTrait
/external/v8/src/
H A Dlazy-instance.h61 // static void Construct(MyClass* allocated_ptr) {
128 ConstructTrait::Construct(MutableInstance(storage));
153 static void Construct(T* allocated_ptr) { function in struct:v8::internal::DefaultConstructTrait

Completed in 521 milliseconds

1234