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

1 2

  /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/webkit/Source/WebKit/mac/Plugins/Hosted/
WebKitPluginHostTypes.h 48 Construct
ProxyInstance.mm 265 return invoke(exec, Construct, 0, args);
  /external/webrtc/src/system_wrappers/source/
condition_variable_posix.h 32 int Construct();
event_posix.h 44 int Construct();
thread_posix.h 44 int Construct();
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/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) {
  /external/openfst/src/include/fst/script/
shortest-distance.h 60 static Queue *Construct(const Fst<Arc> &,
71 static AutoQueue<typename Arc::StateId> *Construct(
84 *Construct(const Fst<Arc> &fst,
94 static TopOrderQueue<typename Arc::StateId> *Construct(
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(
shortest-path.h 73 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/third_party/libjingle/source/talk/p2p/base/
stunrequest.h 85 void Construct();
stunrequest.cc 61 request->Construct();
150 void StunRequest::Construct() {
  /external/v8/src/
lazy-instance.h 61 // static void Construct(MyClass* allocated_ptr) {
128 ConstructTrait::Construct(MutableInstance(storage));
153 static void Construct(T* allocated_ptr) {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channelmanager.h 164 void Construct();
mediasessionclient.h 141 void Construct();
channelmanager.cc 144 Construct();
160 Construct();
163 void ChannelManager::Construct() {
mediasessionclient.cc 59 Construct();
69 Construct();
73 void MediaSessionClient::Construct() {
    [all...]
  /external/compiler-rt/make/
lib_platforms.mk 20 # Construct the variable key for this directory.
subdir.mk 34 # Construct the variable key for this directory.
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPObjectProxy.cpp 244 bool NPObjectProxy::construct(const NPVariant* arguments, uint32_t argumentCount, NPVariant* result) function in class:WebKit::NPObjectProxy
256 if (!m_npRemoteObjectMap->connection()->sendSync(Messages::NPObjectMessageReceiver::Construct(argumentsData), Messages::NPObjectMessageReceiver::Construct::Reply(returnValue, resultData), m_npObjectID))
342 return toNPObjectProxy(npObject)->construct(arguments, argumentCount, result);
  /external/clang/lib/AST/
DeclPrinter.cpp 522 } else if (CXXConstructExpr *Construct
524 Args = Construct->getArgs();
525 NumArgs = Construct->getNumArgs();
657 if (CXXConstructExpr *Construct =
660 !Construct->isListInitialization()) {
661 ImplicitInit = Construct->getNumArgs() == 0 ||
662 Construct->getArg(0)->isDefaultArgument();
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 199 g.Construct(TUint32(&g), EFalse);
202 w.Construct(g, TUint32(&w));
SDL_epocvideo.cpp 256 User::LeaveIfError(Private->EPOC_WsScreen->Construct());
260 User::LeaveIfError(Private->EPOC_WsWindowGroup.Construct(WindowClientHandle));
279 // User::LeaveIfError(Private->EPOC_WsWindow.Construct(Private->EPOC_WsWindowGroup,WindowClientHandle ));
281 User::LeaveIfError(Private->EPOC_WsWindow.Construct(Private->EPOC_WsWindowGroup,WindowClientHandle - 1));
340 /* Construct Epoc window */
    [all...]

Completed in 550 milliseconds

1 2