HomeSort by relevance Sort by last modified time
    Searched defs:mode (Results 51 - 75 of 3517) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/go/types/
example_test.go 150 // and the type, value, and mode of every expression in the package.
220 // line:col | expr | mode : type = value
223 mode(tv), tvstr)
286 func mode(tv types.TypeAndValue) string { func
  /prebuilts/go/linux-x86/src/go/types/
example_test.go 150 // and the type, value, and mode of every expression in the package.
220 // line:col | expr | mode : type = value
223 mode(tv), tvstr)
286 func mode(tv types.TypeAndValue) string { func
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/ui/
ViewModeTests.java 30 * Saving and restoring a view mode work correctly.
45 * Register a listener for mode changes. Change a mode, and verify that the listener was
46 * called. Then unregister the listener and change the mode again. Verify that the listener
54 public void onViewModeChanged(int mode) {
59 ViewMode mode = new ViewMode(); local
61 mode.addListener(ears);
62 mode.enterConversationListMode();
64 mode.removeListener(ears);
65 mode.enterConversationMode()
    [all...]
  /bionic/libc/bionic/
open.cpp 50 int creat(const char* pathname, mode_t mode) {
51 return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode);
56 mode_t mode = 0; local
61 mode = static_cast<mode_t>(va_arg(args, int));
65 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode);
70 if (needs_mode(flags)) __fortify_fatal("open: called with O_CREAT/O_TMPFILE but no mode");
75 mode_t mode = 0; local
80 mode = static_cast<mode_t>(va_arg(args, int));
84 return __openat(fd, pathname, force_O_LARGEFILE(flags), mode);
89 if (needs_mode(flags)) __fortify_fatal("open: called with O_CREAT/O_TMPFILE but no mode");
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_TTL.h 29 __u8 mode; member in struct:ipt_TTL_info
ipt_ttl.h 29 __u8 mode; member in struct:ipt_ttl_info
  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6t_HL.h 29 __u8 mode; member in struct:ip6t_HL_info
ip6t_hl.h 29 __u8 mode; member in struct:ip6t_hl_info
  /cts/suite/audio_quality/lib/src/audio/
AudioProtocol.cpp 105 * param2 u32 mono / stereo(MSB) | mode
115 uint32_t mode = param.mStereo ? 0x80000000 : 0; local
116 mode |= param.mMode;
117 mBuffer[4] = htonl(mode);
127 * param1 u32 mono / stereo(MSB) | mode
136 uint32_t mode = param.mStereo ? 0x80000000 : 0; local
137 mode |= param.mMode;
138 mBuffer[3] = htonl(mode);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashMap.h 46 NSInteger mode; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashMap.h 46 NSInteger mode; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRHashMap.h 46 NSInteger mode; variable
  /external/autotest/client/deps/fakemodem/src/
Makefile 23 dbus-binding-tool --mode=glib-server --prefix=fakemodem \
  /external/devlib/devlib/instrument/
energy_probe.py 30 mode = CONTINUOUS variable in class:EnergyProbeInstrument
gem5power.py 29 mode = CONTINUOUS variable in class:Gem5PowerInstrument
  /external/e2fsprogs/lib/e2p/
crypto_mode.c 22 struct mode { struct
27 static struct mode mode_list[] = {
37 struct mode *p;
53 struct mode *p;
  /external/iptables/include/linux/netfilter_ipv4/
ipt_TTL.h 18 __u8 mode; member in struct:ipt_TTL_info
ipt_ttl.h 18 __u8 mode; member in struct:ipt_ttl_info
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_HL.h 19 __u8 mode; member in struct:ip6t_HL_info
ip6t_hl.h 19 __u8 mode; member in struct:ip6t_hl_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv4/
ipt_TTL.h 19 __u8 mode; member in struct:ipt_TTL_info
ipt_ttl.h 19 __u8 mode; member in struct:ipt_ttl_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv6/
ip6t_HL.h 20 __u8 mode; member in struct:ip6t_HL_info
ip6t_hl.h 20 __u8 mode; member in struct:ip6t_hl_info
  /external/libvpx/libvpx/vp9/common/
vp9_scan.h 49 const PREDICTION_MODE mode = get_y_mode(mi, block_idx); local
50 return &vp9_scan_orders[tx_size][intra_mode_to_tx_type_lookup[mode]];

Completed in 430 milliseconds

1 23 4 5 6 7 8 91011>>