Searched refs:Create (Results 1 - 25 of 759) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_gtk.cc8 StatusTray* StatusTray::Create() { function in class:StatusTray
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediaengine.cc36 MediaEngine* MediaEngine::Create() { function in class:cricket::MediaEngine
/external/chromium/chrome/browser/ui/gtk/status_icons/
H A Dstatus_tray_gtk.cc19 StatusTray* StatusTray::Create() { function in class:StatusTray
/external/chromium/net/http/
H A Durl_security_manager_posix.cc12 URLSecurityManager* URLSecurityManager::Create( function in class:net::URLSecurityManager
/external/webrtc/src/system_wrappers/source/
H A Devent.cc22 EventWrapper* EventWrapper::Create() function in class:webrtc::EventWrapper
27 return EventLinux::Create();
/external/chromium/chrome/browser/sync/engine/
H A Dhttp_post_provider_factory.h22 virtual HttpPostProviderInterface* Create() = 0;
/external/chromium/chrome/browser/ui/options/
H A Dshow_options_url.cc16 Browser* browser = Browser::Create(profile);
/external/llvm/examples/ModuleMaker/
H A DModuleMaker.cpp28 // Create the "module" or "program" or "translation unit" to hold the
32 // Create the main function: first create the type 'int ()'
38 Function *F = Function::Create(FT, Function::ExternalLinkage, "main", M);
42 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", F);
48 // Create the add instruction... does not insert...
49 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
55 // Create the return instruction and add it to the basic block
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
/external/chromium/chrome/browser/chromeos/notifications/
H A Dsystem_notification_factory.h22 static Notification Create(
28 static Notification Create(
/external/llvm/lib/Transforms/Utils/
H A DUnifyFunctionExitNodes.cpp69 UnwindBlock = BasicBlock::Create(F.getContext(), "UnifiedUnwindBlock", &F);
76 BranchInst::Create(UnwindBlock, BB);
86 UnreachableBlock = BasicBlock::Create(F.getContext(),
94 BranchInst::Create(UnreachableBlock, BB);
111 BasicBlock *NewRetBlock = BasicBlock::Create(F.getContext(),
116 ReturnInst::Create(F.getContext(), NULL, NewRetBlock);
119 PN = PHINode::Create(F.getReturnType(), ReturningBlocks.size(),
122 ReturnInst::Create(F.getContext(), PN, NewRetBlock);
138 BranchInst::Create(NewRetBlock, BB);
/external/llvm/unittests/VMCore/
H A DVerifierTest.cpp28 OwningPtr<Function> F(Function::Create(FTy, GlobalValue::ExternalLinkage));
29 BasicBlock *Entry = BasicBlock::Create(C, "entry", F.get());
30 BasicBlock *Exit = BasicBlock::Create(C, "exit", F.get());
31 ReturnInst::Create(C, Exit);
33 // To avoid triggering an assertion in BranchInst::Create, we first create
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
/external/chromium/chrome/common/
H A Dchrome_paths_linux.cc29 scoped_ptr<base::Environment> env(base::Environment::Create());
53 scoped_ptr<base::Environment> env(base::Environment::Create());
69 scoped_ptr<base::Environment> env(base::Environment::Create());
82 scoped_ptr<base::Environment> env(base::Environment::Create());
90 scoped_ptr<base::Environment> env(base::Environment::Create());
110 scoped_ptr<base::Environment> env(base::Environment::Create());
H A Dmulti_process_lock.h28 static MultiProcessLock* Create(const std::string& name);
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp40 // Create the fib function and insert it into module M. This function is said
48 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", FibF);
58 // Create the true_block.
59 BasicBlock *RetBB = BasicBlock::Create(Context, "return", FibF);
60 // Create an exit block.
61 BasicBlock* RecurseBB = BasicBlock::Create(Context, "recurse", FibF);
63 // Create the "if (arg <= 2) goto exitbb"
65 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
67 // Create: ret int 1
68 ReturnInst::Create(Contex
[all...]
/external/skia/include/core/
H A DSkMallocPixelRef.h41 return Create;
43 static SkPixelRef* Create(SkFlattenableReadBuffer& buffer) { function in class:SkMallocPixelRef
/external/skia/include/images/
H A DSkImageRef_GlobalPool.h30 return Create;
32 static SkPixelRef* Create(SkFlattenableReadBuffer&);
/external/skia/include/utils/
H A DSkUnitMappers.h39 static SkFlattenable* Create(SkFlattenableReadBuffer& buffer);
59 static SkFlattenable* Create(SkFlattenableReadBuffer&);
/external/skia/src/effects/
H A DSkPixelXorXfermode.cpp39 return Create;
42 SkFlattenable* SkPixelXorXfermode::Create(SkFlattenableReadBuffer& rb) { function in class:SkPixelXorXfermode
/external/llvm/include/llvm/MC/
H A DMCExpr.h123 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
194 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) { function in class:llvm::MCSymbolRefExpr
195 return MCSymbolRefExpr::Create(Symbol, VK_None, Ctx);
198 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, VariantKind Kind,
200 static const MCSymbolRefExpr *Create(StringRef Name, VariantKind Kind,
248 static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
251 return Create(LNot, Expr, Ctx);
254 return Create(Minus, Expr, Ctx);
257 return Create(Not, Expr, Ctx);
260 return Create(Plu
[all...]
/external/chromium/chrome/browser/speech/
H A Dspeech_input_bubble_browsertest.cc24 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create(
31 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create(
39 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create(
48 scoped_ptr<SpeechInputBubble> bubble(SpeechInputBubble::Create(
/external/chromium/chrome/browser/
H A Dtab_closeable_state_watcher.cc17 ::TabCloseableStateWatcher* ::TabCloseableStateWatcher::Create() { function in class:TabCloseableStateWatcher::TabCloseableStateWatcher
H A Dtab_closeable_state_watcher.h25 static TabCloseableStateWatcher* Create();
/external/chromium/chrome/browser/ui/views/tabs/
H A Dnative_view_photobooth.h31 static NativeViewPhotobooth* Create(gfx::NativeView initial_view);
H A Dnative_view_photobooth_gtk.cc14 NativeViewPhotobooth* NativeViewPhotobooth::Create( function in class:NativeViewPhotobooth
/external/chromium/chrome/browser/ui/views/
H A Dwindow.cc20 return chromeos::BubbleWindow::Create(parent,

Completed in 744 milliseconds

1234567891011>>