HomeSort by relevance Sort by last modified time
    Searched refs:ellipsis (Results 1 - 25 of 237) sorted by null

1 2 3 4 5 6 7 8 910

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-scripts/
defined3.d 8 # The ellipsis account for target-specific symbols. Matching both A and T
  /frameworks/base/core/java/android/widget/
EditText.java 158 * @param ellipsis Type of ellipsis to be applied.
159 * @throws IllegalArgumentException When the value of <code>ellipsis</code> parameter is
164 public void setEllipsize(TextUtils.TruncateAt ellipsis) {
165 if (ellipsis == TextUtils.TruncateAt.MARQUEE) {
169 super.setEllipsize(ellipsis);
  /test/vti/dashboard/src/main/webapp/css/
plan_runs.css 20 text-overflow: ellipsis;
search_header.css 65 text-overflow: ellipsis;
show_table.css 37 text-overflow: ellipsis;
  /external/strace/tests/
xattr.c 114 const int ellipsis = rc > DEFAULT_STRLEN; local
116 print_quoted_memory(big, ellipsis ? DEFAULT_STRLEN : rc);
117 if (ellipsis)
  /external/strace/tests-m32/
xattr.c 114 const int ellipsis = rc > DEFAULT_STRLEN; local
116 print_quoted_memory(big, ellipsis ? DEFAULT_STRLEN : rc);
117 if (ellipsis)
  /external/strace/tests-mx32/
xattr.c 114 const int ellipsis = rc > DEFAULT_STRLEN; local
116 print_quoted_memory(big, ellipsis ? DEFAULT_STRLEN : rc);
117 if (ellipsis)
  /external/clang/lib/Parse/
ParseInit.cpp 316 if (getLangOpts().ObjC1 && Tok.isNot(tok::ellipsis) &&
324 if (Tok.isNot(tok::ellipsis)) {
432 if (Tok.is(tok::ellipsis))
517 if (Tok.is(tok::ellipsis))
ParseTemplate.cpp 413 case tok::ellipsis:
457 case tok::ellipsis:
510 // Grab the ellipsis (if given).
512 if (TryConsumeToken(tok::ellipsis, EllipsisLoc)) {
534 // Recover from misplaced ellipsis.
536 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
597 tok::greatergreater, tok::ellipsis)) {
608 // Parse the ellipsis, if given.
610 if (TryConsumeToken(tok::ellipsis, EllipsisLoc))
631 // Recover from misplaced ellipsis
    [all...]
ParseTentative.cpp 669 TryConsumeToken(tok::ellipsis);
870 if (Tok.is(tok::ellipsis))
892 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren)) ||
922 if (Tok.is(tok::ellipsis))
    [all...]
ParseExpr.cpp 280 // If the next token is an ellipsis, then this is a fold-expression. Leave
282 if (isFoldOperator(NextTokPrec) && Tok.is(tok::ellipsis)) {
    [all...]
  /prebuilts/go/darwin-x86/src/net/
ip.go 539 ellipsis := -1 // position of ellipsis in ip
545 // Might have leading ellipsis
547 ellipsis = 0
549 // Might be only ellipsis
566 if ellipsis < 0 && i != IPv6len-IPv4len {
604 // Look for ellipsis.
606 if ellipsis >= 0 { // already have one
609 ellipsis = i
622 // If didn't parse enough, expand ellipsis
    [all...]
  /prebuilts/go/linux-x86/src/net/
ip.go 539 ellipsis := -1 // position of ellipsis in ip
545 // Might have leading ellipsis
547 ellipsis = 0
549 // Might be only ellipsis
566 if ellipsis < 0 && i != IPv6len-IPv4len {
604 // Look for ellipsis.
606 if ellipsis >= 0 { // already have one
609 ellipsis = i
622 // If didn't parse enough, expand ellipsis
    [all...]
  /external/clang/test/Parser/
cxx0x-ambig.cpp 109 namespace ellipsis {
  /prebuilts/go/darwin-x86/src/go/types/
call.go 219 if call.Ellipsis.IsValid() {
222 check.errorf(call.Ellipsis, "cannot use ... in call to non-variadic %s", call.Fun)
228 check.errorf(call.Ellipsis, "cannot use ... with %d-valued %s", n, call.Args[0])
238 var ellipsis token.Pos
239 if i == n-1 && call.Ellipsis.IsValid() {
240 ellipsis = call.Ellipsis
242 check.argument(call.Fun, sig, i, x, ellipsis)
259 // If ellipsis is valid, the argument is followed by ... at that position in the call.
260 func (check *Checker) argument(fun ast.Expr, sig *Signature, i int, x *operand, ellipsis token.Pos)
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
call.go 219 if call.Ellipsis.IsValid() {
222 check.errorf(call.Ellipsis, "cannot use ... in call to non-variadic %s", call.Fun)
228 check.errorf(call.Ellipsis, "cannot use ... with %d-valued %s", n, call.Args[0])
238 var ellipsis token.Pos
239 if i == n-1 && call.Ellipsis.IsValid() {
240 ellipsis = call.Ellipsis
242 check.argument(call.Fun, sig, i, x, ellipsis)
259 // If ellipsis is valid, the argument is followed by ... at that position in the call.
260 func (check *Checker) argument(fun ast.Expr, sig *Signature, i int, x *operand, ellipsis token.Pos)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 179 func ellipsis(...string) {} func
  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 179 func ellipsis(...string) {} func
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 368 static const UChar ellipsis[]={ 0x2e, 0x2e, 0x2e }; variable
472 s.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
484 s.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
652 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
664 out.replace(100, 0x7fffffff, ellipsis, UPRV_LENGTHOF(ellipsis));
    [all...]
  /frameworks/base/core/java/android/text/
TextUtils.java 86 private static final String ELLIPSIS_NORMAL = "\u2026"; // HORIZONTAL ELLIPSIS (?)
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 509 * @param ellipsis to add of the file was truncated (can be null)
513 public static String readTextFile(File file, int max, String ellipsis) throws IOException {
527 if (ellipsis == null) return new String(data, 0, max);
528 return new String(data, 0, max) + ellipsis;
548 if (ellipsis == null || !rolled) return new String(last);
549 return ellipsis + new String(last);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 351 final String ellipsis = "."; // one full stop character local
357 ellipsis));
363 ellipsis));
369 ellipsis));
375 ellipsis));
377 // Now check the differences for multi-codepoint ellipsis.
  /external/jdiff/src/jdiff/
RootDocToXML.java 984 int ellipsis = text.indexOf(". . ."); \/\/ Handles one instance of this local
    [all...]
  /external/strace/
util.c 742 int ellipsis; local
784 ellipsis = string_quote(str, outstr, size, style)
790 if (ellipsis)

Completed in 677 milliseconds

1 2 3 4 5 6 7 8 910