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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_gtk.cc 8 StatusTray* StatusTray::Create() {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediaengine.cc 36 MediaEngine* MediaEngine::Create() {
  /external/chromium/chrome/browser/sync/engine/
http_post_provider_factory.h 13 // A factory to create HttpPostProviders to hide details about the
15 // A factory instance itself should be owned by whomever uses it to create
22 virtual HttpPostProviderInterface* Create() = 0;
  /external/chromium/chrome/browser/ui/gtk/status_icons/
status_tray_gtk.cc 19 StatusTray* StatusTray::Create() {
  /external/chromium/net/http/
url_security_manager_posix.cc 12 URLSecurityManager* URLSecurityManager::Create(
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification_factory.h 22 static Notification Create(
28 static Notification Create(
  /external/webrtc/src/system_wrappers/source/
event.cc 22 EventWrapper* EventWrapper::Create()
27 return EventLinux::Create();
  /external/chromium/chrome/browser/
tab_closeable_state_watcher.h 25 static TabCloseableStateWatcher* Create();
  /external/chromium/chrome/browser/ui/options/
show_options_url.cc 16 Browser* browser = Browser::Create(profile);
  /external/chromium/chrome/common/
multi_process_lock.h 28 static MultiProcessLock* Create(const std::string& name);
chrome_paths_linux.cc 29 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());
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 28 // 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/skia/include/core/
SkMallocPixelRef.h 41 return Create;
43 static SkPixelRef* Create(SkFlattenableReadBuffer& buffer) {
  /external/skia/include/utils/
SkUnitMappers.h 39 static SkFlattenable* Create(SkFlattenableReadBuffer& buffer);
59 static SkFlattenable* Create(SkFlattenableReadBuffer&);
  /external/llvm/include/llvm/MC/
MCExpr.h 123 static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
194 static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) {
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(Plus, Expr, Ctx)
    [all...]
  /external/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 69 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/
VerifierTest.cpp 28 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/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.h 36 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/examples/Fibonacci/
fibonacci.cpp 13 // The goal of this snippet is to create in the memory the LLVM module
40 // 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
    [all...]
  /external/skia/include/effects/
SkTransparentShader.h 33 virtual Factory getFactory() { return Create; }
45 static SkFlattenable* Create(SkFlattenableReadBuffer& buffer) {
  /external/skia/include/images/
SkImageRef_GlobalPool.h 30 return Create;
32 static SkPixelRef* Create(SkFlattenableReadBuffer&);
  /external/skia/src/effects/
SkPixelXorXfermode.cpp 39 return Create;
42 SkFlattenable* SkPixelXorXfermode::Create(SkFlattenableReadBuffer& rb) {
  /external/skia/src/ports/
SkImageRef_ashmem.h 21 return Create;
23 static SkPixelRef* Create(SkFlattenableReadBuffer&);
  /external/chromium/base/
environment.h 30 static Environment* Create();
  /external/chromium/chrome/browser/speech/
speech_input_bubble_browsertest.cc 24 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(

Completed in 1726 milliseconds

1 2 3 4 5 6 7 8 91011>>