HomeSort by relevance Sort by last modified time
    Searched refs:abbrev (Results 51 - 75 of 140) sorted by null

1 23 4 5 6

  /frameworks/base/core/java/android/text/format/
DateUtils.java 131 * Request the full spelled-out name. For use with the 'abbrev' parameter of
142 * Request an abbreviated version of the name. For use with the 'abbrev'
154 * For use with the 'abbrev' parameter of {@link #getDayOfWeekString} and {@link #getMonthString}.
175 * For use with the 'abbrev' parameter of {@link #getDayOfWeekString} and {@link #getMonthString}.
189 * @param abbrev One of {@link #LENGTH_LONG}, {@link #LENGTH_SHORT},
199 public static String getDayOfWeekString(int dayOfWeek, int abbrev) {
202 switch (abbrev) {
229 * @param abbrev One of {@link #LENGTH_LONG}, {@link #LENGTH_MEDIUM},
237 public static String getMonthString(int month, int abbrev) {
240 switch (abbrev) {
    [all...]
  /external/curl/
update_curl.sh 65 git rev-parse --abbrev-ref HEAD
86 TRACKING_BRANCH=$(git rev-parse --abbrev-ref --symbolic-full-name @{u})
  /external/strace/
file_ioctl.c 181 /* Limit how many elements we print in abbrev mode. */
182 if (abbrev(tcp) && args.dest_count > count)
228 if (abbrev(tcp)) {
term.c 50 if (abbrev(tcp)) {
83 if (abbrev(tcp)) {
evdev.c 95 if (abbrev(tcp)) {
169 if (!abbrev(tcp)) {
222 if (!abbrev(tcp)) {
291 if (abbrev(tcp) && bit_displayed >= 3) {
rtc.c 47 if (!abbrev(tcp))
sysctl.c 160 if (abbrev(tcp) && max_cnt > max_strlen)
btrfs.c 314 if (abbrev(tcp)) {
352 if (abbrev(tcp)) {
395 if (abbrev(tcp)) {
427 !abbrev(tcp)) {
433 !abbrev(tcp)) {
456 if (abbrev(tcp))
1206 if (abbrev(tcp))
1253 if (abbrev(tcp))
    [all...]
perf.c 90 if (abbrev(tcp))
248 if (abbrev(tcp))
nlattr.c 109 if (abbrev(tcp) && elt == max_strlen) {
poll.c 73 abbrev(tcp) ? max_strlen : -1U;
  /external/desugar/java/com/google/devtools/common/options/
OptionsUsage.java 119 if (annotation.abbrev() != '\0') {
120 usage.append(" [-").append(annotation.abbrev()).append(']');
180 if (annotation.abbrev() != '\0') {
181 usage.append(" [<code>-").append(annotation.abbrev()).append("</code>]");
IsolatedOptionsData.java 166 public Field getFieldForAbbrev(char abbrev) {
167 return abbrevToField.get(abbrev);
493 if (annotation.abbrev() != '\0') {
494 checkForCollisions(abbrevToFieldBuilder, annotation.abbrev(), "option abbreviation");
495 abbrevToFieldBuilder.put(annotation.abbrev(), field);
  /prebuilts/go/darwin-x86/src/cmd/internal/dwarf/
dwarf.go 25 Abbrev int // Either DW_ABRV_AUTO or DW_ABRV_PARAM
93 * always write them out in the order of declaration in the abbrev.
435 Abbrev int
442 func putattr(ctxt Context, s Sym, abbrev int, form int, cls int, value int64, data interface{}) error {
523 return fmt.Errorf("dwarf: null reference in %d", abbrev)
546 // only the ones actually listed in the Abbrev will be written out.
547 func PutAttrs(ctxt Context, s Sym, abbrev int, attr *DWAttr) {
549 for _, f := range abbrevs[abbrev].attr {
552 putattr(ctxt, s, abbrev, int(f.form), int(ap.Cls), ap.Value, ap.Data)
557 putattr(ctxt, s, abbrev, int(f.form), 0, 0, nil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/dwarf/
dwarf.go 25 Abbrev int // Either DW_ABRV_AUTO or DW_ABRV_PARAM
93 * always write them out in the order of declaration in the abbrev.
435 Abbrev int
442 func putattr(ctxt Context, s Sym, abbrev int, form int, cls int, value int64, data interface{}) error {
523 return fmt.Errorf("dwarf: null reference in %d", abbrev)
546 // only the ones actually listed in the Abbrev will be written out.
547 func PutAttrs(ctxt Context, s Sym, abbrev int, attr *DWAttr) {
549 for _, f := range abbrevs[abbrev].attr {
552 putattr(ctxt, s, abbrev, int(f.form), int(ap.Cls), ap.Value, ap.Data)
557 putattr(ctxt, s, abbrev, int(f.form), 0, 0, nil
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
dwarf2.c 222 /* The abbrev hash table. */
279 /* This data structure holds the information of an abbrev. */
282 unsigned int number; /* Number identifying abbrev. */
780 /* Lookup an abbrev_info structure in the abbrev hash table. */
786 struct abbrev_info *abbrev; local
789 abbrev = abbrevs[hash_number];
791 while (abbrev)
793 if (abbrev->number == number)
794 return abbrev;
796 abbrev = abbrev->next
868 struct abbrev_info *abbrev = abbrevs[i]; local
2133 struct abbrev_info *abbrev; local
2298 struct abbrev_info *abbrev; local
2550 struct abbrev_info *abbrev; local
3919 struct abbrev_info *abbrev = abbrevs[i]; local
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 61 // Each abbrev consists of a abbreviation number, a tag, a byte
80 abbrevs_ = new std::vector<Abbrev>;
94 CompilationUnit::Abbrev abbrev; local
100 abbrev.number = number;
106 abbrev.tag = static_cast<enum DwarfTag>(tag);
109 abbrev.has_children = reader_->ReadOneByte(abbrevptr);
127 abbrev.attributes.push_back(std::make_pair(name, form));
129 assert(abbrev.number == abbrevs_->size());
130 abbrevs_->push_back(abbrev);
502 const Abbrev& abbrev = abbrevs_->at(static_cast<size_t>(abbrev_num)); local
    [all...]
  /external/elfutils/libdw/
libdw.h 145 Dwarf_Abbrev *abbrev; member in struct:__anon18882
560 extern unsigned int dwarf_getabbrevcode (Dwarf_Abbrev *abbrev);
563 extern unsigned int dwarf_getabbrevtag (Dwarf_Abbrev *abbrev);
566 extern int dwarf_abbrevhaschildren (Dwarf_Abbrev *abbrev);
569 extern int dwarf_getattrcnt (Dwarf_Abbrev *abbrev, size_t *attrcntp)
573 extern int dwarf_getabbrevattr (Dwarf_Abbrev *abbrev, size_t idx,
    [all...]
libdwP.h 464 if (die->abbrev == NULL || readp != NULL)
474 if (die->abbrev == NULL)
475 die->abbrev = __libdw_findabbrev (die->cu, code);
477 return die->abbrev;
  /external/caliper/caliper/src/main/java/com/google/caliper/util/
ShortDuration.java 72 String abbrev = matcher.group(2); local
73 TimeUnit unit = ABBREV_TO_UNIT.get(abbrev);
74 checkArgument(unit != null, "Unrecognized time unit: %s", abbrev);
  /external/elfutils/tests/
show-die-info.c 334 Dwarf_Off abbrev; local
337 while (dwarf_nextcu (dbg, off, &off, &hsize, &abbrev, &addresssize,
343 (unsigned long long int) abbrev, addresssize,
  /toolchain/binutils/binutils-2.25/binutils/
dwarf.h 117 abbrev = 0, enumerator in enum:dwarf_section_display_enum
  /packages/apps/Calendar/src/com/android/calendar/event/
EventViewUtils.java 45 public static String constructReminderLabel(Context context, int minutes, boolean abbrev) {
51 if (abbrev) {
  /prebuilts/go/darwin-x86/src/time/
zoneinfo_read.go 88 // number of characters of time zone abbrev strings
116 abbrev := d.read(n[NChar])
153 if b, ok = zonedata.byte(); !ok || int(b) >= len(abbrev) {
156 zone[i].name = byteString(abbrev[b:])
  /prebuilts/go/linux-x86/src/time/
zoneinfo_read.go 88 // number of characters of time zone abbrev strings
116 abbrev := d.read(n[NChar])
153 if b, ok = zonedata.byte(); !ok || int(b) >= len(abbrev) {
156 zone[i].name = byteString(abbrev[b:])

Completed in 1026 milliseconds

1 23 4 5 6