HomeSort by relevance Sort by last modified time
    Searched defs:Model (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
model.js 7 function Model(precision) {
18 Model.prototype.handle = function(input) {
68 * Reset the model's state to the passed in state.
72 Model.prototype.reset_ = function(state) {
79 * Selectively replace the model's state with the passed in state.
83 Model.prototype.set_ = function(state) {
96 * the model's state with the operator and operand used but returning the result
97 * of the calculation instead of updating the model's state with it.
101 Model.prototype.calculate_ = function(operator, operand) {
114 * model's precision, or "E" on overflow
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/heap/
model.py 8 class Model(object):
9 """ The heap snapshot model is a set of LiveHeapObjects. The LiveHeapObjects
  /external/libvorbis/doc/
03-codebook.tex 4 \section{Probability Model and Codebooks} \label{vorbis:spec:codebook}
9 statically configured probability model, instead packing all entropy
  /external/chromium_org/tools/json_schema_compiler/
schema_loader.py 12 from model import Model, UnixName
60 return Model().AddNamespace(
compiler.py 30 from model import Model
56 # If compiling the C++ model code, delete 'nocompile' nodes.
61 api_model = Model()
71 # Load the actual namespaces into the model.
91 # Construct the type generator with all the namespaces in this model.
149 description='Generates a C++ model of an API from JSON schema',
model.py 12 """Thrown when data in the model is invalid.
18 self, 'Model parse exception at:\n' + '\n'.join(hierarchy))
21 class Model(object):
22 """Model of all namespaces that comprise an API.
25 - |namespaces| a map of a namespace name to its model.Namespace
35 """Add a namespace's json to the model and returns the namespace.
45 def CreateFeature(name, model):
46 if isinstance(model, dict):
47 return SimpleFeature(name, model)
48 return ComplexFeature(name, [SimpleFeature(name, child) for child in model])
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 84 TLSModel::Model Model;
87 Model = Printer.TM.getTLSModel(GV);
92 Model = TLSModel::GeneralDynamic;
94 switch (Model) {
AArch64ISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
23 // Relocation model types.
25 enum Model { Default, Static, PIC_, DynamicNoPIC };
28 // Code model types.
30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
35 enum Model {
54 inline CodeModel::Model unwrap(LLVMCodeModel Model) {
55 switch (Model) {
72 inline LLVMCodeModel wrap(CodeModel::Model Model)
    [all...]
  /external/llvm/lib/Support/
Host.cpp 186 unsigned &Model) {
188 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
193 // Examine extended model ID if family ID is 6 or F.
194 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
203 unsigned Model = 0;
204 DetectX86FamilyModel(EAX, Family, Model);
233 switch (Model) {
246 switch (Model) {
264 switch (Model) {
269 // model 0
    [all...]
  /external/llvm/lib/Target/
TargetMachine.cpp 74 /// getRelocationModel - Returns the code generation relocation model. The
76 Reloc::Model TargetMachine::getRelocationModel() const {
82 /// getCodeModel - Returns the code model. The choices are small, kernel,
84 CodeModel::Model TargetMachine::getCodeModel() const {
90 /// Get the IR-specified TLS model for Var.
91 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
105 llvm_unreachable("invalid TLS model");
108 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
117 TLSModel::Model Model;
    [all...]
  /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()
  /external/chromium_org/chrome/common/extensions/docs/server2/
appengine_wrappers.py 246 class Model(object):
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 145 .Case(CMDFLAG, NAME##Model)
161 .Case(CMDFLAG, NAME##Model)
517 unsigned Model = llvm::StringSwitch<unsigned>(Name)
523 if (Model == ~0U) {
527 Opts.setDefaultTLSModel(static_cast<CodeGenOptions::TLSModel>(Model));
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp     [all...]