HomeSort by relevance Sort by last modified time
    Searched refs:Module (Results 426 - 450 of 826) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ppapi/cpp/dev/
text_input_dev.cc 46 Module::Get()->AddPluginInterface(kPPPTextInputInterface,
url_util_dev.cc 8 #include "ppapi/cpp/module.h"
20 Module::Get()->GetBrowserInterface(PPB_URLUTIL_DEV_INTERFACE));
video_capture_client_dev.cc 10 #include "ppapi/cpp/module.h"
70 Module::Get()->AddPluginInterface(kPPPVideoCaptureInterface,
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
temporary_file.cc 13 #include "ppapi/cpp/module.h"
58 pp::Core* core = pp::Module::Get()->core();
  /external/chromium_org/ppapi/tests/
test_buffer.cc 11 #include "ppapi/cpp/module.h"
18 pp::Module::Get()->GetBrowserInterface(PPB_BUFFER_DEV_INTERFACE));
test_mouse_cursor.cc 19 pp::Module::Get()->GetBrowserInterface(PPB_MOUSECURSOR_INTERFACE));
  /external/clang/include/clang/Lex/
DirectoryLookup.h 26 class Module;
61 /// \brief Whether we've performed an exhaustive search for module maps
118 /// directory for module maps.
122 /// for module maps.
158 /// part of a known module, this will be set to the module that should
PPCallbacks.h 117 /// \param Imported The module, whenever an inclusion directive was
118 /// automatically turned into a module import or null otherwise.
128 const Module *Imported) {
131 /// \brief Callback invoked whenever there was an explicit module-import
136 /// \param Path The identifiers (and their locations) of the module
139 /// \param Imported The imported module; can be null if importing failed.
143 const Module *Imported) {
340 const Module *Imported) {
351 const Module *Imported) {
  /external/llvm/include/llvm/Analysis/
PostDominators.h 86 virtual void print(raw_ostream &OS, const Module*) const;
  /external/llvm/include/llvm/CodeGen/
LiveStackAnalysis.h 95 virtual void print(raw_ostream &O, const Module* = 0) const;
  /external/llvm/include/llvm/IR/
Function.h 96 friend class SymbolTableListTraits<Function, Module>;
98 void setParent(Module *parent);
120 /// Function ctor - If the (optional) Module argument is specified, the
122 /// the module.
125 const Twine &N = "", Module *M = 0);
129 const Twine &N = "", Module *M = 0) {
348 /// removeFromParent - This method unlinks 'this' from the containing module,
353 /// eraseFromParent - This method unlinks 'this' from the containing module
452 /// 'delete' a whole module at a time, even though there may be circular
458 /// Since no other object in the module can have references into the body of
    [all...]
  /external/llvm/include/llvm/Target/
TargetLoweringObjectFile.h 19 #include "llvm/IR/Module.h"
58 /// emitModuleFlags - Emit the module flags that the platform cares about.
60 ArrayRef<Module::ModuleFlagEntry>,
  /external/llvm/lib/Analysis/
IntervalPartition.cpp 1 //===- IntervalPartition.cpp - Interval Partition module code -------------===//
35 void IntervalPartition::print(raw_ostream &O, const Module*) const {
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 40 ExecutionEngine *MCJIT::createJIT(Module *M,
54 MCJIT::MCJIT(Module *m, TargetMachine *tm, RTDyldMemoryManager *MM,
73 ObjectBufferStream* MCJIT::emitObject(Module *m) {
74 /// Currently, MCJIT only supports a single module and the module passed to
75 /// this function call is expected to be the contained module. The module
76 /// is passed as a parameter here to prepare for multiple module support in
83 // FIXME: Track compilation state on a per-module basis when multiple modules
118 void MCJIT::loadObject(Module *M)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTX.h 20 #include "llvm/IR/Module.h"
69 bool isImageOrSamplerVal(const Value *, const Module *);
  /external/llvm/tools/llvm-prof/
llvm-prof.cpp 23 #include "llvm/IR/Module.h"
127 /// a module.
142 bool runOnModule(Module &M);
148 bool ProfileInfoPrinterPass::runOnModule(Module &M) {
160 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
239 outs() << "Annotated LLVM code for the module:\n\n";
269 Module *M = 0;
  /frameworks/compile/libbcc/bcinfo/
BitcodeTranslator.cpp 33 #include "llvm/IR/Module.h"
125 // Module ownership is handled by the context, so we don't need to free it.
126 llvm::Module *module = NULL; local
129 module = llvm_3_0::ParseBitcodeFile(MEM.get(), *mContext, &error);
131 module = llvm_2_7::ParseBitcodeFile(MEM.get(), *mContext, &error);
137 if (!module) {
147 llvm_3_2::WriteBitcodeToFile(module, OS);
  /frameworks/compile/slang/
slang_backend.cpp 45 #include "llvm/IR/Module.h"
147 if (mpModule->getPointerSize() == llvm::Module::Pointer32) {
272 llvm::Module *M = mGen->ReleaseModule();
274 // The module has been released by IR gen on failures, do not double free.
280 "Unexpected module change during LLVM IR generation");
282 // Insert #pragma information into metadata section of module
310 for (llvm::Module::iterator I = mpModule->begin(), E = mpModule->end();
319 // Create and run module passes
332 for (llvm::Module::iterator I = mpModule->begin(), E = mpModule->end();
  /art/compiler/dex/
frontend.cc 44 ::llvm::Module* makeLLVMModuleContents(::llvm::Module* module);
51 // Create context, module, intrinsic helper & ir builder
53 llvm_module_ = new ::llvm::Module("art", *llvm_context_);
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
file_io.cc 20 #include "ppapi/cpp/module.h"
48 /// module on the web page. The browser will ask the Module object to create
336 /// The Module class. The browser calls the CreateInstance() method to create
337 /// an instance of your NaCl module on the web page. The browser creates a new
339 class FileIoModule : public pp::Module {
341 FileIoModule() : pp::Module() {}
353 /// Factory function called by the browser when the module is first loaded.
354 /// The browser keeps a singleton of this module. It calls the
357 /// point for your NaCl module with the browser
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/socket/
socket.cc 11 #include "ppapi/cpp/module.h"
303 // The ExampleModule provides an implementation of pp::Module that creates
305 class ExampleModule : public pp::Module {
307 ExampleModule() : pp::Module() {}
316 // kind of Module.
318 Module* CreateModule() { return new ExampleModule(); }
  /external/chromium_org/native_client_sdk/src/examples/api/websocket/
websocket.cc 10 #include "ppapi/cpp/module.h"
189 // The WebSocketModule provides an implementation of pp::Module that creates
191 class WebSocketModule : public pp::Module {
193 WebSocketModule() : pp::Module() {}
202 // kind of Module.
204 Module* CreateModule() { return new WebSocketModule(); }
  /external/chromium_org/ppapi/native_client/src/trusted/weak_ref/
call_on_main_thread.h 41 #include "ppapi/cpp/module.h" // for pp::Module
76 pp::Module::Get()->core()->CallOnMainThread(
149 pp::Module::Get()->core()->CallOnMainThread(
242 pp::Module::Get()->core()->CallOnMainThread(
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
fault_pm_nameservice_test.cc 29 #include "ppapi/cpp/module.h"
248 class MyModule : public pp::Module {
250 MyModule() : pp::Module() {}
261 // Factory function for your specialization of the Module object.
262 Module* CreateModule() {
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
pm_nameservice_test.cc 29 #include "ppapi/cpp/module.h"
248 class MyModule : public pp::Module {
250 MyModule() : pp::Module() {}
261 // Factory function for your specialization of the Module object.
262 Module* CreateModule() {

Completed in 1482 milliseconds

<<11121314151617181920>>