Searched refs:Create (Results 51 - 75 of 877) sorted by relevance

1234567891011>>

/external/skia/src/ports/
H A DSkImageRef_ashmem.h28 return Create;
30 static SkPixelRef* Create(SkFlattenableReadBuffer&);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs40 * Create a tree node from Token object; for CommonTree type trees,
49 T Create(IToken payload); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
166 * Create a node for newRoot make it the root of oldRoot.
185 * Create a new node derived from a token, with a new token type.
194 T Create(int tokenType, IToken fromToken); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
206 T Create(int tokenType, IToken fromToken, string text); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
209 * Create a new node derived from a token, with a new token type.
218 T Create(int tokenType, string text); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
H A DITreeFactory.cs39 TTree Create( TToken payload ); method in interface:Antlr.Runtime.Tree.TToken
/external/chromium/base/
H A Denvironment.h30 static Environment* Create();
/external/chromium/chrome/browser/status_icons/
H A Dstatus_tray.h23 static StatusTray* Create();
/external/chromium/chrome/browser/ui/cocoa/
H A Drepost_form_warning_mac.h17 // a form. To show the dialog, call the |Create| method. It will open the
23 static RepostFormWarningMac* Create(NSWindow* parent,
/external/chromium/crypto/
H A Dsecure_hash_default.cc39 SecureHash* SecureHash::Create(Algorithm algorithm) { function in class:crypto::SecureHash
/external/chromium/third_party/libjingle/source/talk/base/
H A Dssladapter.h50 // Create the default SSL adapter for this platform
51 static SSLAdapter* Create(AsyncSocket* socket);
/external/llvm/lib/Support/
H A DStringPool.cpp30 entry_t *S = entry_t::Create(Key.begin(), Key.end());
/external/skia/src/gpu/
H A DGrGpuFactory.cpp22 GrGpu* GrGpu::Create(GrEngine engine, GrPlatform3DContext context3D) { function in class:GrGpu
/external/webrtc/src/system_wrappers/interface/
H A Devent_wrapper.h29 static EventWrapper* Create();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTreeAdaptor.cs56 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 ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
246 object t = Create( fromToken );
250 public virtual object Create( int tokenType, IToken fromToken, string text ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
253 return Create( tokenType, text );
258 object result = Create(fromToken);
262 public virtual object Create(IToken fromToken, string text) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
269 object result = Create(fromToke
273 public virtual object Create( int tokenType, string text ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
393 public abstract object Create( IToken payload ); method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
[all...]
H A DTreeIterator.cs71 down = adaptor.Create( TokenTypes.Down, "DOWN" );
72 up = adaptor.Create( TokenTypes.Up, "UP" );
73 eof = adaptor.Create( TokenTypes.EndOfFile, "EOF" );
/external/chromium/net/http/
H A Durl_security_manager_unittest.cc52 URLSecurityManager::Create(auth_filter, NULL));
71 URLSecurityManager::Create(NULL, auth_filter));
85 URLSecurityManager::Create(NULL, NULL));
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCExpr.h36 static const ARMMCExpr *Create(VariantKind Kind, const MCExpr *Expr,
40 return Create(VK_ARM_HI16, Expr, Ctx);
44 return Create(VK_ARM_LO16, Expr, Ctx);
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp30 Function* Func = Function::Create(FuncTy,GlobalValue::ExternalLinkage,
33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func);
36 BasicBlock* BB = BasicBlock::Create(Mod->getContext(), "bb", Func);
/external/llvm/unittests/VMCore/
H A DPassManagerTest.cpp424 Function* func_test1 = Function::Create(
432 Function* func_test2 = Function::Create(
440 Function* func_test3 = Function::Create(
448 Function* func_test4 = Function::Create(
468 BasicBlock* label_entry = BasicBlock::Create(getGlobalContext(), "entry",func_test1,0);
471 CallInst* int32_3 = CallInst::Create(func_test2, "", label_entry);
476 ReturnInst::Create(getGlobalContext(), int32_3, label_entry);
483 BasicBlock* label_entry_5 = BasicBlock::Create(getGlobalContext(), "entry",func_test2,0);
486 CallInst* int32_6 = CallInst::Create(func_test3, "", label_entry_5);
491 ReturnInst::Create(getGlobalContex
[all...]
H A DInstructionsTest.cpp30 const ReturnInst* r0 = ReturnInst::Create(C);
36 const ReturnInst* r1 = ReturnInst::Create(C, One);
54 BasicBlock* bb0 = BasicBlock::Create(C);
55 BasicBlock* bb1 = BasicBlock::Create(C);
58 const BranchInst* b0 = BranchInst::Create(bb0);
76 BranchInst* b1 = BranchInst::Create(bb0, bb1, One);
165 GetElementPtrInst *Gep0 = GetElementPtrInst::Create(PtrVecA, C2xi32a);
166 GetElementPtrInst *Gep1 = GetElementPtrInst::Create(PtrVecA, C2xi32b);
167 GetElementPtrInst *Gep2 = GetElementPtrInst::Create(PtrVecB, C2xi32a);
168 GetElementPtrInst *Gep3 = GetElementPtrInst::Create(PtrVec
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeAdaptor.cs61 public virtual object Create(IToken payload) { method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
64 return Create(payload.Type, payload.Text);
66 object node = adaptor.Create(payload);
135 object n = this.Create(child);
140 object n = this.Create(newRoot);
146 public virtual object Create(int tokenType, IToken fromToken) { method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
147 object node = adaptor.Create(tokenType, fromToken);
152 public virtual object Create(int tokenType, IToken fromToken, string text) { method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
153 object node = adaptor.Create(tokenType, fromToken, text);
158 public virtual object Create(in method in class:Antlr.Runtime.Debug.DebugTreeAdaptor
[all...]
/external/chromium/base/synchronization/
H A Dlock_unittest.cc54 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
120 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
134 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
181 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
201 ASSERT_TRUE(PlatformThread::Create(0, &thread1, &handle1));
202 ASSERT_TRUE(PlatformThread::Create(0, &thread2, &handle2));
203 ASSERT_TRUE(PlatformThread::Create(0, &thread3, &handle3));
/external/llvm/include/llvm/
H A DInstrTypes.h158 /// Create() - Construct a binary instruction, given the opcode and the two
163 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
167 /// Create() - Construct a binary instruction, given the opcode and the two
171 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
174 /// Create* - These methods just forward to Create, and are useful when you
178 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
180 return Create(Instruction::OPC, V1, V2, Name);\
184 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
186 return Create(Instructio
[all...]
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp34 // Create the add1 function entry and insert this entry into module M. The
45 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F);
55 // Create the add instruction, inserting it into the end of BB.
58 // Create the return instruction and add it to the basic block
59 ReturnInst::Create(M->getContext(), Add, BB);
66 // Create the fib function and insert it into module M. This function is said
75 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", FibF);
85 // Create the true_block.
86 BasicBlock *RetBB = BasicBlock::Create(M->getContext(), "return", FibF);
87 // Create a
[all...]
/external/llvm/lib/CodeGen/
H A DDwarfEHPrepare.cpp92 ExnObj = ExtractValueInst::Create(RI->getOperand(0), 0, "exn.obj", RI);
133 // Create the basic block where the _Unwind_Resume call will live.
145 CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB);
153 BasicBlock *UnwindBB = BasicBlock::Create(Ctx, "unwind_resume", &Fn);
154 PHINode *PN = PHINode::Create(Type::getInt8PtrTy(Ctx), ResumesSize,
163 BranchInst::Create(UnwindBB, Parent);
172 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeIterator.cs66 down = adaptor.Create(TokenTypes.Down, "DOWN");
67 up = adaptor.Create(TokenTypes.Up, "UP");
68 eof = adaptor.Create(TokenTypes.EndOfFile, "EOF");
/external/llvm/examples/BrainF/
H A DBrainF.cpp78 builder = new IRBuilder<>(BasicBlock::Create(C, label, brainf_func));
122 endbb = BasicBlock::Create(C, label, brainf_func);
128 ReturnInst::Create(C, endbb);
154 aberrorbb = BasicBlock::Create(C, label, brainf_func);
173 CallInst::Create(puts_func,
180 BranchInst::Create(endbb, aberrorbb);
260 BasicBlock *nextbb = BasicBlock::Create(C, label, brainf_func);
286 BasicBlock *testbb = BasicBlock::Create(C, label, brainf_func);
291 BasicBlock *bb_1 = BasicBlock::Create(C, label, brainf_func);
296 PHINode::Create(PointerTyp
[all...]

Completed in 1090 milliseconds

1234567891011>>