/external/icu4c/samples/ustring/ |
ustring.cpp | 406 static UChar writeable[]={ variable 435 one+=UnicodeString(writeable, LENGTHOF(writeable)); 458 one.setTo(FALSE, writeable, LENGTHOF(writeable)); 462 printUnicodeString("fastCopyFrom(readonly alias of \"writeable\" array): ", two); 470 // * UnicodeString using writeable-alias to a non-const UChar array 471 UnicodeString four(writeable, LENGTHOF(writeable), LENGTHOF(writeable)); [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
ExternalStorage.java | 127 void handleExternalStorageState(boolean available, boolean writeable) { 129 mExternalStoragePublicPicture.mCreate.setEnabled(writeable && !has); 130 mExternalStoragePublicPicture.mDelete.setEnabled(writeable && has); 132 mExternalStoragePrivatePicture.mCreate.setEnabled(writeable && !has); 133 mExternalStoragePrivatePicture.mDelete.setEnabled(writeable && has); 135 mExternalStoragePrivateFile.mCreate.setEnabled(writeable && !has); 136 mExternalStoragePrivateFile.mDelete.setEnabled(writeable && has);
|
/frameworks/base/media/mtp/ |
MtpProperty.h | 80 bool writeable = false,
|
MtpProperty.cpp | 48 bool writeable, 52 mWriteable(writeable), 327 LOGI(" writeable %s", (mWriteable ? "true" : "false"));
|
/system/core/libusbhost/ |
usbhost.c | 69 int writeable; member in struct:usb_device 208 int fd, did_retry = 0, writeable = 1; local 227 writeable = 0; 233 result->writeable = writeable; 260 // assume we are writeable, since usb_device_get_fd will only return writeable fds 261 device->writeable = 1; 272 if (device->writeable) 279 device->writeable = 1 [all...] |
/system/core/adb/ |
usb_linux.c | 61 unsigned writeable; member in struct:usb_handle 490 if (h->writeable) { 567 usb->writeable = 1; 580 usb->writeable = 0; 647 register_usb_transport(usb, serial, usb->writeable);
|
adb.h | 284 void register_usb_transport(usb_handle *h, const char *serial, unsigned writeable);
|
transport.c | 958 void register_usb_transport(usb_handle *usb, const char *serial, unsigned writeable) 963 init_usb_transport(t, usb, (writeable ? CS_OFFLINE : CS_NOPERM));
|
/external/webkit/Source/WebCore/bindings/scripts/ |
CodeGeneratorGObject.pm | 304 my $writeable = $property->type !~ /^readonly/; 310 if ($writeable && $hasGtypeSignature) { 359 my $writeable = $attribute->type !~ /^readonly/; 362 if ($writeable && $custom) { 366 if ($writeable && !$custom) { [all...] |
/external/qemu/android/config/linux-x86/linux/ |
kvm.h | 231 __u8 writeable; member in struct:kvm_translation
|
/external/qemu/android/config/linux-x86_64/linux/ |
kvm.h | 231 __u8 writeable; member in struct:kvm_translation
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsProvider2.java | [all...] |