/external/jsilver/src/com/google/streamhtmlparser/ |
HtmlParser.java | 32 * The Parser Mode requested for parsing a given template. 42 * This is a special mode, for standard HTML templates please use 51 public enum Mode { 110 * is (re)set with {@link Mode#JS}. 144 * <li>Inside a CSS file when the parser was reset in the CSS mode. 246 * <p>See the {@link HtmlParser.Mode} enum for information on all 249 * @param mode is an enum representing the high-level state of the parser 251 public void resetMode(HtmlParser.Mode mode);
|
/external/protobuf/src/google/protobuf/compiler/ |
command_line_interface.h | 115 // Enables "plugins". In this mode, if a command-line flag ends with "_out" 159 // mode is generally more intuitive and easier to use, especially e.g. when 264 enum Mode { 265 MODE_COMPILE, // Normal mode: parse .proto files and compile them. 270 Mode mode_;
|
/external/v8/src/ |
regexp-macro-assembler.h | 180 enum Mode { ASCII = 1, UC16 = 2 };
|
variables.h | 43 enum Mode { 77 Mode mode, 82 static const char* Mode2String(Mode mode); 97 Mode mode() const { return mode_; } function in class:v8::internal::Variable 147 Mode mode_;
|
compiler.h | 150 // Compilation mode. 156 enum Mode { 164 void Initialize(Mode mode) { 165 mode_ = V8::UseCrankshaft() ? mode : NONOPT; 174 void SetMode(Mode mode) { 176 mode_ = mode; 189 // Strict mode - used in eager compilation. 218 // Compilation mode flag and whether deoptimization is allowed [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
combined_encode.cpp | 31 /* Purpose : Encode a frame of MPEG4 bitstream in Combined mode. */ 112 if (currVol->shortVideoHeader) /* ShortVideoHeader Mode */ 173 if (!currVol->shortVideoHeader) /* Not in ShortVideoHeader mode */ 175 if (!currVol->ResyncMarkerDisable) /* RESYNC MARKER MODE */ 190 else /* NO RESYNC MARKER MODE */ 200 { /* ShortVideoHeader Mode */ 225 else /* Combined Mode*/ 255 /* Purpose : Encode a slice of MPEG4 bitstream in Combined mode and save */ 267 UChar mode = MODE_INTRA; local 268 UChar *Mode = video->headerInfo.Mode [all...] |
datapart_encode.cpp | 30 /* Purpose : Encode a frame of MPEG4 bitstream in datapartitioning mode. */ 204 /* Purpose : Encode a slice of MPEG4 bitstream in DataPar mode and save */ 216 UChar mode, *Mode = video->headerInfo.Mode; local 362 mode = Mode[mbnum]; 420 Mode[mbnum] = mode; 433 mbnum++; /* has to increment before SCD, to preserve Mode[mbnum] * [all...] |
fastcodemb.cpp | 42 -modified threshold based on correlation coeff 0.75 only for mode H.263 54 UChar Mode = video->headerInfo.Mode[mbnum]; 59 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q); 271 -modified threshold based on correlation coeff 0.75 only for mode H.263 283 UChar Mode = video->headerInfo.Mode[mbnum]; 288 Int intra = (Mode == MODE_INTRA || Mode == MODE_INTRA_Q) [all...] |
/external/chromium/chrome/browser/sync/engine/ |
syncer_thread.h | 33 enum Mode { 34 // In this mode, the thread only performs configuration tasks. This is 37 // normal mode. 50 // Change the mode of operation. 52 // scheduled jobs to adhere to the new mode. We could protect it, but it 57 // the mode changes all future jobs will be run against the updated mode. 58 // If supplied, |callback| will be invoked when the mode has been 59 // changed to |mode| *from the SyncerThread*, and not from the caller 61 void Start(Mode mode, ModeChangeCallback* callback) 186 Mode mode; member in struct:browser_sync::SyncerThread::WaitInterval [all...] |
/external/chromium/chrome/browser/ui/views/location_bar/ |
location_bar_view.h | 99 // The normal mode is the mode used in a regular browser window. 100 // In popup mode, the location bar view is read only and has a slightly 102 // In app launcher mode, the location bar is empty and no security states or 104 enum Mode { 114 Mode mode); 177 // focused. Used when the toolbar is in full keyboard accessibility mode. 182 // in the toolbar in full keyboard accessibility mode. 262 // Thickness of the left and right edges of the omnibox, in normal mode [all...] |
/external/chromium/net/http/ |
http_cache.h | 64 // The cache mode of operation. 65 enum Mode { 66 // Normal mode just behaves like a standard web cache. 68 // Record mode caches everything for purposes of offline playback. 70 // Playback mode replays from a cache without considering any 173 // Get/Set the cache's mode. 174 void set_mode(Mode value) { mode_ = value; } 175 Mode mode() { return mode_; } function in class:net::HttpCache 361 Mode mode_ [all...] |
http_cache_transaction.h | 34 // o If the mode of the transaction is NONE, then it is in "pass through" 35 // mode and all methods just forward to the inner network transaction. 37 // o If the mode of the transaction is only READ, then it may only read from 40 // o If the mode of the transaction is only WRITE, then it may only write to 43 // o If the mode of the transaction is READ_WRITE, then the transaction may 47 // o If the mode of the transaction is UPDATE, then the transaction may 50 enum Mode { 63 Mode mode() const { return mode_; } function in class:net::HttpCache::Transaction 346 Mode mode_ [all...] |
/external/skia/include/core/ |
SkXfermode.h | 69 MODE SRC_COEFF DST_COEFF 92 enum Mode { 129 * If the xfermode is one of the modes in the Mode enum, then asMode() 130 * returns true and sets (if not null) mode accordingly. Otherwise it 131 * returns false and ignores the mode parameter. 133 virtual bool asMode(Mode* mode); 136 * The same as calling xfermode->asMode(mode), except that this also checks 139 static bool AsMode(SkXfermode*, Mode* mode); [all...] |
/external/skia/include/images/ |
SkImageDecoder.h | 191 enum Mode { 198 and then if the Mode is kDecodePixels_Mode, call allocPixelRef(), 209 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false); 210 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode, bool reuseBitmap = false) { 211 return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode, reuseBitmap); 253 SkBitmap::Config prefConfig, Mode, 273 SkBitmap::Config prefConfig, Mode, 293 SkBitmap::Config prefConfig, Mode, 320 virtual bool onDecode(SkStream*, SkBitmap* bitmap, Mode) = 0 [all...] |
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
combined_decode.cpp | 27 /* Purpose : Decode a frame of MPEG4 bitstream in combined mode. */ 34 /* 04/13/2000 : Rewrote this combined mode path completely */ 35 /* so that it handles "Combined Mode With Error */ 50 uint8 *Mode = video->headerInfo.Mode; 67 // oscl_memset(Mode, MODE_INTRA, sizeof(uint8)*nTotalMB); 74 // oscl_memset(Mode, MODE_INTER, sizeof(uint8)*nTotalMB); 168 if (Mode[mbnum] != MODE_SKIPPED) 349 uint8 *Mode = video->headerInfo.Mode; 533 uint mode = video->headerInfo.Mode[mbnum]; local [all...] |
datapart_decode.cpp | 28 /* Purpose : Decode a frame of MPEG4 bitstream in datapartitioning mode. */ 57 // oscl_memset(Mode, MODE_INTRA, sizeof(uint8)*nTotalMB); 63 // oscl_memset(Mode, MODE_INTER, sizeof(uint8)*nTotalMB); 132 /* Purpose : Decode Data Partitioned Mode Video Packet in I-VOP */ 141 uint8 *Mode = video->headerInfo.Mode; 173 Mode[mbnum] = (uint8)(MBtype = MBtype_mode[MCBPC & 7]); 234 MBtype = Mode[mbnum]; 235 /* No skipped mode in I-packets 3/1/2001 */ 240 /* there is always acdcpred in DataPart mode 04/10/01 * 629 uint8 mode = video->headerInfo.Mode[mbnum]; local [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
OpenWnnEvent.java | 125 * Change Mode 130 * The definition class of engine's mode. 132 public static final class Mode { 229 /** Detail mode of the event */ 230 public int mode = 0; field in class:OpenWnnEvent 255 * Generate {@link OpenWnnEvent} for changing the mode 258 * @param mode The mode 260 public OpenWnnEvent(int code, int mode) { 262 this.mode = mode [all...] |
/external/libvpx/vp8/common/ |
onyx.h | 62 } MODE; 73 static __inline void Scale2Ratio(int mode, int *hr, int *hs) 75 switch (mode) 113 // mode -> 114 //(0)=Realtime/Live Encoding. This mode is optimized for realtim encoding (for example, capturing 128 int Mode; //
|
/external/llvm/lib/Linker/ |
LinkModules.cpp | 339 unsigned Mode; // Mode to treat source module. 347 ModuleLinker(Module *dstM, Module *srcM, unsigned mode) 348 : DstM(dstM), SrcM(srcM), Mode(mode) { } 821 if (Mode == Linker::DestroySource) { [all...] |
/external/skia/include/views/ |
SkWidget.h | 131 enum Mode { 138 Mode getMode() const { return (Mode)fMode; } 139 void setMode(Mode);
|
SkWidgetViews.h | 169 enum Mode { 176 Mode getMode() const { return (Mode)fMode; } 177 void setMode(Mode);
|
/external/webrtc/src/modules/audio_processing/main/interface/ |
audio_processing.h | 349 // Sets echo control appropriate for the audio routing |mode| on the device. 351 virtual int set_routing_mode(RoutingMode mode) = 0; 365 // the analog mode, prescribing an analog gain to be applied at the audio HAL. 373 // When an analog mode is set, this must be called prior to |ProcessStream()| 378 // When an analog mode is set, this should be called after |ProcessStream()| 383 enum Mode { 384 // Adaptive mode intended for use if an analog volume control is available 393 // Adaptive mode intended for situations in which an analog volume control 395 // mode, but with scaling instead applied in the digital domain. As with 396 // the analog mode, it additionally uses a digital compression stage [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
NewProjectWizardState.java | 45 /** The mode to run the wizard in: creating test, or sample, or plain project */ 46 public Mode mode; field in class:NewProjectWizardState 100 * when the wizard is running in create-sample-mode. 169 * @param mode the mode to run the wizard in 171 public NewProjectWizardState(Mode mode) { 172 this.mode = mode; [all...] |
/external/llvm/lib/Target/ARM/InstPrinter/ |
ARMInstPrinter.cpp | 236 // "Addressing Mode 1 - Data-processing operands" forms. This includes: 275 // Addressing Mode #2 390 // Addressing Mode #3 491 ARM_AM::AMSubMode Mode = ARM_AM::getAM4SubMode(MI->getOperand(OpNum) 493 O << ARM_AM::getAMSubModeStr(Mode); 949 assert(ShAmt <= 3 && "Not a valid Thumb2 addressing mode!");
|
/external/v8/src/mips/ |
codegen-mips.h | 215 // Arguments allocation mode 229 // Compilation mode. Either the compiler is used as the primary 233 enum Mode { 367 // Returns the arguments allocation mode. 461 OverwriteMode mode);
|