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

  /external/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/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Construct.java 21 * Provide a way to construct a Java instance out of the composed Node. Support
28 public interface Construct {
30 * Construct a Java instance with all the properties injected when it is
37 Object construct(Node node); method in interface:Construct
47 * <code>construct(Node node)</code> for the provided Node
  /external/v8/src/
elements-kind.cc 65 static void Construct(
register-configuration.cc 105 static void Construct(ArchDefaultRegisterConfiguration* config) {
assert-scope.cc 19 static void Construct(base::Thread::LocalStorageKey* key) {
code-factory.cc 334 Callable CodeFactory::Construct(Isolate* isolate) {
335 return Callable(isolate->builtins()->Construct(),
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable_posix.cc 30 const int error = ptr->Construct();
42 int ConditionVariablePosix::Construct() {
  /external/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/webrtc/talk/media/base/
rtpdataengine.cc 82 Construct(timing);
86 Construct(NULL);
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) {
videocapturer.cc 105 Construct();
113 Construct();
116 void VideoCapturer::Construct() {
videocommon.h 197 Construct(0, 0, 0, 0);
201 Construct(w, h, interval_ns, cc);
205 Construct(format.width, format.height, format.interval, format.fourcc);
208 void Construct(int w, int h, int64_t interval_ns, uint32_t cc) {
  /external/webrtc/webrtc/base/
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);
46 Construct(buf.data<char>(), buf.size(), ORDER_NETWORK);
49 void ByteBuffer::Construct(const char* bytes, size_t len,
  /external/webrtc/webrtc/p2p/base/
stunrequest.cc 47 request->Construct();
164 void StunRequest::Construct() {
port.cc 155 Construct();
186 Construct();
189 void Port::Construct() {
    [all...]
  /external/webrtc/talk/session/media/
channelmanager.cc 84 Construct(me, dme, cm, worker_thread);
89 Construct(me,
95 void ChannelManager::Construct(MediaEngineInterface* me,
  /external/webrtc/webrtc/p2p/client/
basicportallocator.cc 76 Construct();
84 Construct();
95 Construct();
123 Construct();
126 void BasicPortAllocator::Construct() {
    [all...]
  /system/update_engine/
p2p_manager.cc 727 P2PManager* P2PManager::Construct(
  /external/webrtc/talk/media/webrtc/
webrtcvoiceengine.cc 469 Construct();
474 Construct();
477 void WebRtcVoiceEngine::Construct() {
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp 430 // Construct a type with type-source information.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comsvcs.h     [all...]

Completed in 558 milliseconds