Searched defs:Mode (Results 126 - 150 of 178) sorted by relevance

12345678

/external/llvm/lib/Support/
H A Draw_ostream.cpp89 BufferKind Mode) {
90 assert(((Mode == Unbuffered && !BufferStart && Size == 0) ||
91 (Mode != Unbuffered && BufferStart && Size != 0)) &&
102 BufferMode = Mode;
88 SetBufferAndMode(char *BufferStart, size_t Size, BufferKind Mode) argument
/external/skia/include/core/
H A DSkImageDecoder.h245 enum Mode { enum in class:SkImageDecoder
258 kSuccess = 2 //!< The entire image was decoded, if Mode is
265 and then if the Mode is kDecodePixels_Mode, call allocPixelRef(),
282 Result decode(SkStream*, SkBitmap* bitmap, SkColorType pref, Mode);
283 Result decode(SkStream* stream, SkBitmap* bitmap, Mode mode) {
319 static bool DecodeFile(const char file[], SkBitmap* bitmap, SkColorType pref, Mode,
335 Mode, Format* format = NULL);
364 static bool DecodeStream(SkStreamRewindable* stream, SkBitmap* bitmap, SkColorType pref, Mode,
371 bool decode(SkStream* stream, SkBitmap* bitmap, SkBitmap::Config pref, Mode mode) {
377 static bool DecodeFile(const char file[], SkBitmap* bitmap, SkBitmap::Config pref, Mode mod
[all...]
/external/chromium_org/net/http/
H A Dhttp_cache_transaction.h51 enum Mode { enum in class:net::HttpCache::Transaction
65 Mode mode() const { return mode_; }
421 Mode mode_;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOvalRenderer.cpp325 enum Mode { kStroke = 0, kHairline, kFill }; enum in class:DIEllipseEdgeEffect
327 static GrGeometryProcessor* Create(Mode mode) {
360 inline Mode getMode() const { return fMode; }
446 DIEllipseEdgeEffect(Mode mode)
465 Mode fMode;
478 return DIEllipseEdgeEffect::Create((Mode)(random->nextRangeU(0,2)));
776 DIEllipseEdgeEffect::Mode mode = (SkStrokeRec::kStroke_Style == style) ?
/external/clang/lib/Parse/
H A DParsePragma.cpp458 MSVtorDispAttr::Mode Mode = MSVtorDispAttr::Mode(Value & 0xFFFF); local
460 Actions.ActOnPragmaMSVtorDisp(Kind, PragmaLoc, Mode);
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp146 } Mode; member in class:__anon18259::ReturnVisitor
152 : StackFrame(Frame), Mode(Initial), EnableNullFPSuppression(Suppressed) {}
258 Mode = Satisfied;
304 Mode = MaybeUnsuppress;
351 Mode = Satisfied;
390 switch (Mode) {
/external/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp149 /// Mode of the analyzes while recursively visiting Decls.
242 void DisplayFunction(const Decl *D, AnalysisMode Mode, argument
252 if (Mode == AM_Syntax)
254 else if (Mode == AM_Path) {
267 assert(Mode == (AM_Syntax | AM_Path) && "Unexpected mode!");
317 /// \param Mode - determines if we are requesting syntax only or path
322 void HandleCode(Decl *D, AnalysisMode Mode,
338 AnalysisMode Mode = getModeForDecl(D, RecVisitorMode); local
339 if (Mode & AM_Syntax)
384 AnalysisMode getModeForDecl(Decl *D, AnalysisMode Mode);
575 getModeForDecl(Decl *D, AnalysisMode Mode) argument
596 HandleCode(Decl *D, AnalysisMode Mode, ExprEngine::InliningModes IMode, SetOfConstDecls *VisitedCallees) argument
[all...]
/external/eigen/Eigen/src/Geometry/
H A DTransform.h26 Mode = Transform::Mode, enumerator in enum:Eigen::internal::transform_traits::__anon20907
27 IsProjective = (int(Mode)==int(Projective))
39 int Mode,
55 int Mode,
181 Mode = _Mode, enumerator in enum:Eigen::Transform::__anon20908
185 Rows = int(Mode)==(AffineCompact) ? Dim : HDim
197 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
199 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> ConstLinearPart;
201 typedef typename internal::conditional<int(Mode)
1224 Mode = enumerator in enum:Eigen::internal::transform_product_result::__anon20911
[all...]
/external/llvm/lib/Target/ARM/
H A DARMCodeEmitter.cpp1243 static unsigned getAddrModeUPBits(unsigned Mode) { argument
1251 switch (Mode) {
1281 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode()); local
1282 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
1738 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(MI.getOpcode());
1739 Binary |= getAddrModeUPBits(ARM_AM::getAM4SubMode(Mode));
H A DARMLoadStoreOptimizer.cpp147 static int getLoadStoreMultipleOpcode(int Opcode, ARM_AM::AMSubMode Mode) { argument
152 switch (Mode) {
161 switch (Mode) {
172 switch (Mode) {
179 switch (Mode) {
186 switch (Mode) {
194 switch (Mode) {
201 switch (Mode) {
208 switch (Mode) {
215 switch (Mode) {
904 getUpdatingLSMultipleOpcode(unsigned Opc, ARM_AM::AMSubMode Mode) argument
1006 ARM_AM::AMSubMode Mode = ARM_AM::getLoadStoreMultipleSubMode(Opcode); local
1069 getPreIndexedLoadStoreOpcode(unsigned Opc, ARM_AM::AddrOpc Mode) argument
1094 getPostIndexedLoadStoreOpcode(unsigned Opc, ARM_AM::AddrOpc Mode) argument
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp194 ARM_AM::AMSubMode Mode = (ARM_AM::AMSubMode)MI.getOperand(OpIdx).getImm(); local
195 switch (Mode) {
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp305 sys::fs::perms Mode = I->getAccessMode(); local
306 printMode((Mode >> 6) & 007);
307 printMode((Mode >> 3) & 007);
308 printMode(Mode & 007);
322 sys::fs::perms Mode = I->getAccessMode(); local
327 sys::fs::openFileForWrite(Storage.c_str(), FD, sys::fs::F_None, Mode),
/external/skia/src/gpu/
H A DGrOvalRenderer.cpp307 enum Mode { kStroke = 0, kHairline, kFill }; enum in class:DIEllipseEdgeEffect
309 static GrEffectRef* Create(Mode mode) {
339 inline Mode getMode() const { return fMode; }
423 DIEllipseEdgeEffect(Mode mode) : GrVertexEffect() {
434 Mode fMode;
447 return DIEllipseEdgeEffect::Create((Mode)(random->nextRangeU(0,2)));
748 DIEllipseEdgeEffect::Mode mode = (SkStrokeRec::kStroke_Style == style) ?
/external/chromium_org/remoting/webapp/
H A Dclient_session.js51 * @param {remoting.ClientSession.Mode} mode The mode of this connection.
312 remoting.ClientSession.Mode = {
500 } else if (this.mode_ != remoting.ClientSession.Mode.ME2ME) {
636 * @return {remoting.ClientSession.Mode} The current state.
1450 if (this.mode_ == remoting.ClientSession.Mode.ME2ME) {
1529 if (remoting.enableCast && this.mode_ == remoting.ClientSession.Mode.ME2ME) {
/external/chromium_org/v8/src/
H A Dassembler.h336 enum Mode { enum in class:v8::internal::RelocInfo
380 RelocInfo(byte* pc, Mode rmode, intptr_t data, Code* host)
387 static inline bool IsRealRelocMode(Mode mode) {
391 static inline bool IsPseudoRelocMode(Mode mode) {
396 static inline bool IsConstructCall(Mode mode) {
399 static inline bool IsCodeTarget(Mode mode) {
402 static inline bool IsEmbeddedObject(Mode mode) {
405 static inline bool IsRuntimeEntry(Mode mode) {
409 static inline bool IsGCRelocMode(Mode mode) {
412 static inline bool IsJSReturn(Mode mod
[all...]
H A Dcompiler.h412 enum Mode { enum in class:v8::internal::CompilationInfo
419 void Initialize(Isolate* isolate, Mode mode, Zone* zone);
421 void SetMode(Mode mode) {
468 Mode mode_;
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp1022 enum Mode { enum in class:mkvmuxer::Segment
1214 void set_mode(Mode mode) { mode_ = mode; }
1215 Mode mode() const { return mode_; }
1378 Mode mode_;
/external/llvm/include/llvm/Support/
H A DFileSystem.h554 unsigned Mode = all_read | all_write);
609 OpenFlags Flags, unsigned Mode = 0666);
642 mapmode Mode; member in class:llvm::sys::fs::mapped_file_region
/external/llvm/lib/Linker/
H A DLinkModules.cpp401 unsigned Mode; // Mode to treat source module. member in class:__anon25870::ModuleLinker
417 ValMaterializer(TypeMap, DstM, LazilyLinkFunctions), Mode(mode),
1180 if (Mode == Linker::DestroySource) {
1584 bool Linker::linkInModule(Module *Src, unsigned Mode, std::string *ErrorMsg) { argument
1585 ModuleLinker TheLinker(Composite, IdentifiedStructTypes, Src, Mode,
1604 bool Linker::LinkModules(Module *Dest, Module *Src, unsigned Mode, argument
1607 return L.linkInModule(Src, Mode, ErrorMsg);
1615 LLVMLinkerMode Mode, char **OutMessages) {
1618 Mode, OutMessage
1614 LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src, LLVMLinkerMode Mode, char **OutMessages) argument
[all...]
/external/llvm/lib/TableGen/
H A DTGParser.cpp734 IDParseMode Mode) {
772 if (Mode == ParseNameMode)
778 if (Mode == ParseValueMode) {
1166 IDParseMode Mode) {
1174 return ParseSimpleValue(CurRec, ItemType, Mode);
1201 return ParseIDValue(CurRec, Name, NameLoc, Mode); // Value ::= IDValue
1465 Init *TGParser::ParseValue(Record *CurRec, RecTy *ItemType, IDParseMode Mode) { argument
1466 Init *Result = ParseSimpleValue(CurRec, ItemType, Mode);
1474 if (Mode == ParseNameMode || Mode
732 ParseIDValue(Record *CurRec, const std::string &Name, SMLoc NameLoc, IDParseMode Mode) argument
1165 ParseSimpleValue(Record *CurRec, RecTy *ItemType, IDParseMode Mode) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp992 enum Mode { kLive = 0x1, kFile = 0x2 }; enum in class:mkvmuxer::Segment
1168 void set_mode(Mode mode) { mode_ = mode; }
1169 Mode mode() const { return mode_; }
1331 Mode mode_;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Donyx_if.c676 if(cpi->oxcf.Mode == MODE_REALTIME)
775 int Mode = cpi->compressor_speed; local
822 if (Mode == 0)
824 else if (Mode == 2)
887 switch (Mode)
1507 switch (cpi->oxcf.Mode)
2386 fprintf(fmode, " { /* Above Mode : %d */\n", i);
/external/clang/lib/AST/
H A DExprConstant.cpp509 EvalInfo(const ASTContext &C, Expr::EvalStatus &S, EvaluationMode Mode) argument
516 EvalMode(Mode) {}
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp365 NotificationMode Mode; member in class:__anon18202::MallocChecker::MallocBugVisitor
374 : Sym(S), Mode(Normal), FailedReallocSymbol(nullptr), IsLeak(isLeak) {}
2297 if (Mode == Normal) {
2310 Mode = ReallocationFailed;
2325 } else if (Mode == ReallocationFailed) {
2335 Mode = Normal;
/external/libvpx/libvpx/vp8/encoder/
H A Donyx_if.c653 if(cpi->oxcf.Mode == MODE_REALTIME)
752 int Mode = cpi->compressor_speed; local
799 if (Mode == 0)
801 else if (Mode == 2)
864 switch (Mode)
1475 switch (cpi->oxcf.Mode)
2336 fprintf(fmode, " { /* Above Mode : %d */\n", i);

Completed in 1568 milliseconds

12345678