HomeSort by relevance Sort by last modified time
    Searched refs:ELLIPSIS (Results 1 - 25 of 46) 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_org/tools/heapcheck/
suppressions.py 16 # an ellipsis wildcards zero or more functions in a stack.
30 ELLIPSIS = '...'
57 if line == ELLIPSIS:
132 elif line.startswith(ELLIPSIS):
133 cur_stack.append(ELLIPSIS)
154 ellipsis = GenSupp('...', 'foo')
155 assert ellipsis.Match(['foo', 'bar'])
156 assert ellipsis.Match(['bar', 'baz', 'foo'])
157 assert not ellipsis.Match(['bar', 'baz', 'bah'])
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
prettyload.js 18 const ELLIPSIS = [' ', ' ', ' .', ' .', ' ..', ' ..', '...', '...'];
39 this.frames = frames !== undefined ? frames : ELLIPSIS;
  /external/chromium_org/tools/valgrind/
suppressions.py 19 # an ellipsis wildcards zero or more functions in a stack.
37 ELLIPSIS = '...'
207 if line == ELLIPSIS:
416 if line == ELLIPSIS:
420 if func == ELLIPSIS: # mod!ellipsis frame
463 re.compile(r"^.*!\.\.\.$"), # mod!ellipsis
468 re.compile(r"^\.\.\.$"), # ellipsis
525 if stack[-1] == ELLIPSIS:
526 raise SuppressionError('Suppression "%s" ends in an ellipsis on line %d'
    [all...]
  /external/icu4c/test/intltest/
alphaindextst.cpp 151 UnicodeString ELLIPSIS; ELLIPSIS.append((UChar32)0x2026);
153 TEST_ASSERT(ELLIPSIS == s);
155 TEST_ASSERT(ELLIPSIS == s);
157 TEST_ASSERT(ELLIPSIS == s);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 168 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
doctest.py 56 'ELLIPSIS',
135 ELLIPSIS = register_optionflag('ELLIPSIS')
142 ELLIPSIS |
271 # Worst-case linear-time ellipsis matching.
312 # due to an ellipsis at the start or end of `want`. That's OK.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
doctest.py 56 'ELLIPSIS',
135 ELLIPSIS = register_optionflag('ELLIPSIS')
142 ELLIPSIS |
271 # Worst-case linear-time ellipsis matching.
312 # due to an ellipsis at the start or end of `want`. That's OK.
    [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/robolectric/lib/main/
junit-dep-4.8.2.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/devtools/tools/lib/
lint-checks.jar 
  /prebuilts/tools/common/m2/internal/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 

Completed in 832 milliseconds

1 2