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

1 2 34 5 6 7 8 91011>>

  /frameworks/native/services/vr/virtual_touchpad/
EvdevInjector.cpp 73 if (const int status = RequireState(State::NEW)) {
77 owned_uinput_.reset(new EvdevInjector::UInput());
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 50 ThreadGroup tg = new ThreadGroup("Test Group2");
51 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1);
62 new Thread(tg, new SimpleThread(1), "SimpleThread3",
74 ByteArrayOutputStream baos = new ByteArrayOutputStream();
75 System.setErr(new PrintStream(baos));
79 String s = new String(baos.toByteArray());
104 final Thread parker = new Thread() {
113 Thread unparker = new Thread()
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogDatabaseHelper.java 132 Calls.NEW + " INTEGER," +
209 mOpenHelper = new OpenHelper(mContext, databaseName, /* factory=*/ null, DATABASE_VERSION);
214 sInstance = new CallLogDatabaseHelper(context, DATABASE_NAME);
222 sInstanceForShadow = new CallLogDatabaseHelper(
303 // This is fine on new devices. (or after a "clear data".)
310 final ContentValues cv = new ContentValues();
363 new String[] {table}) > 0;
373 final ArraySet<String> ret = new ArraySet<>();
  /platform_testing/tests/jank/dialer/src/com/android/dialer/janktests/
DialerJankTests.java 162 // Method to insert a new contact
164 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
166 // to insert a new raw contact in the table ContactsContract.RawContacts
197 uri, new String[] {
220 // Inserts a new entry in the call log
222 ContentValues values = new ContentValues();
227 values.put(CallLog.Calls.NEW, 1);
244 Random rand = new Random();
  /prebuilts/devtools/tools/lib/
asm-5.0.3.jar 
asm-5.0.4.jar 
  /prebuilts/misc/common/asm/
asm-5.2.jar 
  /prebuilts/misc/common/robolectric/lib/
asm-5.0.1.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/m2/repository/org/ow2/asm/asm/5.2/
asm-5.2.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/contacts/
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...]
  /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/Dialer/java/com/android/incallui/call/
DialerCall.java 112 private final List<String> mChildCallIds = new ArrayList<>();
113 private final LogState mLogState = new LogState();
116 private final List<DialerCallListener> mListeners = new CopyOnWriteArrayList<>();
118 new CopyOnWriteArrayList<>();
163 new Call.Callback() {
280 mVideoTechManager = new VideoTechManager(this);
710 return new DisconnectCause(DisconnectCause.UNKNOWN);
    [all...]

Completed in 1283 milliseconds

1 2 34 5 6 7 8 91011>>