/external/javassist/src/main/javassist/bytecode/analysis/ |
Executor.java | 49 throw new RuntimeException(e); 245 throw new BadBytecode("POP can not be used with a category 2 value, pos = " + pos); 254 throw new BadBytecode("DUP can not be used with a category 2 value, pos = " + pos); 263 throw new BadBytecode("DUP can not be used with a category 2 value, pos = " + pos); 299 throw new BadBytecode("Swap can not be used with category 2 values, pos = " + pos); 550 throw new RuntimeException(e); 576 throw new RuntimeException("Bad opcode 186"); 577 case NEW: 589 throw new BadBytecode("Array length passed a non-array [pos = " + pos + "]: " + array); 652 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component) [all...] |
/external/javassist/src/main/javassist/bytecode/stackmap/ |
Tracer.java | 45 stackTypes = new TypeData[maxStack]; 46 localsTypes = new TypeData[maxLocals]; 56 stackTypes = new TypeData[size]; 61 localsTypes = new TypeData[size2]; 105 throw new BadBytecode("inconsistent stack height " + e.getMessage()); 160 stackTypes[stackTop++] = new TypeData.NullType(); 258 throw new BadBytecode("bad AALOAD"); 260 stackTypes[s] = new TypeData.ArrayElement(data); 269 throw new RuntimeException("fatal"); 279 stackTypes[stackTop++] = new TypeData.ClassName("java.lang.String") [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
Frame.java | 230 int[] b = new int[202];
244 // b = new int[] {
432 // 1, //NEW, // visitTypeInsn
545 outputLocals = new int[10];
549 int[] t = new int[Math.max(local + 1, 2 * n)];
558 * Pushes a new type onto the output frame stack.
565 outputStack = new int[10];
569 int[] t = new int[Math.max(outputStackTop + 1, 2 * n)];
583 * Pushes a new type onto the output frame stack.
722 * Adds a new type to the list of types on which a constructor is invoked in [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
CodeEmitter.java | 109 state = new State(ce.getClassInfo(), access, sig, exceptionTypes); 143 return new Block(this); 148 throw new IllegalStateException("end of block is unset"); 195 throw new IllegalArgumentException("Bad comparison for type " + type); 301 mv.visitLdcInsn(new Integer(i)); 309 mv.visitLdcInsn(new Integer(i)); 317 mv.visitLdcInsn(new Long(value)); 325 mv.visitLdcInsn(new Float(value)); 332 mv.visitLdcInsn(new Double(value)); 358 throw new IllegalStateException("no 'this' pointer within static method") [all...] |
/external/v8/src/parsing/ |
scanner.cc | 1150 KEYWORD("new", Token::NEW) \ [all...] |
parser-base.h | 341 Scope* result = new (zone()) [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsDatabaseHelperUpgradeTest.java | 123 TableStructure calls = new TableStructure(mDb, "calls"); 126 TableStructure voicemailStatus = new TableStructure(mDb, "voicemail_status"); 142 BufferedReader r = new BufferedReader(new InputStreamReader(input)); 148 throw new RuntimeException(e.toString()); 155 private static final TableColumn[] PROPERTIES_COLUMNS = new TableColumn[] { 156 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_KEY, TEXT, false, null), 157 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_VALUE, TEXT, false, null), 160 private static final TableColumn[] ACCOUNTS_COLUMNS = new TableColumn[] { 161 new TableColumn(AccountsColumns._ID, INTEGER, false, null) [all...] |
VoicemailProviderTest.java | 84 // We create on purpose a new set of ContentValues here, because the code above modifies 100 Cursor c = mResolver.query(uri, projection, Calls.NEW + "=0", null, 124 byte[] inBuffer = new byte[4]; 135 ContentValues values = new ContentValues(); 153 mResolver.update(uri, new ContentValues(), null, null); 166 mResolver.update(uri, new ContentValues(), null, null); 229 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() { 236 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() { 243 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() { 250 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() [all...] |
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 234 static final Printer LOG_PRINTER = new LogPrinter(Log.DEBUG, GridLayout.class.getName()); 235 static final Printer NO_PRINTER = new Printer() { 261 final Axis mHorizontalAxis = new Axis(true); 262 final Axis mVerticalAxis = new Axis(false); 717 lp.setRowSpecSpan(new Interval(row, row + rowSpan)); 718 lp.setColumnSpecSpan(new Interval(col, col + colSpan)); 739 int[] maxSizes = new int[count]; 823 throw new IllegalArgumentException(msg + ". "); [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 222 static final Printer LOG_PRINTER = new LogPrinter(Log.DEBUG, GridLayout.class.getName()); 223 static final Printer NO_PRINTER = new Printer() { 249 final Axis mHorizontalAxis = new Axis(true); 250 final Axis mVerticalAxis = new Axis(false); 708 lp.setRowSpecSpan(new Interval(row, row + rowSpan)); 709 lp.setColumnSpecSpan(new Interval(col, col + colSpan)); 730 int[] maxSizes = new int[count]; 802 throw new IllegalArgumentException(msg + ". "); 840 return new LayoutParams(); 845 return new LayoutParams(getContext(), attrs) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
BytecodeArray.java | 40 public static final Visitor EMPTY_VISITOR = new BaseVisitor(); 60 throw new NullPointerException("bytes == null"); 64 throw new NullPointerException("pool == null"); 145 * set new bits in the work set during the process. 153 throw new NullPointerException("visitor == null"); 758 case ByteOps.NEW: 777 throw new ParseException("invokedynamic not supported"); 810 SimException se = new SimException(ex) [all...] |
/prebuilts/tools/common/m2/repository/org/beanshell/bsh/2.0b4/ |
bsh-2.0b4.jar | |
/prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/ |
javacc-5.0.jar | |
/external/dexmaker/lib/ |
jarjar.jar | |
/external/doclava/src/com/google/doclava/parser/ |
JavaLexer.java | 86 public static final int NEW=58; 155 this(input, new RecognizerSharedState()); 240 new NoViableAltException("", 4, 0, input); 312 new EarlyExitException(2, input); 349 new EarlyExitException(3, input); 384 new NoViableAltException("", 5, 1, input); 391 new NoViableAltException("", 5, 0, input); 431 MismatchedSetException mse = new MismatchedSetException(null,input); 455 MismatchedSetException mse = new MismatchedSetException(null,input); 502 new EarlyExitException(6, input) [all...] |
/external/guice/lib/build/ |
jarjar-1.1.jar | |
/external/testng/ant/3rdparty/ |
cobertura.jar | |
/external/testng/lib-supplied/ |
jarjar-issue-21.jar | |
/prebuilts/tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.3/ |
jarjar-1.3.jar | |
/prebuilts/tools/common/m2/repository/org/gradle/jarjar/jarjar/1.2.1/ |
jarjar-1.2.1.jar | |
/external/eigen/blas/testing/ |
cblat2.f | 129 OPEN( NOUT, FILE = SUMMRY, STATUS = 'NEW' ) 138 OPEN( NTRA, FILE = SNAPS, STATUS = 'NEW' ) [all...] |
dblat2.f | 124 OPEN( NOUT, FILE = SUMMRY, STATUS = 'NEW' ) 133 OPEN( NTRA, FILE = SNAPS, STATUS = 'NEW' ) [all...] |
dblat3.f | 99 OPEN( NOUT, FILE = SUMMRY, STATUS = 'NEW' ) 108 OPEN( NTRA, FILE = SNAPS, STATUS = 'NEW' ) [all...] |
sblat2.f | 124 OPEN( NOUT, FILE = SUMMRY, STATUS = 'NEW' ) 133 OPEN( NTRA, FILE = SNAPS, STATUS = 'NEW' ) [all...] |
sblat3.f | 99 OPEN( NOUT, FILE = SUMMRY, STATUS = 'NEW' ) 108 OPEN( NTRA, FILE = SNAPS, STATUS = 'NEW' ) [all...] |