HomeSort by relevance Sort by last modified time
    Searched refs:Model (Results 76 - 100 of 250) sorted by null

1 2 34 5 6 7 8 910

  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUTargetMachine.cpp 44 Reloc::Model RM, CodeModel::Model CM,
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 22 class Contact(db.Model):
23 """Data model class to hold user objects."""
  /external/chromium_org/chrome/common/extensions/docs/server2/
blob_reference_store.py 10 class _Model(db.Model):
  /external/chromium_org/tools/json_schema_compiler/
cpp_type_generator_test.py 8 import model namespace
14 def __init__(self, model):
15 self._model = model
25 self.models = defaultdict(model.Model)
53 m = model.Model()
75 m = model.Model()
141 m = model.Model(
    [all...]
compiler.py 28 from model import Model
52 # If compiling the C++ model code, delete 'nocompile' nodes.
57 api_model = Model()
67 # Load the actual namespaces into the model.
85 # Construct the type generator with all the namespaces in this model.
139 description='Generates a C++ model of an API from JSON schema',
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCTargetDesc.cpp 87 static MCCodeGenInfo *createSparcMCCodeGenInfo(StringRef TT, Reloc::Model RM,
88 CodeModel::Model CM,
92 // The default 32-bit code model is abs32/pic32 and the default 32-bit
93 // code model for JIT is abs32.
104 static MCCodeGenInfo *createSparcV9MCCodeGenInfo(StringRef TT, Reloc::Model RM,
105 CodeModel::Model CM,
109 // The default 64-bit code model is abs44/pic32 and the default 64-bit
110 // code model for JIT is abs64.
  /packages/apps/Mms/src/com/android/mms/model/
RegionModel.java 18 package com.android.mms.model;
20 public class RegionModel extends Model {
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
light.c 449 /*** Light Model ***/
463 if (TEST_EQ_4V( ctx->Light.Model.Ambient, params ))
466 COPY_4V( ctx->Light.Model.Ambient, params );
472 if (ctx->Light.Model.LocalViewer == newbool)
475 ctx->Light.Model.LocalViewer = newbool;
479 if (ctx->Light.Model.TwoSide == newbool)
482 ctx->Light.Model.TwoSide = newbool;
483 if (ctx->Light.Enabled && ctx->Light.Model.TwoSide)
500 if (ctx->Light.Model.ColorControl == newenum)
503 ctx->Light.Model.ColorControl = newenum
    [all...]
  /external/mesa3d/src/mesa/main/
light.c 449 /*** Light Model ***/
463 if (TEST_EQ_4V( ctx->Light.Model.Ambient, params ))
466 COPY_4V( ctx->Light.Model.Ambient, params );
472 if (ctx->Light.Model.LocalViewer == newbool)
475 ctx->Light.Model.LocalViewer = newbool;
479 if (ctx->Light.Model.TwoSide == newbool)
482 ctx->Light.Model.TwoSide = newbool;
483 if (ctx->Light.Enabled && ctx->Light.Model.TwoSide)
500 if (ctx->Light.Model.ColorControl == newenum)
503 ctx->Light.Model.ColorControl = newenum
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
AnalyzerOptions.h 40 #define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATFN) NAME##Model,
47 #define ANALYSIS_CONSTRAINTS(NAME, CMDFLAG, DESC, CREATFN) NAME##Model,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
plugin.properties 13 pluginName=JDI Debug Model
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.h 103 Reloc::Model RM = Reloc::Default,
104 CodeModel::Model CMM = CodeModel::JITDefault) {
  /external/llvm/lib/Target/R600/
AMDGPUTargetMachine.cpp 69 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCTargetDesc.cpp 67 static MCCodeGenInfo *createXCoreMCCodeGenInfo(StringRef TT, Reloc::Model RM,
68 CodeModel::Model CM,
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.h 66 void DetectFamilyModel(unsigned EAX, unsigned &Family, unsigned &Model);
X86MCTargetDesc.cpp 188 unsigned &Model) {
190 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
195 // Examine extended model ID if family ID is 6 or F.
196 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
301 static MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM,
302 CodeModel::Model CM,
312 // use static relocation model by default.
324 // ELF and X86-64 don't have a distinct DynamicNoPIC model. DynamicNoPIC
325 // is defined as a model for code which may be used in static or dynamic
335 // If we are on Darwin, disallow static relocation model in X86-64 mode, sinc
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSubtarget.h 138 // Relocation Model
139 Reloc::Model RM;
178 const std::string &FS, bool little, Reloc::Model RM,
272 // Grab relocation model
273 Reloc::Model getRelocationModel() const {return RM;}
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 279 SmallString<128> Model, ResultPath;
282 llvm::sys::path::append(Model, Directory, "report-%%%%%%.html");
285 llvm::sys::fs::createUniqueFile(Model.str(), FD, ResultPath)) {
297 Model = "";
303 llvm::sys::path::append(Model, Directory,
305 EC = llvm::sys::fs::openFileForWrite(Model.str(),
310 llvm::errs() << "warning: could not create file '" << Model.str()
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowPresenter.java 25 import com.android.mms.model.AudioModel;
26 import com.android.mms.model.ImageModel;
27 import com.android.mms.model.LayoutModel;
28 import com.android.mms.model.MediaModel;
29 import com.android.mms.model.MediaModel.MediaAction;
30 import com.android.mms.model.Model;
31 import com.android.mms.model.RegionMediaModel;
32 import com.android.mms.model.RegionModel;
33 import com.android.mms.model.SlideModel
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
main.py 57 class LogEntry(ndb.Model):
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv20_state_tnl.c 179 struct gl_lightmodel *m = &ctx->Light.Model;
193 PUSH_DATAb(push, ctx->Light.Model.TwoSide);
245 COPY_3V(c_factor, ctx->Light.Model.Ambient);
249 ctx->Light.Model.Ambient);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_tnl.c 179 struct gl_lightmodel *m = &ctx->Light.Model;
193 PUSH_DATAb(push, ctx->Light.Model.TwoSide);
245 COPY_3V(c_factor, ctx->Light.Model.Ambient);
249 ctx->Light.Model.Ambient);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
datastorefile.py 47 class DataEntry(db.Model):
67 class DataStoreFile(db.Model):
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip.c 229 if (ctx->Light.Model.TwoSide &&
238 if (ctx->Light.Model.TwoSide &&
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 42 cl::opt<Reloc::Model>
43 RelocModel("relocation-model",
44 cl::desc("Choose relocation model"),
48 "Target default relocation model"),
57 cl::opt<llvm::CodeModel::Model>
58 CMModel("code-model",
59 cl::desc("Choose code model"),
62 "Target default code model"),
64 "Small code model"),
66 "Kernel code model"),
    [all...]

Completed in 1190 milliseconds

1 2 34 5 6 7 8 910