HomeSort by relevance Sort by last modified time
    Searched refs:NEW (Results 76 - 100 of 415) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/devtools/tools/lib/
asm-5.0.3.jar 
asm-4.0.jar 
  /prebuilts/misc/common/asm/
asm-5.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/5.0.1/
asm-5.0.1.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/5.0.3/
asm-5.0.3.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/5.0.4/
asm-5.0.4.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm/5.0.3/
asm-5.0.3.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm/5.0.4/
asm-5.0.4.jar 
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 173 public static final String[] tokenNames = new String[] {
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"
231 public static final int NEW=58;
298 public static final String[] ruleNames = new String[] {
400 public static final boolean[] decisionCanBacktrack = new boolean[] {
432 this(input, DebugEventSocketProxy.DEFAULT_DEBUGGER_PORT, new RecognizerSharedState());
436 this.state.ruleMemo = new HashMap[381+1];
439 new DebugEventSocketProxy(this, port, null);
449 super(input, dbg, new RecognizerSharedState());
450 this.state.ruleMemo = new HashMap[381+1]
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsTest.java 69 final String[] PEOPLE_PROJECTION = new String[] {
90 new String[] {insertPeopleName});
92 ContentValues value = new ContentValues();
102 new String[] {insertPeopleName}, null, null);
117 long now = new Date().getTime();
151 final String[] GROUPS_PROJECTION = new String[] {
166 ContentValues value = new ContentValues();
174 new String[] {uri.getPathSegments().get(1)}, null, null);
207 final String[] PHOTOS_PROJECTION = new String[] {
225 byte[] data = new byte[size]
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
LabelFlowAnalyzerTest.java 36 analyzer = new LabelFlowAnalyzer();
37 label = new Label();
119 analyzer.visitTryCatchBlock(new Label(), new Label(), label,
130 analyzer.visitLookupSwitchInsn(label, new int[] { 0, 1 }, new Label[] {
140 analyzer.visitTableSwitchInsn(0, 1, label, new Label[] { label, label });
286 analyzer.visitTypeInsn(NEW, "java/lang/String");
374 analyzer.visitTableSwitchInsn(0, 0, label, new Label[] { label });
381 analyzer.visitLookupSwitchInsn(label, new int[] { 0 }
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 65 attributes = new ArrayList();
85 attributes = new ArrayList();
106 info = new byte[code_len];
109 exceptions = new ExceptionTable(cp, in);
111 attributes = new ArrayList();
121 * @param newCp the constant pool table used by the new copy.
135 return new CodeAttribute(newCp, this, classnames);
138 throw new RuntimeCopyException("bad bytecode. fatal?");
183 throw new UnsupportedOperationException("CodeAttribute.get()");
192 throw new UnsupportedOperationException("CodeAttribute.set()")
    [all...]
Bytecode.java 26 buffer = new byte[64];
39 byte[] b = new byte[size];
46 throw new ArrayIndexOutOfBoundsException(offset);
53 throw new ArrayIndexOutOfBoundsException(offset);
83 byte[] newBuf = new byte[newSize];
99 * Bytecode b = new Bytecode(cp, 1, 0);
142 tryblocks = new ExceptionTable(cp);
171 throw new RuntimeException(cnse);
189 return new CodeAttribute(constPool, maxStack, maxLocals,
219 * the current stack depth is increased by one. If the new stac
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadPoolExecutorSubclassTest.java 50 // return new TestSuite(ThreadPoolExecutorSubclassTest.class);
55 final ReentrantLock lock = new ReentrantLock();
63 if (c == null) throw new NullPointerException();
67 if (r == null) throw new NullPointerException();
68 callable = new Callable<V>() {
125 throw new CancellationException();
127 throw new ExecutionException(exception);
139 throw new TimeoutException();
143 throw new CancellationException();
145 throw new ExecutionException(exception)
    [all...]
ThreadPoolExecutorTest.java 47 // return new TestSuite(ThreadPoolExecutorTest.class);
51 final CountDownLatch beforeCalled = new CountDownLatch(1);
52 final CountDownLatch afterCalled = new CountDownLatch(1);
53 final CountDownLatch terminatedCalled = new CountDownLatch(1);
56 super(1, 1, LONG_DELAY_MS, MILLISECONDS, new SynchronousQueue<Runnable>());
83 return new Thread(r);
92 new ThreadPoolExecutor(1, 1,
94 new ArrayBlockingQueue<Runnable>(10));
96 final CountDownLatch done = new CountDownLatch(1);
97 final Runnable task = new CheckedRunnable()
    [all...]
JSR166TestCase.java 184 throw new IllegalArgumentException(
222 Runnable checkForWedgedTest = new Runnable() { public void run() {
247 Thread thread = new Thread(checkForWedgedTest, "checkForWedgedTest");
255 // .matcher(new String(
324 // junit.textui.TestRunner runner = new junit.textui.TestRunner();
325 // runner.setPrinter(new PithyResultPrinter(System.out));
337 // System.setSecurityManager(new SecurityManager());
349 TestSuite suite = new TestSuite();
354 suite.addTest(new TestSuite((Class<?>) suiteOrClass));
356 throw new ClassCastException("not a test suite or class")
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Thread.java 55 * some thread creates a new <code>Thread</code> object, the new
75 * There are two ways to create a new thread of execution. One is to
97 * PrimeThread p = new PrimeThread(143);
123 * PrimeRun p = new PrimeRun(143);
124 * new Thread(p).start();
129 * a thread is created, a new name is generated for it.
149 private final Object lock = new Object();
242 private final Object blockerLock = new Object();
344 throw new IllegalArgumentException("millis < 0: " + millis)
    [all...]
  /external/jarjar/lib/
asm-4.0.jar 
  /external/javassist/src/main/javassist/compiler/
Parser.java 47 d = new Declarator(VOID, 0);
54 throw new SyntaxError(lex);
62 d.setVariable(new Symbol(name));
85 return new FieldDecl(mods, new ASTList(d, new ASTList(expr)));
87 throw new CompileError(
90 throw new SyntaxError(lex);
108 throw new SyntaxError(lex);
124 throw new SyntaxError(lex)
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar 
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 73 private static final byte[] PBAP_TARGET = new byte[] {
178 mVcardManager = new BluetoothPbapVcardManager(mContext);
324 HeaderSet reply = new HeaderSet();
328 AppParamValue appParamValue = new AppParamValue();
503 filter = new byte[] {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00} ;
545 appParamValue.searchValue = new String(appParam, i + 1, length-1);
547 appParamValue.searchValue = new String(appParam, i + 1, length);
598 StringBuilder result = new StringBuilder();
743 byte[] misnum = new byte[1];
744 ApplicationParameter ap = new ApplicationParameter()
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 83 static final String[] CALL_LOG_SYNC_PROJECTION = new String[] {
96 static final String[] MINIMAL_PROJECTION = new String[] { Calls._ID };
112 private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
126 sCallsProjectionMap = new HashMap<String, String>();
140 sCallsProjectionMap.put(Calls.NEW, Calls.NEW);
188 mVoicemailPermissions = new VoicemailPermissions(context);
191 mBackgroundThread = new HandlerThread(getProviderName() + "Worker",
194 mBackgroundHandler = new Handler(mBackgroundThread.getLooper()) {
201 mReadAccessLatch = new CountDownLatch(1)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/
swig.swg 23 #define %new %warn "117:%new is deprecated. Use %newobject"
116 #define %newobject %feature("new")
117 #define %nonewobject %feature("new","0")
118 #define %clearnewobject %feature("new","")
317 %ignoreoperator(NEW) operator new;
319 %ignoreoperator(NEWARR) operator new[];
350 /* Set up the typemap for handling new return strings */
364 $1 = ($1_type) (new char[strlen((const char *)$input)+1])
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-3.3.1.jar 
asm-4.0.jar 

Completed in 787 milliseconds

1 2 34 5 6 7 8 91011>>