/frameworks/base/core/java/android/content/res/ |
Configuration.java | 80 * Bit mask of overall layout of the screen. Currently there are two 193 * Bit mask of the ui mode. Currently there are two fields: 311 * @return Returns a bit mask of the changed fields, as per 400 * Return a bit mask of the differences between this Configuration 403 * @return Returns a bit mask indicating which configuration 483 * @param configChanges The mask of changes configurations as returned by
|
/frameworks/base/media/java/android/media/ |
JetPlayer.java | 42 * a mask (to change the mute state of multiple tracks at once)</li> 78 private static final int JET_EVENT_VAL_MASK = 0x0000007f; // mask for value 79 private static final int JET_EVENT_CTRL_MASK = 0x00003f80; // mask for controller 80 private static final int JET_EVENT_CHAN_MASK = 0x0003c000; // mask for channel 81 private static final int JET_EVENT_TRACK_MASK = 0x00fc0000; // mask for track number 82 private static final int JET_EVENT_SEG_MASK = 0xff000000; // mask for segment ID
|
/frameworks/base/opengl/java/android/opengl/ |
GLErrorWrapper.java | 100 public void glClear(int mask) { 102 mgl.glClear(mask); 718 public void glStencilFunc(int func, int ref, int mask) { 720 mgl.glStencilFunc(func, ref, mask); 724 public void glStencilMask(int mask) { 726 mgl.glStencilMask(mask); [all...] |
GLES20.java | 443 // C function void glClear ( GLbitfield mask ) 446 int mask [all...] |
/hardware/ti/wlan/wl1271/TWD/FW_Transfer/ |
FwEvent.c | 120 TI_UINT32 uEventMask; /* Static interrupt event mask */ 122 TRegisterTxn tMaskTxn; /* The host mask register transaction */ 246 /* Prepare Interrupts Mask regiter Txn structure */ 248 * Note!!: The mask transaction is sent in low priority because it is used in the 523 /* Mask unwanted interrupts */ 667 * \return Event mask
|
/system/core/include/private/pixelflinger/ |
ggl_context.h | 240 needs_t mask; member in struct:android::needs_filter_t 245 ((filter.value.n ^ n) & filter.mask.n) | 246 ((filter.value.p ^ p) & filter.mask.p) | 247 ((filter.value.t[0] ^ t[0]) & filter.mask.t[0]) | 248 ((filter.value.t[1] ^ t[1]) & filter.mask.t[1]); 495 mask_state_t mask; member in struct:android::state_t
|
/external/ppp/pppd/ |
sys-solaris.c | 2155 u_int32_t ina, mask; local 2394 u_int32_t mask, nmask, ina; local [all...] |
ipcp.c | 496 u_int32_t mask; local 505 n = parse_dotted_ip(p, &mask); 507 mask = htonl(mask); 509 if (n == 0 || p[n] != 0 || (netmask & ~mask) != 0) { 514 netmask = mask; 515 slprintf(netmask_str, sizeof(netmask_str), "%I", mask); 1684 u_int32_t mask; local [all...] |
/external/webkit/WebCore/inspector/front-end/ |
SourceCSSTokenizer.js | 86 "-webkit-marquee-speed", "-webkit-marquee-style", "-webkit-mask", "-webkit-mask-attachment", 87 "-webkit-mask-box-image", "-webkit-mask-clip", "-webkit-mask-composite", "-webkit-mask-image", 88 "-webkit-mask-origin", "-webkit-mask-position", "-webkit-mask-position-x", "-webkit-mask-position-y" [all...] |
/dalvik/libdex/ |
DexFile.c | 367 int mask = pLookup->numEntries-1; local 368 int idx = hash & mask; 376 idx = (idx + 1) & mask; 862 int idx, mask; local 865 mask = pLookup->numEntries - 1; 866 idx = hash & mask; 888 idx = (idx + 1) & mask; [all...] |
/external/icu4c/i18n/ |
ucol_imp.h | 233 /* mask value down to "some power of two"-1 */ 356 /* mask off anything but primary order */ 358 /* mask off anything but secondary order */ 360 /* mask off anything but tertiary order */ 552 /* Bit mask for primary collation strength. */ 555 /* Bit mask for secondary collation strength. */ 558 /* Bit mask for tertiary collation strength. */ [all...] |
/external/icu4c/io/ |
uprntf_p.c | 289 /* mask off any necessary bits */ 364 /* mask off any necessary bits */ 424 /* mask off any necessary bits */ 459 /* mask off any necessary bits */ 572 /* mask off any necessary bits */ 689 /* mask off any necessary bits */ 887 /* mask off any necessary bits */ [all...] |
/external/stlport/src/ |
facets_byname.cpp | 59 // ctype_base::mask isn't the same type as _Locale_mask_t. 62 _M_byname_table[i] = ctype_base::mask(p[i]); 127 bool ctype_byname<wchar_t>::do_is(ctype_base::mask m, wchar_t c) const 132 ctype_base::mask * m) const { 144 *m = ctype_base::mask (_WLocale_ctype(_M_ctype, *low, all_bits)); 150 ::do_scan_is(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const 155 ::do_scan_not(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngrutil.c | [all...] |
/frameworks/base/tools/aapt/ |
AaptAssets.cpp | 948 uint8_t mask = 0; local 951 mask = ResTable_config::MASK_KEYSHIDDEN; 954 mask = ResTable_config::MASK_KEYSHIDDEN; 957 mask = ResTable_config::MASK_KEYSHIDDEN; 960 mask = ResTable_config::MASK_KEYSHIDDEN; 964 if (mask != 0) { 965 if (out) out->inputFlags = (out->inputFlags&~mask) | value; 995 uint8_t mask = 0; local 998 mask = ResTable_config::MASK_NAVHIDDEN; 1001 mask = ResTable_config::MASK_NAVHIDDEN [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Paint.java | 56 /** bit mask for the flag enabling antialiasing */ 58 /** bit mask for the flag enabling bitmap filtering */ 60 /** bit mask for the flag enabling dithering */ 62 /** bit mask for the flag enabling underline text */ 64 /** bit mask for the flag enabling strike-thru text */ 66 /** bit mask for the flag enabling fake-bold text */ 68 /** bit mask for the flag enabling linear-text (no caching) */ 70 /** bit mask for the flag enabling subpixel-text */ 72 /** bit mask for the flag enabling device kerning for text */ [all...] |
/external/bluetooth/bluez/src/ |
storage.c | 408 uint16_t mask_result, uint32_t mask) 415 snprintf(str, sizeof(str), "%d 0x%08x", mtu_result ? -1 : mtu, mask); 427 uint16_t *mask_result, uint32_t *mask) 456 if (mask_result && mask) { 461 *mask = (uint32_t) strtol(msk, NULL, 16);
|
/external/icu4c/common/ |
bmpset.cpp | 200 uint32_t bits, mask; local 219 mask=~(0x10001<<0xd); // Lead byte 0xED. 222 bmpBlockBits[i]=(bmpBlockBits[i]&mask)|bits; 226 mask=~(0x10001<<0xd); // Lead byte 0xED. 228 bmpBlockBits[i]&=mask;
|
/external/iptables/ |
ip6tables.8.in | 269 a network IPv6 address (with /mask), or a plain IPv6 address. 272 .I mask 273 can be either a network mask or a plain number, 274 specifying the number of 1's at the left side of the network mask. 275 Thus, a mask of
|
iptables.8.in | 271 a network IP address (with /mask), or a plain IP address. 273 .I mask 274 can be either a network mask or a plain number, 275 specifying the number of 1's at the left side of the network mask. 276 Thus, a mask of
|
/external/opencore/codecs_v2/audio/aac/dec/src/ |
tns_decode_coef.cpp | 315 Int32 mask; local 386 mask = tempInt32 >> 31; 387 tempInt32 ^= mask; 399 mask = tempInt32 >> 31; 400 tempInt32 ^= mask;
|
/external/qemu/ |
cpu-all.h | 772 void cpu_interrupt(CPUState *s, int mask); 773 void cpu_reset_interrupt(CPUState *env, int mask); 792 void cpu_breakpoint_remove_all(CPUState *env, int mask); 798 void cpu_watchpoint_remove_all(CPUState *env, int mask); 825 int mask; member in struct:CPULogItem
|
/external/skia/src/core/ |
SkStroke.cpp | 545 SkFixed mask = SkAbs32(r.fLeft); local 546 mask |= SkAbs32(r.fTop); 547 mask |= SkAbs32(r.fRight); 548 mask |= SkAbs32(r.fBottom); 550 return mask >> 29;
|
/external/tcpdump/ |
print-icmp.c | 106 #define ICMP_MASKLEN 12 /* address mask */ 147 #define ICMP_MASKREQ 17 /* address mask request */ 148 #define ICMP_MASKREPLY 18 /* address mask reply */ 206 { ICMP_MASKREQ, "address mask request" }, 530 (void)snprintf(buf, sizeof(buf), "address mask is 0x%08x",
|
print-ospf.c | 305 printf("\n\t Stub Network: %s, Mask: %s", 331 printf("\n\t Mask %s\n\t Connected Routers:", 343 printf("\n\t Mask %s", 387 printf("\n\t Mask %s", 772 printf("\n\t Hello Timer: %us, Dead Timer %us, Mask: %s, Priority: %u", [all...] |