HomeSort by relevance Sort by last modified time
    Searched refs:Create (Results 226 - 250 of 3696) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Database.py 2 # This file is used to create a database used by EOT tool
42 # During the phase of initialization, the database will create all tables and
69 # 2. Create new tables
73 # @param NewDatabase: Check if it needs to create a new database
103 # Create new tables
105 self.TblDataModel.Create()
106 self.TblFile.Create()
107 self.TblFunction.Create()
108 self.TblReport.Create()
109 self.TblInf.Create()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 47 * cannot be tracked as they might not use the adaptor to create foo, bar.
64 public virtual object Create( IToken payload )
69 return Create( payload.Type, payload.Text );
71 object node = adaptor.Create( payload );
90 // walk the tree and emit create and add child events
97 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
174 object n = this.Create( child );
180 object n = this.Create( newRoot );
186 public virtual object Create( int tokenType, IToken fromToken
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
service_framework_tests.cpp 333 return TestClient::Create(status.take());
344 return TestClient::Create(status.take());
400 : BASE{android::pdx::uds::ClientChannelFactory::Create(kTestServicePath +
404 : BASE{android::pdx::uds::ClientChannel::Create(std::move(channel))} {}
428 // Create a dispatcher to handle messages to services.
429 dispatcher_ = android::pdx::ServiceDispatcher::Create();
450 // Create a test service and add it to the dispatcher.
451 auto service = TestService::Create(kTestService1);
455 // Create a client to service.
456 auto client = TestClient::Create(kTestService1)
    [all...]
  /external/lzma/CPP/Windows/
Synchronization.h 28 WRes Create(bool manualReset, bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
53 WRes Create(bool initiallyOwn = false)
66 return CBaseEvent::Create(true, initiallyOwn, name);
74 WRes Create()
96 WRes Create(bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
134 WRes Create(UInt32 initiallyCount, UInt32 maxCount)
  /external/perfetto/src/tracing/ipc/service/
consumer_ipc_service.cc 77 resp.Resolve(ipc::AsyncResult<protos::DisableTracingResponse>::Create());
92 resp.Resolve(ipc::AsyncResult<protos::FreeBuffersResponse>::Create());
116 response.Resolve(ipc::AsyncResult<protos::FlushResponse>::Create());
139 auto result = ipc::AsyncResult<protos::EnableTracingResponse>::Create();
150 auto result = ipc::AsyncResult<protos::ReadBuffersResponse>::Create();
164 result = ipc::AsyncResult<protos::ReadBuffersResponse>::Create();
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMConstantPoolValue.h 133 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID);
134 static ARMConstantPoolConstant *Create(const GlobalValue *GV,
136 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID,
139 static ARMConstantPoolConstant *Create(const Constant *C, unsigned ID,
176 static ARMConstantPoolSymbol *Create(LLVMContext &C, const char *s,
208 static ARMConstantPoolMBB *Create(LLVMContext &C,
  /external/swiftshader/third_party/LLVM/unittests/VMCore/
InstructionsTest.cpp 25 const ReturnInst* r0 = ReturnInst::Create(C);
31 const ReturnInst* r1 = ReturnInst::Create(C, One);
49 BasicBlock* bb0 = BasicBlock::Create(C);
50 BasicBlock* bb1 = BasicBlock::Create(C);
53 const BranchInst* b0 = BranchInst::Create(bb0);
71 BranchInst* b1 = BranchInst::Create(bb0, bb1, One);
  /external/webrtc/webrtc/modules/video_capture/ios/
video_capture_ios.mm 23 VideoCaptureModule* VideoCaptureImpl::Create(const int32_t capture_id,
25 return VideoCaptureIos::Create(capture_id, deviceUniqueIdUTF8);
43 VideoCaptureModule* VideoCaptureIos::Create(const int32_t capture_id,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 48 * expensive: we have to create a hashtable with all tree nodes in it.
56 return Create( null );
60 * Create tree node that holds the start and stop tokens associated
239 return BecomeRoot( Create( newRoot ), oldRoot );
242 public virtual object Create( int tokenType, IToken fromToken )
246 object t = Create( fromToken );
250 public virtual object Create( int tokenType, IToken fromToken, string text )
253 return Create( tokenType, text );
258 object result = Create(fromToken);
262 public virtual object Create(IToken fromToken, string text
    [all...]
  /external/clang/lib/AST/
DeclOpenMP.cpp 29 OMPThreadPrivateDecl *OMPThreadPrivateDecl::Create(ASTContext &C,
62 OMPDeclareReductionDecl *OMPDeclareReductionDecl::Create(
92 OMPCapturedExprDecl *OMPCapturedExprDecl::Create(ASTContext &C, DeclContext *DC,
  /external/libbrillo/brillo/streams/
input_stream_set.h 43 static StreamPtr Create(std::vector<Stream*> source_streams,
47 // Simple helper method to create a multiplexer stream with a list of
49 // Effectively calls Create(source_streams, {}, error);
50 static StreamPtr Create(std::vector<Stream*> source_streams, ErrorPtr* error);
52 // Simple helper method to create a multiplexer stream with a list of
54 // Effectively calls Create(source_streams, owned_source_streams, error)
57 static StreamPtr Create(std::vector<StreamPtr> owned_source_streams,
111 // Internal constructor used by the Create() factory methods.
  /external/libchrome/base/
sequence_token.cc 44 SequenceToken SequenceToken::Create() {
66 TaskToken TaskToken::Create() {
77 : sequence_token_(sequence_token), task_token_(TaskToken::Create()) {
  /external/llvm/examples/BrainF/
BrainF.cpp 90 builder = new IRBuilder<>(BasicBlock::Create(C, label, brainf_func));
132 endbb = BasicBlock::Create(C, label, brainf_func);
138 ReturnInst::Create(C, endbb);
162 aberrorbb = BasicBlock::Create(C, label, brainf_func);
181 CallInst::Create(puts_func,
188 BranchInst::Create(endbb, aberrorbb);
269 BasicBlock *nextbb = BasicBlock::Create(C, label, brainf_func);
295 BasicBlock *testbb = BasicBlock::Create(C, label, brainf_func);
300 BasicBlock *bb_1 = BasicBlock::Create(C, label, brainf_func);
305 PHINode::Create(PointerType::getUnqual(IntegerType::getInt8Ty(C))
    [all...]
  /external/skqp/src/gpu/
GrPathRenderingRenderTargetContext.cpp 29 fStencilAndCoverTextContext.reset(GrStencilAndCoverTextContext::Create(fallbackContext));
50 fStencilAndCoverTextContext.reset(GrStencilAndCoverTextContext::Create(fallbackContext));
72 fStencilAndCoverTextContext.reset(GrStencilAndCoverTextContext::Create(fallbackContext));
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainF.cpp 78 builder = new IRBuilder<>(BasicBlock::Create(C, label, brainf_func));
122 endbb = BasicBlock::Create(C, label, brainf_func);
128 ReturnInst::Create(C, endbb);
153 aberrorbb = BasicBlock::Create(C, label, brainf_func);
172 CallInst::Create(puts_func,
179 BranchInst::Create(endbb, aberrorbb);
259 BasicBlock *nextbb = BasicBlock::Create(C, label, brainf_func);
285 BasicBlock *testbb = BasicBlock::Create(C, label, brainf_func);
290 BasicBlock *bb_1 = BasicBlock::Create(C, label, brainf_func);
295 PHINode::Create(PointerType::getUnqual(IntegerType::getInt8Ty(C))
    [all...]
  /external/tensorflow/tensorflow/core/framework/
function_testlib.cc 117 return FDH::Create(
135 return FDH::Create(
189 return FDH::Create(
  /external/webrtc/webrtc/base/
autodetectproxy_unittest.cc 39 bool Create(const std::string& user_agent,
77 ASSERT_TRUE(Create(kUserAgent,
122 ASSERT_TRUE(Create(kUserAgent,
sslfingerprint.cc 22 SSLFingerprint* SSLFingerprint::Create(
28 return Create(algorithm, &(identity->certificate()));
31 SSLFingerprint* SSLFingerprint::Create(
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
sli.cc 57 void Sli::Macroblocks::Create(uint8_t* buffer) const {
87 bool Sli::Create(uint8_t* packet,
101 item.Create(packet + *index);
  /external/webrtc/webrtc/voice_engine/
shared_data.cc 32 _moduleProcessThreadPtr(ProcessThread::Create("VoiceProcessThread")) {
34 if (OutputMixer::Create(_outputMixerPtr, _gInstanceCounter) == 0)
38 if (TransmitMixer::Create(_transmitMixerPtr, _gInstanceCounter) == 0)
  /frameworks/compile/mclinker/lib/Fragment/
Stub.cpp 43 // create LDSymbol for the stub
52 FragmentRef::Create(*this, initSymValue()),
59 Relocation::Create((*it)->type(),
60 *(FragmentRef::Create(*this, (*it)->offset())),
  /system/core/init/
descriptors.h 56 virtual int Create(const std::string& globalContext) const = 0;
68 virtual int Create(const std::string& context) const override;
77 virtual int Create(const std::string& context) const override;
  /art/compiler/
compiler.cc 29 Compiler* Compiler::Create(CompilerDriver* driver, Compiler::Kind kind) {
  /art/compiler/dex/
verified_method.h 42 static const VerifiedMethod* Create(verifier::MethodVerifier* method_verifier)
  /art/compiler/jit/
jit_compiler.h 35 static JitCompiler* Create();

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011>>