Searched refs:mode (Results 426 - 450 of 4497) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/content/browser/appcache/
H A Dappcache_manifest_parser.cc100 Mode mode = EXPLICIT; local
171 mode = EXPLICIT;
173 mode = FALLBACK;
175 mode = ONLINE_WHITELIST;
177 mode = INTERCEPT;
179 mode = UNKNOWN_MODE;
180 } else if (mode == UNKNOWN_MODE) {
182 } else if (line == L"*" && mode == ONLINE_WHITELIST) {
185 } else if (mode == EXPLICIT || mode
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dspeex.c51 EXPORT void *speex_encoder_init(const SpeexMode *mode) argument
53 return mode->enc_init(mode);
56 EXPORT void *speex_decoder_init(const SpeexMode *mode) argument
58 return mode->dec_init(mode);
109 SpeexMode *mode; local
110 mode = *(SpeexMode**)state;
111 return (mode)->enc(state, in, bits);
130 SpeexMode *mode local
192 nb_mode_query(const void *mode, int request, void *ptr) argument
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoe_audio_processing_impl.cc73 int VoEAudioProcessingImpl::SetNsStatus(bool enable, NsModes mode) { argument
75 "SetNsStatus(enable=%d, mode=%d)", enable, mode);
83 switch (mode) {
110 "SetNsStatus() failed to set Ns mode");
127 int VoEAudioProcessingImpl::GetNsStatus(bool& enabled, NsModes& mode) { argument
129 "GetNsStatus(enabled=?, mode=?)");
142 mode = kNsLowSuppression;
145 mode = kNsModerateSuppression;
148 mode
165 SetAgcStatus(bool enable, AgcModes mode) argument
231 GetAgcStatus(bool& enabled, AgcModes& mode) argument
335 SetRxNsStatus(int channel, bool enable, NsModes mode) argument
360 GetRxNsStatus(int channel, bool& enabled, NsModes& mode) argument
386 SetRxAgcStatus(int channel, bool enable, AgcModes mode) argument
413 GetRxAgcStatus(int channel, bool& enabled, AgcModes& mode) argument
523 SetEcStatus(bool enable, EcModes mode) argument
611 GetEcStatus(bool& enabled, EcModes& mode) argument
652 SetAecmMode(AecmModes mode, bool enableCNG) argument
704 GetAecmMode(AecmModes& mode, bool& enabledCNG) argument
[all...]
/external/lldb/tools/debugserver/source/
H A Dlibdebugserver.cpp55 // entry point, and then return the run loop mode that should come next.
149 // Return the new run loop mode based off of the current process state
233 // Init our mode and set 'is_running' based on the current process state
234 RNBRunLoopMode mode = HandleProcessStateChange (remote, true); local
289 mode = HandleProcessStateChange (remote, false);
296 mode = eRNBRunLoopModeExit;
311 mode = eRNBRunLoopModeExit;
319 if (mode != eRNBRunLoopModeInferiorExecuting)
323 return mode;
360 RNBRunLoopMode mode local
[all...]
/external/speex/libspeex/
H A Dspeex.c51 EXPORT void *speex_encoder_init(const SpeexMode *mode) argument
53 return mode->enc_init(mode);
56 EXPORT void *speex_decoder_init(const SpeexMode *mode) argument
58 return mode->dec_init(mode);
109 SpeexMode *mode; local
110 mode = *(SpeexMode**)state;
111 return (mode)->enc(state, in, bits);
130 SpeexMode *mode local
192 nb_mode_query(const void *mode, int request, void *ptr) argument
[all...]
/external/freetype/src/gzip/
H A Dinfblock.c74 if (s->mode == BTREE || s->mode == DTREE)
76 if (s->mode == CODES)
78 s->mode = TYPE;
112 s->mode = TYPE;
136 while (1) switch (s->mode)
150 s->mode = LENS; /* get length of stored block */
169 s->mode = CODES;
175 s->mode = TABLE;
179 s->mode
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DDatabase.java25 * @param mode open mode (e.g. SQLITE_OPEN_READONLY)
28 public void open(String filename, int mode) throws SQLite.Exception { argument
29 if ((mode & 0200) != 0) {
30 mode = SQLite.Constants.SQLITE_OPEN_READWRITE |
32 } else if ((mode & 0400) != 0) {
33 mode = SQLite.Constants.SQLITE_OPEN_READONLY;
37 _open4(filename, mode, null, false);
43 _open(filename, mode);
52 * @param mode ope
56 open(String filename, int mode, String vfs) argument
86 open(String filename, int mode, String vfs, boolean ver2) argument
111 _open(String filename, int mode) argument
118 _open4(String filename, int mode, String vfs, boolean ver2) argument
[all...]
/external/aac/libAACenc/src/
H A Dchannel_map.cpp160 /* Channel mode configuration tab provides,
196 AAC_ENCODER_ERROR FDKaacEnc_DetermineEncoderMode(CHANNEL_MODE* mode, INT nChannels) argument
201 if (*mode==MODE_UNKNOWN) {
208 *mode = encMode;
212 if (FDKaacEnc_GetChannelModeConfiguration(*mode)->nChannels==nChannels) {
213 encMode = *mode;
224 static INT FDKaacEnc_initElement (ELEMENT_INFO* elInfo, MP4_ELEMENT_ID elType, INT* cnt, CHANNEL_MODE mode, CHANNEL_ORDER co, INT* it_cnt, const FIXP_DBL relBits) { argument
229 const INT *assign = FDKaacEnc_getChannelAssignment(mode, co);
260 AAC_ENCODER_ERROR FDKaacEnc_InitChannelMapping(CHANNEL_MODE mode, CHANNEL_ORDER co, CHANNEL_MAPPING* cm) argument
273 if (channelModeConfig[i].encMode==mode)
512 FDKaacEnc_GetMonoStereoMode(const CHANNEL_MODE mode) argument
538 FDKaacEnc_GetChannelModeConfiguration(const CHANNEL_MODE mode) argument
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DBigIntegerMathTest.java68 for (RoundingMode mode : ALL_ROUNDING_MODES) {
70 BigIntegerMath.log2(ZERO, mode);
78 for (RoundingMode mode : ALL_ROUNDING_MODES) {
80 BigIntegerMath.log2(x.negate(), mode);
89 for (RoundingMode mode : asList(FLOOR, DOWN)) {
90 int result = BigIntegerMath.log2(x, mode);
99 for (RoundingMode mode : asList(CEILING, UP)) {
100 int result = BigIntegerMath.log2(x, mode);
147 // Now figure out what rounding mode we should behave like (it depends if FLOOR was
155 for (RoundingMode mode
[all...]
/external/arduino/libraries/SPI/
H A DSPI.cpp51 void SPIClass::setDataMode(uint8_t mode) argument
53 SPCR = (SPCR & ~SPI_MODE_MASK) | mode;
/external/chromium_org/android_webview/public/browser/
H A Ddraw_gl.h24 } mode; member in struct:AwDrawGLInfo
80 // Called to map a GraphicBuffer in |mode|.
81 typedef int AwMapFunction(long buffer_id, AwMapMode mode, void** vaddr);
91 // Set of functions used in rendering in hardware mode
/external/chromium_org/base/test/
H A Dtest_io_thread.cc23 TestIOThread::TestIOThread(Mode mode) argument
25 switch (mode) {
32 CHECK(false) << "Invalid mode";
/external/chromium_org/chrome/browser/prefs/
H A Dproxy_prefs.cc50 const char* ProxyModeToString(ProxyMode mode) { argument
51 return kProxyModeNames[mode];
/external/chromium_org/content/shell/renderer/test_runner/resources/fonts/
H A Dfonts.conf6 <edit name="embeddedbitmap" mode="assign"><bool>false</bool></edit>
13 <edit name="family" mode="assign">
22 <edit name="family" mode="assign">
31 <edit name="family" mode="assign">
42 <edit name="family" mode="assign">
51 <edit name="family" mode="assign">
60 <edit name="family" mode="assign">
69 <edit name="family" mode="assign">
78 <edit name="family" mode="assign">
87 <edit name="family" mode
[all...]
/external/chromium_org/content/shell/tools/plugin/Tests/
H A DInvokeDestroysPluginWithinNPP_New.cpp43 virtual NPError NPP_New(NPMIMEType pluginType, uint16_t mode, int16_t argc, char* argn[], char* argv[], NPSavedData *);
52 NPError InvokeDestroysPluginWithinNPP_New::NPP_New(NPMIMEType pluginType, uint16_t mode, int16_t argc, char* argn[], char* argv[], NPSavedData *saved) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_real.h21 int _real_mkdir(const char* pathname, mode_t mode);
29 int _real_open(const char* pathname, int oflag, mode_t mode, int* newfd);
/external/chromium_org/ppapi/c/dev/
H A Dppb_file_chooser_dev.h65 * @param[in] mode A <code>PP_FileChooserMode_Dev</code> value that controls
80 PP_FileChooserMode_Dev mode,
131 PP_FileChooserMode_Dev mode,
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_file_fileref_thunk.cc25 int32_t OpenFile(PP_Resource file_ref_id, int32_t mode, PP_FileHandle* file) { argument
32 return enter.functions()->OpenFileRef(instance, file_ref_id, mode, file);
/external/chromium_org/remoting/host/
H A Dfake_mouse_cursor_monitor.cc21 webrtc::MouseCursorMonitor::Mode mode) {
26 CHECK(mode == SHAPE_ONLY);
19 Init( webrtc::MouseCursorMonitor::Callback* callback, webrtc::MouseCursorMonitor::Mode mode) argument
/external/chromium_org/remoting/signaling/
H A Dlog_to_server.h30 LogToServer(ServerLogEntry::Mode mode,
43 ServerLogEntry::Mode mode() { return mode_; } function in class:remoting::LogToServer
/external/chromium_org/sandbox/linux/services/
H A Dlibc_urandom_override.cc50 typedef FILE* (*FopenFunction)(const char* path, const char* mode);
125 FILE* fopen_override(const char* path, const char* mode) __asm__ ("fopen");
128 FILE* fopen_override(const char* path, const char* mode) { argument
135 return fdopen(fd, mode);
139 return g_libc_fopen(path, mode);
144 FILE* fopen64(const char* path, const char* mode) { argument
151 return fdopen(fd, mode);
155 return g_libc_fopen64(path, mode);
/external/chromium_org/sdch/open-vcdiff/src/
H A Daddrcache.cc44 // Because the mode is expressed as a byte value,
73 // The mode is expressed as a byte value, so there is only room for 256 modes,
128 // Determines the address mode that yields the most compact encoding
130 // address stream, and returns the mode used. The most compact encoding
146 // Return value: A mode value between 0 and 255. The mode will tell
175 // This is the only mode for which an single byte will be written
179 return FirstSameMode() + (same_cache_pos / 256); // SAME mode
183 // Try SELF mode
187 // Try HERE mode
277 DecodeAddress(VCDAddress here_address, unsigned char mode, const char** address_stream, const char* address_stream_end) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEBlendElement.idl42 readonly attribute SVGAnimatedEnumeration mode;
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dencode.h35 Mode mode; member in struct:brotli::BrotliParams
37 BrotliParams() : mode(MODE_TEXT) {}
/external/chromium_org/third_party/mesa/src/src/mapi/shared-glapi/
H A DSConscript8 def mapi_objects(env, printer, mode):
9 """Return mapi objects built for the given printer and mode."""
34 '--printer %s --mode lib $SOURCE > $TARGET' % (printer),
43 cppdefines = mapi_defines[mode] + [
48 if mode == 'glapi':
59 for s in mapi_sources[mode]:

Completed in 1346 milliseconds

<<11121314151617181920>>