Searched refs:Module (Results 1 - 25 of 786) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/AlsoDependsOnModule.framework/Headers/
H A DAlsoDependsOnModule.h1 #import <Module/Module.h> // expected-warning{{treating #import as an import of module 'Module'}}
/external/clang/test/Preprocessor/
H A Dpp-modules.h1 #include <Module/Module.h>
H A Dpp-modules.c6 // CHECK: @import Module; /* clang -E: implicit import for "{{.*Headers[/\\]Module.h}}" */
7 #include <Module/Module.h>
10 // CHECK: @import Module; /* clang -E: implicit import for "{{.*Headers[/\\]Module.h}}" */
11 #include <Module/Module.h>
14 // CHECK: @import Module; /* clang -E: implicit import for "{{.*}}Module
[all...]
/external/clang/test/Frontend/
H A Drewrite-includes-modules.c5 #include <Module/Module.h>
7 #include <Module/Module.h>
11 // CHECK-NEXT: #include <Module/Module.h>{{$}}
14 // CHECK-NEXT: @import Module; /* clang -frewrite-includes: implicit import */{{$}}
18 // CHECK-NEXT: #include <Module/Module.h>{{$}}
21 // CHECK-NEXT: @import Module; /* clan
[all...]
/external/chromium_org/ppapi/cpp/private/
H A Dinternal_module.cc10 static Module* g_module_singleton = NULL;
13 Module* Module::Get() {
17 void InternalSetModuleSingleton(Module* module) {
H A Dinternal_module.h9 class Module;
11 // Forcibly sets the value returned by pp::Module::Get(). Do not call this
13 void InternalSetModuleSingleton(Module* module);
/external/clang/test/Modules/Inputs/DependsOnModule.framework/Headers/
H A DDependsOnModule.h1 #include <Module/Module.h> //expected-warning{{treating #include as an import of module 'Module'}}
/external/chromium_org/remoting/protocol/
H A Dppapi_module_stub.cc9 // Factory function for your specialization of the Module object.
10 Module* CreateModule() {
/external/clang/test/ARCMT/Inputs/Module.framework/Headers/
H A DSub.h1 #include <Module/Sub2.h>
H A DModule.h12 # error Module should have been built without -DFOO
15 @interface Module
23 #include <Module/Sub.h>
24 #include <Module/Buried/Treasure.h>
/external/clang/test/Modules/Inputs/Module.framework/Headers/
H A DSub.h1 #include <Module/Sub2.h>
H A DModule.h12 # error Module should have been built without -DFOO
15 @interface Module
23 #include <Module/Sub.h>
24 #include <Module/Buried/Treasure.h>
/external/chromium_org/native_client_sdk/src/examples/tutorial/multi_platform/
H A Dmulti_platform.cc20 class Module : public pp::Module { class in inherits:pp::Module
22 Module() : pp::Module() {} function in class:Module
23 virtual ~Module() {}
32 Module* CreateModule() {
33 return new ::Module();
/external/llvm/include/llvm/AsmParser/
H A DParser.h21 class Module;
28 /// Module (intermediate representation) with the corresponding features. Note
29 /// that this does not verify that the generated Module is valid, so you should
32 Module *ParseAssemblyFile(
40 /// Module (intermediate representation) with the corresponding features. Note
41 /// that this does not verify that the generated Module is valid, so you should
44 Module *ParseAssemblyString(
46 Module *M, ///< A module to add the assembly too.
55 Module *ParseAssembly(
57 Module *
[all...]
/external/chromium_org/ppapi/cpp/
H A Dmodule_embedder.h11 /// This file defines the APIs for creating a Module object.
14 class Module;
16 /// This function creates the <code>pp::Module</code> object associated with
23 pp::Module* CreateModule();
/external/antlr/antlr-3.4/runtime/Perl5/
H A DBuild.PL1 use Module::Build;
3 my $build = Module::Build->new(
/external/clang/include/clang/Lex/
H A DModuleMap.h20 #include "clang/Basic/Module.h"
56 Module *CompilingModule;
60 Module *SourceModule;
65 llvm::StringMap<Module *> Modules;
86 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage;
90 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { }
93 Module *getModule() const { return Storage.getPointer(); }
124 llvm::DenseMap<const DirectoryEntry *, Module *> UmbrellaDirs;
167 Module::ExportDecl
168 resolveExport(Module *Mo
[all...]
/external/llvm/include/llvm/Analysis/
H A DLint.h26 class Module;
39 const Module &M ///< The module to be checked
/external/llvm/include/llvm/Linker/
H A DLinker.h1 //===- Linker.h - Module Linker Interface -----------------------*- C++ -*-===//
20 class Module;
35 Linker(Module *M, bool SuppressWarnings=false);
38 Module *getModule() const { return Composite; }
46 bool linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg);
47 bool linkInModule(Module *Src, std::string *ErrorMsg) {
51 static bool LinkModules(Module *Dest, Module *Src, unsigned Mode,
55 Module *Composite;
/external/llvm/include/llvm/Transforms/Utils/
H A DCtorUtils.h23 class Module;
27 bool optimizeGlobalCtorsList(Module &M,
H A DModuleUtils.h19 class Module;
29 void appendToGlobalCtors(Module &M, Function *F, int Priority);
32 void appendToGlobalDtors(Module &M, Function *F, int Priority);
36 GlobalVariable *collectUsedGlobalVariables(Module &M,
/external/llvm/include/llvm/IRReader/
H A DIRReader.h22 class Module;
27 /// If the given file holds a bitcode image, return a Module
30 /// Module.
31 Module *getLazyIRFileModule(const std::string &Filename, SMDiagnostic &Err,
34 /// If the given MemoryBuffer holds a bitcode image, return a Module
36 /// a Module for it. This function *never* takes ownership of Buffer.
37 Module *ParseIR(MemoryBuffer *Buffer, SMDiagnostic &Err, LLVMContext &Context);
39 /// If the given file holds a bitcode image, return a Module for it.
40 /// Otherwise, attempt to parse it as LLVM Assembly and return a Module
42 Module *ParseIRFil
[all...]
/external/chromium_org/native_client_sdk/src/examples/tutorial/load_progress/
H A Dload_progress.cc15 class LoadProgressModule : public pp::Module {
17 LoadProgressModule() : pp::Module() {}
26 Module* CreateModule() { return new LoadProgressModule(); }
/external/chromium_org/native_client_sdk/src/getting_started/part1/
H A Dhello_tutorial.cc32 /// module on the web page. The browser will ask the Module object to create
57 /// The Module class. The browser calls the CreateInstance() method to create
60 class HelloTutorialModule : public pp::Module {
62 HelloTutorialModule() : pp::Module() {}
79 Module* CreateModule() {
/external/llvm/include/llvm/ExecutionEngine/
H A DObjectCache.h17 class Module;
29 /// notifyObjectCompiled - Provides a pointer to compiled code for Module M.
30 virtual void notifyObjectCompiled(const Module *M, const MemoryBuffer *Obj) = 0;
33 /// contains the object which corresponds with Module M, or 0 if an object is
36 virtual MemoryBuffer* getObject(const Module* M) = 0;

Completed in 649 milliseconds

1234567891011>>