/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetLMBCS.java | 60 * That is, a sometimes-optional 'group' byte, followed by 1 and sometimes 2 100 * group byte is for a single byte char set or not we use this definition: 110 * each group byte to introduce a fixed-width encoding (to make it faster to 111 * count characters), we use a convention of doubling up on the group byte 116 * Next, you will notice that the list of group bytes has some gaps. 153 * as group '0', as a place to tuck this exceptions list. 158 * LOTUS added a new group 0x14 to hold Unicode values not otherwise 178 * translations even faster, sometimes the optimization group byte can be dropped 180 * group byte that is dropped is called the 'optimization group. 641 short group; local 991 short group = FindLMBCSUniRange(uniChar); local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationFastLatinBuilder.java | 141 result.append(0); // reserve a slot for this group 171 // They must be in the same special reordering group, 299 // Both primaries must be in the same group, 405 int group = 0; local 406 long lastGroupPrimary = lastSpecialPrimaries[group]; 422 // Set the group's header entry to the 423 // last "long primary" in or before the group. 424 result.setCharAt(1 + group, (char)pri); 425 if(++group < NUM_SPECIAL_GROUPS) { 426 lastGroupPrimary = lastSpecialPrimaries[group]; [all...] |
/external/iproute2/include/linux/ |
netlink.h | 117 __u32 group; member in struct:nl_pktinfo
|
/external/iproute2/ip/ |
iplink.c | 56 fprintf(stderr, " ip link delete { DEVICE | dev DEVICE | group DEVGROUP } type TYPE [ ARGS ]\n"); 58 fprintf(stderr, " ip link set { DEVICE | dev DEVICE | group DEVGROUP } [ { up | down } ]\n"); 89 fprintf(stderr, " ip link show [ DEVICE | group GROUP ] [up] [master DEV] [type TYPE]\n"); 406 int *group, int *index) 419 *group = -1; 581 } else if (strcmp(*argv, "group") == 0) { 583 if (*group != -1) 584 duparg("group", *argv); 585 if (rtnl_group_a2n(group, *argv) 678 int group; local [all...] |
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/ |
ReportTask.java | 111 * Sets the name of the group. 114 * name of the group 121 * Creates a new child group. 123 * @return new child group 126 final GroupElement group = new GroupElement(); local 127 children.add(group); 128 return group; 436 * Returns the root group element that defines the report structure. 438 * @return root group element 536 final GroupElement group) throws IOException [all...] |
/external/kernel-headers/original/uapi/linux/ |
netlink.h | 117 __u32 group; member in struct:nl_pktinfo
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/ |
ObjLoader.java | 83 final Array<Group> groups = new Array<Group>(10); 111 // Create a "default" Group and set it as the active group, in case 113 Group activeGroup = new Group("default"); 166 // This implementation only supports single object or group 168 // as the active group, while group_b will simply be 188 // If the "default" group or any others were not used, get rid of them 205 Group group = groups.get(g) local 296 Group group = new Group(name); local [all...] |
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
PhoneNumberMatcher.java | 104 // Note that the bracket here is inside the capturing group, since we consider it part of the 354 // We should handle any group before this one too. 355 CharSequence group = trimAfterFirstMatch( local 358 PhoneNumberMatch match = parseAndVerify(group.toString(), offset); 365 CharSequence group = trimAfterFirstMatch( local 366 PhoneNumberUtil.UNWANTED_END_CHAR_PATTERN, groupMatcher.group(1)); 367 PhoneNumberMatch match = parseAndVerify(group.toString(), offset + groupMatcher.start(1)); 481 // Check each group of consecutive digits are not broken into separate groupings in the 510 // match the last group of the subscriber number. Note the extension cannot have 521 // Set this to the last group, skipping it if the number has an extension [all...] |
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
ittnotify_config.h | 319 __itt_group_id group; member in struct:___itt_api_info_20101001 328 __itt_group_id group; member in struct:___itt_api_info
|
/external/nanohttpd/nanolets/src/main/java/fi/iki/elonen/router/ |
RouterNanoHTTPD.java | 434 result.put(uriParams.get(i - 1), matcher.group(i));
|
/external/protobuf/java/src/main/java/com/google/protobuf/nano/ |
Extension.java | 52 * Extension // ready to use for message/group typed extensions 221 // This implementation is for message/group extensions. 226 MessageNano group = (MessageNano) messageType.newInstance(); local 227 input.readGroup(group, WireFormatNano.getTagFieldNumber(tag)); 228 return group; 248 // This implementation is for message/group extensions. 261 // This implementation is for message/group extensions. 318 // This implementation is for message/group extensions. [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
parser.cc | 71 result["group" ] = FieldDescriptorProto::TYPE_GROUP; 736 // Awkward: Since a group declares both a message type and a field, we 743 DescriptorProto* group = messages->Add(); local 744 group->set_name(field->name()); 753 group, DescriptorPool::ErrorCollector::NAME); 764 // As a hack for backwards-compatibility, we force the group name to start 767 if (group->name()[0] < 'A' || 'Z' < group->name()[0]) { 769 "Group names must start with a capital letter."); 773 field->set_type_name(group->name()) [all...] |
/external/tcpdump/ |
print-pgm.c | 362 const void *source, *group; local 398 * Skip past the group, saving info along the way 418 group = bp; 425 inet_ntop(group_af, group, group_buf, sizeof(group_buf)); 653 ND_PRINT((ndo, " PARITY GROUP %u", seq));
|
/external/toybox/lib/ |
xwrap.c | 528 struct group *xgetgrgid(gid_t gid) 530 struct group *group = getgrgid(gid); local 532 if (!group) perror_exit("gid %ld", (long)gid); 533 return group; 552 struct group *xgetgrnamid(char *group) 554 struct group *gr = getgrnam(group); 560 gid = estrtol(group, &s, 10) [all...] |
/external/v8/src/third_party/vtune/ |
ittnotify_config.h | 348 __itt_group_id group; member in struct:___itt_api_info_20101001 357 __itt_group_id group; member in struct:___itt_api_info
|
/external/wpa_supplicant_8/src/p2p/ |
p2p_group.c | 2 * Wi-Fi Direct - P2P group operations 32 * struct p2p_group - Internal P2P module per-group data 49 struct p2p_group *group, **groups; local 51 group = os_zalloc(sizeof(*group)); 52 if (group == NULL) 58 os_free(group); 61 groups[p2p->num_groups++] = group; 64 group->p2p = p2p; 65 group->cfg = config [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
sme.c | 69 int group = groups[wpa_s->sme.sae_group_index]; local 70 if (group <= 0) 72 if (sae_set_group(&wpa_s->sme.sae, group) == 0) { 73 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d", 74 wpa_s->sme.sae.group); 97 wpa_printf(MSG_DEBUG, "SAE: Failed to select group"); 703 u16 group; local 714 group = WPA_GET_LE16(data); 716 "SME: SAE anti-clogging token requested (group %u)", 717 group); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NotificationGroupManager.java | 52 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); local 53 if (group == null) { 56 return group.expanded; 60 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); local 61 if (group == null) { 64 setGroupExpanded(group, expanded); 67 private void setGroupExpanded(NotificationGroup group, boolean expanded) { 68 group.expanded = expanded; 69 if (group.summary != null) { 70 mListener.onGroupExpansionChanged(group.summary.row, expanded) 89 final NotificationGroup group = mGroupMap.get(groupKey); local 114 NotificationGroup group = mGroupMap.get(groupKey); local 230 NotificationGroup group = mGroupMap.get(sbn.getGroupKey()); local 236 NotificationGroup group = mGroupMap.get(groupKey); local 256 NotificationGroup group = groupCopy.get(i); local 271 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); local 291 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); local 318 NotificationGroup group = mGroupMap.get(groupKey); local 326 NotificationGroup group = mGroupMap.get(getGroupKey(sbn)); local [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
VenueNameElement.java | 29 int group = payload.get() & Constants.BYTE_MASK; local 32 if (group >= VenueGroup.Reserved.ordinal()) { 36 mGroup = VenueGroup.values()[group];
|
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/ |
TimeZoneData.java | 204 ArrayList<Integer> group = mTimeZonesByCountry.get(tz.mCountry); local 205 if (group == null) { 206 group = new ArrayList<Integer>(); 207 mTimeZonesByCountry.put(tz.mCountry, group); 210 group.add(idx); 298 ArrayList<Integer> group = mTimeZonesByOffsets.get(index); local 299 if (group == null) { 300 group = new ArrayList<Integer>(); 301 mTimeZonesByOffsets.put(index, group); 303 group.add(idx) [all...] |
/hardware/qcom/msm8994/kernel-headers/linux/ |
netlink.h | 119 __u32 group; member in struct:nl_pktinfo
|
/hardware/qcom/msm8994/original-kernel-headers/linux/ |
netlink.h | 112 __u32 group; member in struct:nl_pktinfo
|
/hardware/qcom/msm8996/kernel-headers/linux/ |
netlink.h | 119 __u32 group; member in struct:nl_pktinfo
|
/hardware/qcom/msm8996/original-kernel-headers/linux/ |
netlink.h | 112 __u32 group; member in struct:nl_pktinfo
|
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/connserv/ |
HfpClientConnectionService.java | 332 List<Connection> group = new ArrayList<>(); local 345 group.add(connection); 354 if (group.size() > 1 && mConference == null) { 357 if (group.get(0).getState() == Connection.STATE_ACTIVE) { 362 for (Connection connection : group) {
|