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

1 2 34 5

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetView.java 47 public static interface Model {
92 public void setModel(AlbumSetView.Model model) {
98 if (model != null) {
100 mSelectionDrawer, model, CACHE_SIZE);
AlbumView.java 40 public static interface Model {
65 public void setModel(Model model) {
71 if (model != null) {
73 mActivity, model, CACHE_SIZE,
77 setSlotCount(model.size());
PhotoView.java 83 private Model mModel;
156 public void setModel(Model model) {
157 if (mModel == model) return;
158 mModel = model;
159 mTileView.setModel(model);
160 if (model != null) notifyOnNewImage();
641 public static interface Model extends TileImageView.Model {
TileImageViewAdapter.java 28 public class TileImageViewAdapter implements TileImageView.Model {
TileImageView.java 73 private Model mModel;
122 public static interface Model {
138 public void setModel(Model model) {
139 mModel = model;
140 if (model != null) notifyModelInvalidated();
AlbumSlidingWindow.java 51 private final AlbumView.Model mSource;
77 AlbumView.Model source, int cacheSize,
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 169 unsigned &Model) {
171 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
176 // Examine extended model ID if family ID is 6 or F.
177 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
387 static MCCodeGenInfo *createX86MCCodeGenInfo(StringRef TT, Reloc::Model RM,
388 CodeModel::Model CM) {
397 // use static relocation model by default.
409 // ELF and X86-64 don't have a distinct DynamicNoPIC model. DynamicNoPIC
410 // is defined as a model for code which may be used in static or dynamic
420 // If we are on Darwin, disallow static relocation model in X86-64 mode, sinc
    [all...]
  /external/llvm/lib/Target/ARM/
ARMSubtarget.cpp 132 Reloc::Model RelocM) const {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowDataAdapter.java 35 public class SlideshowDataAdapter implements SlideshowPage.Model {
SlideshowPage.java 58 public static interface Model {
79 private Model mModel;
PhotoPage.java 84 private PhotoPage.Model mModel;
108 public static interface Model extends PhotoView.Model {
SinglePhotoDataAdapter.java 39 implements PhotoPage.Model {
  /packages/apps/Mms/src/com/android/mms/model/
LayoutModel.java 18 package com.android.mms.model;
27 public class LayoutModel extends Model {
SlideModel.java 18 package com.android.mms.model;
37 public class SlideModel extends Model implements List<MediaModel>, EventListener {
199 ((Model) object).unregisterAllModelChangedObservers();
MediaModel.java 18 package com.android.mms.model;
42 public abstract class MediaModel extends Model implements EventListener {
  /external/llvm/tools/llc/
llc.cpp 79 static cl::opt<Reloc::Model>
80 RelocModel("relocation-model",
81 cl::desc("Choose relocation model"),
85 "Target default relocation model"),
94 static cl::opt<llvm::CodeModel::Model>
95 CMModel("code-model",
96 cl::desc("Choose code model"),
99 "Target default code model"),
101 "Small code model"),
103 "Kernel code model"),
    [all...]
  /frameworks/compile/slang/
slang_backend.cpp 137 // need any relocation model.
138 llvm::Reloc::Model RM = llvm::Reloc::Static;
142 llvm::CodeModel::Model CM;
147 // architecture) may need large data address model
  /external/clang/lib/CodeGen/
BackendUtil.cpp 244 llvm::CodeModel::Model CM;
254 assert(CodeGenOpts.CodeModel.empty() && "Invalid code model!");
288 llvm::Reloc::Model RM = llvm::Reloc::Default;
295 "Invalid PIC model!");
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 107 case NAME##Model: CreateStoreMgr = CREATEFN; break;
115 case NAME##Model: CreateConstraintMgr = CREATEFN; break;
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 113 Reloc::Model RM, CodeModel::Model CM)
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 117 static cl::opt<Reloc::Model>
118 RelocModel("relocation-model",
119 cl::desc("Choose relocation model"),
123 "Target default relocation model"),
132 static cl::opt<llvm::CodeModel::Model>
133 CMModel("code-model",
134 cl::desc("Choose code model"),
137 "Target default code model"),
139 "Small code model"),
141 "Kernel code model"),
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowEditActivity.java 22 import com.android.mms.model.IModelChangedObserver;
23 import com.android.mms.model.Model;
24 import com.android.mms.model.SlideModel;
25 import com.android.mms.model.SlideshowModel;
396 public void onModelChanged(Model model, boolean dataChanged) {
  /development/scripts/app_engine_server/gae_shell/
shell.py 78 class Session(db.Model):
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 127 Reloc::Model ReloModel = TM.getRelocationModel();
201 // In static relocation model, the linker will resolve all addresses, so
214 // In static relocation model, the linker will resolve all addresses, so
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp 493 void MCObjectFileInfo::InitMCObjectFileInfo(StringRef TT, Reloc::Model relocm,
494 CodeModel::Model cm,

Completed in 969 milliseconds

1 2 34 5