Searched refs:mode (Results 251 - 275 of 1928) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/resources/options/
H A Dcontent_settings_exceptions_area.js13 * @param {string} mode The browser mode, 'otr' or 'normal'.
21 function ExceptionsListItem(contentType, mode, enableAskOption, exception) {
23 el.mode = mode;
52 // Setting label for display mode. |pattern| will be null for the 'add new
63 // Setting select element for edit mode.
122 [listItem.contentType, listItem.mode, input.value]);
252 [this.contentType, this.mode, oldPattern]);
256 [this.contentType, this.mode, newPatter
[all...]
/external/dropbear/libtommath/
H A Dbn_s_mp_exptmod.c27 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
138 /* set initial mode and bit cnt */
139 mode = 0;
162 /* if the bit is zero and mode == 0 then we ignore it
167 if (mode == 0 && y == 0) {
171 /* if the bit is zero and mode == 1 then we square */
172 if (mode == 1 && y == 0) {
184 mode = 2;
209 mode = 1;
214 if (mode
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSCPClient.java174 * @param mode
178 public SCPOutputStream put(final String remoteFile, long length, String remoteTargetDirectory, String mode) argument
187 if (null == mode)
188 mode = "0600";
189 if (mode.length() != 4)
190 throw new IllegalArgumentException("Invalid mode.");
192 for (int i = 0; i < mode.length(); i++)
193 if (Character.isDigit(mode.charAt(i)) == false)
194 throw new IllegalArgumentException("Invalid mode.");
203 return new SCPOutputStream(this, sess, remoteFile, length, mode);
[all...]
/external/grub/stage2/
H A Diso9660.h62 typedef int int8_t __attribute__((mode(QI)));
63 typedef unsigned int u_int8_t __attribute__((mode(QI)));
64 typedef int int16_t __attribute__((mode(HI)));
65 typedef unsigned int u_int16_t __attribute__((mode(HI)));
66 typedef int int32_t __attribute__((mode(SI)));
67 typedef unsigned int u_int32_t __attribute__((mode(SI)));
159 iso_32bit_t mode; member in struct:rock_ridge::__anon5032::PX
/external/guava/guava-tests/test/com/google/common/math/
H A DLongMathTest.java140 for (RoundingMode mode : ALL_ROUNDING_MODES) {
142 LongMath.log2(0L, mode);
150 for (RoundingMode mode : ALL_ROUNDING_MODES) {
152 LongMath.log2(x, mode);
162 for (RoundingMode mode : ALL_SAFE_ROUNDING_MODES) {
164 assertEquals(BigIntegerMath.log2(valueOf(x), mode), LongMath.log2(x, mode));
184 for (RoundingMode mode : ALL_ROUNDING_MODES) {
186 LongMath.log10(0L, mode);
194 for (RoundingMode mode
[all...]
/external/icu4c/i18n/
H A Dname2uni.cpp109 // The failure mode, here and below, is to behave like Any-Null,
136 int32_t mode = 0; local
143 switch (mode) {
150 mode = 1;
174 mode = 0;
214 // still switch to mode 0 and continue.
215 mode = 0;
228 mode = 0;
235 mode = 0;
246 // In incremental mode, onl
[all...]
/external/libvpx/vp8/encoder/
H A Dencodeintra.c60 vp8_encode_intra4x4block(rtcd, mb, be, b, b->bmi.mode);
96 switch (x->e_mbd.mode_info_context->mbmi.mode)
100 d->bmi.mode = B_DC_PRED;
103 d->bmi.mode = B_VE_PRED;
106 d->bmi.mode = B_HE_PRED;
109 d->bmi.mode = B_TM_PRED;
112 d->bmi.mode = B_DC_PRED;
/external/protobuf/src/google/protobuf/testing/
H A Dfile.cc53 #define mkdir(name, mode) mkdir(name)
96 bool File::CreateDir(const string& name, int mode) { argument
97 return mkdir(name.c_str(), mode) == 0;
100 bool File::RecursivelyCreateDir(const string& path, int mode) { argument
101 if (CreateDir(path, mode)) return true;
112 return RecursivelyCreateDir(path.substr(0, slashpos), mode) &&
113 CreateDir(path, mode);
/external/valgrind/main/VEX/priv/
H A Dhost_generic_regs.c83 switch (tab->mode[i]) {
101 void addHRegUse ( HRegUsage* tab, HRegMode mode, HReg reg ) argument
112 tab->mode[tab->n_used] = mode;
122 Need to do: tab->mode[i] = GLB(tab->mode, mode). In this
123 case very simple -- if tab->mode[i] != mode then result must
126 if (tab->mode[
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEBlend.cpp40 FEBlend::FEBlend(Filter* filter, BlendModeType mode) argument
42 , m_mode(mode)
46 PassRefPtr<FEBlend> FEBlend::create(Filter* filter, BlendModeType mode) argument
48 return adoptRef(new FEBlend(filter, mode));
56 bool FEBlend::setBlendMode(BlendModeType mode) argument
58 if (m_mode == mode)
60 m_mode = mode;
172 ts << " mode=\"" << m_mode << "\"]\n";
/external/webkit/Source/WebCore/wml/
H A DWMLVariables.cpp51 static bool isValidVariableEscapingModeString(const String& mode, WMLVariableEscapingMode& escapeMode) argument
53 if (mode == "e" || mode == "escape")
55 else if (mode == "u" || mode == "unesc")
57 else if (mode == "n" || mode == "noesc")
214 // Determine variable conversion mode string
252 // Override default escape mode, if desired
/external/zlib/contrib/minizip/
H A Dioapi.h135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
160 typedef voidpf (ZCALLBACK *open64_file_func) OF((voidpf opaque, const void* filename, int mode));
190 //#define ZSEEK64(filefunc,filestream,pos,mode) ((*((filefunc).zseek64_file)) ((filefunc).opaque,filestream,pos,mode))
194 voidpf call_zopen64 OF((const zlib_filefunc64_32_def* pfilefunc,const void*filename,int mode));
200 #define ZOPEN64(filefunc,filename,mode) (call_zopen64((&(filefunc)),(filename),(mode)))
202 #define ZSEEK64(filefunc,filestream,pos,mode) (call_zseek64((&(filefunc)),(filestream),(pos),(mode)))
/external/openssl/crypto/evp/
H A De_aes.c232 int ret, mode; local
235 mode = ctx->cipher->flags & EVP_CIPH_MODE;
236 if ((mode == EVP_CIPH_ECB_MODE || mode == EVP_CIPH_CBC_MODE)
241 dat->stream.cbc = mode==EVP_CIPH_CBC_MODE ?
248 if (mode==EVP_CIPH_CBC_MODE)
250 else if (mode==EVP_CIPH_CTR_MODE)
416 #define BLOCK_CIPHER_generic(nid,keylen,blocksize,ivlen,nmode,mode,MODE,flags) \
417 static const EVP_CIPHER aesni_##keylen##_##mode = { \
421 aesni_##mode##_ciphe
499 int ret, mode; local
[all...]
/external/qemu/hw/
H A Dpckbd.c34 #define KBD_CCMD_READ_MODE 0x20 /* Read mode bits */
35 #define KBD_CCMD_WRITE_MODE 0x60 /* Write mode bits */
95 #define AUX_SET_STREAM 0xEA /* Set stream mode */
97 #define AUX_RESET_WRAP 0xEC /* Reset wrap mode */
98 #define AUX_SET_WRAP 0xEE /* Set wrap mode */
99 #define AUX_SET_REMOTE 0xF0 /* Set remote mode */
118 uint8_t mode; member in struct:KBDState
146 if (s->mode & KBD_MODE_MOUSE_INT)
149 if ((s->mode & KBD_MODE_KBD_INT) &&
150 !(s->mode
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerBase.cpp70 static PassRefPtr<AllowDatabaseMainThreadBridge> create(WebWorkerBase* worker, const WTF::String& mode, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String& name, const WTF::String& displayName, unsigned long estimatedSize) argument
72 return adoptRef(new AllowDatabaseMainThreadBridge(worker, mode, commonClient, frame, name, displayName, estimatedSize));
96 AllowDatabaseMainThreadBridge(WebWorkerBase* worker, const WTF::String& mode, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String& name, const WTF::String& displayName, unsigned long estimatedSize) argument
98 , m_mode(mode)
224 // Create a unique mode just for this synchronous call.
225 String mode = allowDatabaseMode; local
226 mode.append(String::number(runLoop.createUniqueId()));
228 RefPtr<AllowDatabaseMainThreadBridge> bridge = AllowDatabaseMainThreadBridge::create(this, mode, commonClient(), m_webView->mainFrame(), String(name), String(displayName), estimatedSize);
231 if (runLoop.runInMode(workerContext, mode) == MessageQueueTerminated) {
246 // Create a unique mode fo
247 String mode = openFileSystemMode; local
251 bridge->postOpenFileSystemToMainThread(commonClient(), type, size, create, mode); local
403 postTaskForModeToWorkerContext( PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode) argument
[all...]
/external/stlport/src/details/
H A Dfstream_win32io.cpp46 static ios_base::openmode flag_to_openmode(int mode) { argument
49 switch (mode & O_ACCMODE) {
58 if (mode & O_APPEND)
61 if (mode & O_BINARY)
134 //the file will be considered as open in binary mode with no append attribute
137 int mode = 0; local
139 mode |= O_APPEND;
142 mode |= O_TEXT;
144 mode |= O_BINARY;
151 mode |
[all...]
/external/iptables/extensions/
H A Dlibxt_hashlimit.c35 "--hashlimit-mode <mode> mode is a comma-separated list of\n"
71 " --hashlimit-mode <mode> mode is a comma-separated list of\n"
103 {.name = "hashlimit-mode", .id = O_MODE, .type = XTTYPE_STRING,
136 {.name = "hashlimit-mode", .id = O_MODE, .type = XTTYPE_STRING},
193 info->cfg.mode = 0;
205 info->cfg.mode
214 parse_mode(uint32_t *mode, const char *option_arg) argument
332 print_mode(unsigned int mode, char separator) argument
[all...]
/external/openssh/
H A Dkex.c408 u_int mode, ctos, need; local
433 for (mode = 0; mode < MODE_MAX; mode++) {
435 kex->newkeys[mode] = newkeys;
436 ctos = (!kex->server && mode == MODE_OUT) ||
437 (kex->server && mode == MODE_IN);
454 for (mode = 0; mode < MODE_MAX; mode
532 u_int i, mode, ctos; local
552 kex_get_newkeys(int mode) argument
[all...]
/external/webp/src/enc/
H A Danalysis.c224 // Macroblock analysis: collect histogram for each mode, deduce the maximal
236 int mode; local
241 for (mode = 0; mode < max_mode; ++mode) {
243 it->yuv_p_ + VP8I16ModeOffsets[mode],
247 best_mode = mode;
261 int mode; local
266 for (mode = 0; mode < max_mod
290 int mode; local
[all...]
/external/openssh/openbsd-compat/
H A Dport-tun.c58 sys_tun_open(int tun, int mode) argument
72 if (mode == SSH_TUNMODE_ETHERNET) {
91 debug("%s: failed to configure tunnel (mode %d): %s", __func__,
92 mode, strerror(errno));
97 debug("%s: tunnel mode %d fd %d", __func__, mode, fd);
99 debug("%s: %s mode %d fd %d", __func__, ifr.ifr_name, mode, fd);
118 sys_tun_open(int tun, int mode) argument
125 if (mode
[all...]
/external/tremolo/Tremolo/
H A Ddsp.c174 int mode; local
191 /* read our mode and pre/post windowsize */
192 mode=oggpack_read(&opb,modebits);
193 if(mode==-1)return(OV_EBADPACKET);
194 return(ci->blocksizes[ci->mode_param[mode].blockflag]);
211 int mode,i; local
221 /* read our mode and pre/post windowsize */
222 mode=oggpack_read(&vd->opb,ilog(ci->modes));
223 if(mode==-1 || mode>
[all...]
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalue.cpp667 using the given \a mode to resolve the property.
680 QScriptValue QScriptValue::property(const QString& name, const ResolveFlags& mode) const
682 return QScriptValuePrivate::get(d_ptr->property(name, mode));
689 using the given \a mode to resolve the property.
697 QScriptValue QScriptValue::property(const QScriptString& name, const ResolveFlags& mode) const
699 return QScriptValuePrivate::get(d_ptr->property(QScriptStringPrivate::get(name).constData(), mode));
706 mode to resolve the property.
715 QScriptValue QScriptValue::property(quint32 arrayIndex, const ResolveFlags& mode) const
717 return QScriptValuePrivate::get(d_ptr->property(arrayIndex, mode));
784 given \a mode t
[all...]
/external/freetype/src/smooth/
H A Dftsmooth.c45 /* sets render-specific mode */
101 FT_Render_Mode mode,
114 FT_Int hmul = mode == FT_RENDER_MODE_LCD;
115 FT_Int vmul = mode == FT_RENDER_MODE_LCD_V;
128 /* check mode */
129 if ( mode != required_mode )
292 slot->library->lcd_filter_func( bitmap, mode, slot->library );
377 FT_Render_Mode mode,
380 if ( mode == FT_RENDER_MODE_LIGHT )
381 mode
99 ft_smooth_render_generic( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin, FT_Render_Mode required_mode ) argument
375 ft_smooth_render( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
390 ft_smooth_render_lcd( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
408 ft_smooth_render_lcd_v( FT_Renderer render, FT_GlyphSlot slot, FT_Render_Mode mode, const FT_Vector* origin ) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
H A DAutoEscapeContext.java51 * specify the content type of provided input. Valid values and the corresponding mode are: <br>
120 * Create a new context in the state represented by mode.
122 * @param mode EscapeMode object.
124 public AutoEscapeContext(EscapeMode mode) { argument
125 this(mode, null);
129 * Create a new context in the state represented by mode. If a non-null resourceName is provided,
132 * @param mode The initial EscapeMode for this context
135 public AutoEscapeContext(EscapeMode mode, String resourceName) { argument
137 htmlParser = createHtmlParser(mode);
185 private HtmlParser createHtmlParser(EscapeMode mode) { argument
492 AutoEscapeState(String functionName, EscapeMode mode) argument
[all...]
/external/liblzf/
H A Dlzf.c61 static enum { compress, uncompress, lzcat } mode = compress; variable in typeref:enum:__anon6747
83 "-h --help give this help\n" "-v --verbose verbose mode\n" "-b # --blocksize # set blocksize\n" "\n";
92 "-v verbose mode\n"
335 if (mode == compress)
376 if (mode != lzcat)
403 if (mode == lzcat)
419 if (mode == compress)
468 mode = uncompress;
471 mode = lzcat;
482 mode
[all...]

Completed in 1229 milliseconds

<<11121314151617181920>>