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

1 2

  /external/oauth/core/src/main/java/net/oauth/client/
ExcerptInputStream.java 17 public static final byte[] ELLIPSIS = " ...".getBytes();
26 // Only add the ellipsis if there are at least LIMIT bytes
27 System.arraycopy(ELLIPSIS, 0, excerpt, total, ELLIPSIS.length);
37 private byte[] excerpt = new byte[LIMIT + ELLIPSIS.length];
39 /** The first few bytes of data, plus ELLIPSIS if there are more bytes. */
  /external/junit/src/junit/framework/
ComparisonCompactor.java 9 private static final String ELLIPSIS= "...";
68 return (fPrefix > fContextLength ? ELLIPSIS : "") + fExpected.substring(Math.max(0, fPrefix - fContextLength), fPrefix);
73 return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix + 1 < fExpected.length() - fContextLength ? ELLIPSIS : "");
  /external/junit/src/org/junit/
ComparisonFailure.java 60 private static final String ELLIPSIS= "...";
126 return (fPrefix > fContextLength ? ELLIPSIS : "") + fExpected.substring(Math.max(0, fPrefix - fContextLength), fPrefix);
131 return fExpected.substring(fExpected.length() - fSuffix + 1, end) + (fExpected.length() - fSuffix + 1 < fExpected.length() - fContextLength ? ELLIPSIS : "");
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
prettyload.js 18 const ELLIPSIS = [' ', ' ', ' .', ' .', ' ..', ' ..', '...', '...'];
39 this.frames = frames !== undefined ? frames : ELLIPSIS;
  /external/icu4c/test/intltest/
alphaindextst.cpp 119 UnicodeString ELLIPSIS; ELLIPSIS.append((UChar32)0x2026);
121 TEST_ASSERT(ELLIPSIS == s);
123 TEST_ASSERT(ELLIPSIS == s);
125 TEST_ASSERT(ELLIPSIS == s);
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TypographyDetector.java 100 /** Replace ... with the ellipsis character? */
101 public static final Issue ELLIPSIS = Issue.create(
103 "Looks for ellipsis strings (...) which can be replaced with an ellipsis character",
104 "You can replace the string \"...\" with a dedicated ellipsis character, " +
105 "ellipsis character (\u2026, &#8230;). This can help make the text more readable.",
111 setMoreInfo("http://en.wikipedia.org/wiki/Ellipsis"); //$NON-NLS-1$
129 "Replace \"...\" with ellipsis character (\u2026, &#8230;) ?";
218 mCheckEllipsis = context.isEnabled(ELLIPSIS);
247 // Replace ... with ellipsis character
248 int ellipsis = text.indexOf("..."); \/\/$NON-NLS-1\$ local
    [all...]
BuiltinIssueRegistry.java 142 issues.add(TypographyDetector.ELLIPSIS);
314 sAdtFixes.add(TypographyDetector.ELLIPSIS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 164 sFixes.put(TypographyDetector.ELLIPSIS.getId(), TypographyFix.class);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cpplib.h 106 OP(ELLIPSIS, "...") \
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cpplib.h 106 OP(ELLIPSIS, "...") \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cpplib.h 106 OP(ELLIPSIS, "...") \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cpplib.h 106 OP(ELLIPSIS, "...") \
    [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 115 public static final int ELLIPSIS=87;
    [all...]
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
260 public static final int ELLIPSIS=87;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 1754 milliseconds

1 2