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

12 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DuplicateFrameEliminatorTest.java 50 actual = new MethodRecorder();
51 expected = new MethodRecorder();
52 eliminator = new DuplicateFrameEliminator(actual.getVisitor());
70 testInstructionBetweenFrames(new InsnNode(Opcodes.NOP));
75 testInstructionBetweenFrames(new IntInsnNode(Opcodes.BIPUSH, 123));
80 testInstructionBetweenFrames(new VarInsnNode(Opcodes.ILOAD, 0));
85 testInstructionBetweenFrames(new TypeInsnNode(Opcodes.NEW,
91 testInstructionBetweenFrames(new FieldInsnNode(Opcodes.GETFIELD, "Foo",
97 testInstructionBetweenFrames(new MethodInsnNode(Opcodes.INVOKEVIRTUAL
    [all...]
  /art/test/129-ThreadGetId/src/
Main.java 25 final Thread[] threads = new Thread[numberOfThreads];
27 threads[t] = new Thread(new Main());
46 Thread[] array = new Thread[activeCount];
50 thread.getState() != Thread.State.NEW) {
  /external/javassist/src/main/javassist/convert/
TransformNew.java 40 * NEW classname
55 if (c == NEW) {
59 throw new CannotCompileException(
60 "NEW followed by no DUP was found");
  /external/libxml2/os400/
make-src.sh 261 CMD="${CMD}) ACTGRP(*NEW) TEXT('XML tool')"
280 CMD="${CMD} ACTGRP(*NEW) TEXT('XMLLINT command response')"
318 CMD="${CMD}) ACTGRP(*NEW) TEXT('XML/SGML catalog tool')"
335 CMD="${CMD} ACTGRP(*NEW) TEXT('XMLCATALOG command response')"
xmlcatalog.cmd 14 CASE(*MIXED) EXPR(*YES) MIN(1) SPCVAL((*NEW '')) +
  /external/vogar/src/vogar/
Console.java 48 protected CurrentLine currentLine = CurrentLine.NEW;
49 protected final MarkResetConsole out = new MarkResetConsole(System.out);
185 currentLine = CurrentLine.NEW;
225 timestamp = formatElapsedTime(new Date().getTime() - lastRun);
246 StringBuilder sb = new StringBuilder();
288 throw new IllegalArgumentException("non-negative elapsed times only");
317 StringBuilder sb = new StringBuilder();
372 * Otherwise we overwrite verbose output when new output arrives.
375 } else if (currentLine != CurrentLine.NEW) {
379 currentLine = CurrentLine.NEW;
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ServiceManager.java 27 import static com.google.common.util.concurrent.Service.State.NEW;
90 * ServiceManager manager = new ServiceManager(services);
91 * manager.addListener(new Listener() {
104 * Runtime.getRuntime().addShutdownHook(new Thread() {
128 private static final Callback<Listener> HEALTHY_CALLBACK = new Callback<Listener>("healthy()") {
133 private static final Callback<Listener> STOPPED_CALLBACK = new Callback<Listener>("stopped()") {
185 * Constructs a new instance for managing the given services.
189 * @throws IllegalArgumentException if not all services are {@linkplain State#NEW new} or if there
199 new EmptyServiceManagerWarning())
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 215 #define NEW(type, n) ((type *) xmalloc(env, (n) * sizeof(type)))
259 pathv = NEW(char*, count+1);
268 pathv[i] = NEW(char, q - p + addSlash + 1);
497 errmsg = NEW(char, newsize);
754 /* change to the new working directory */
853 if ((c = NEW(ChildStuff, 1)) == NULL) return -1;
868 if ((c->argv = NEW(const char *, argc + 3)) == NULL) goto Catch;
875 if ((c->envv = NEW(const char *, envc + 1)) == NULL) goto Catch;
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketRTCClient.java 45 NEW, CONNECTED, CLOSED, ERROR
62 roomState = ConnectionState.NEW;
73 executor.execute(new Runnable() {
83 executor.execute(new Runnable() {
96 roomState = ConnectionState.NEW;
97 wsClient = new WebSocketChannelClient(executor, this);
99 RoomParametersFetcherEvents callbacks = new RoomParametersFetcherEvents() {
103 WebSocketRTCClient.this.executor.execute(new Runnable() {
117 new RoomParametersFetcher(connectionUrl, null, callbacks).makeRequest();
186 executor.execute(new Runnable()
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogNotificationsQueryHelper.java 70 return new CallLogNotificationsQueryHelper(
73 new ContactInfoHelper(context, countryIso),
84 // new missed calls from the call log.
86 ContentValues values = new ContentValues();
87 values.put(Calls.NEW, 0);
89 StringBuilder where = new StringBuilder();
90 where.append(Calls.NEW);
101 new String[] {Integer.toString(Calls.MISSED_TYPE)});
117 /** Create a new instance of {@link NewCallsQuery}. */
121 return new DefaultNewCallsQuery(context.getApplicationContext(), contentResolver)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/database/
CallLogQueryHandler.java 85 mListener = new WeakReference<Listener>(listener);
92 return new CatchingWorkerHandler(looper);
96 * Fetches the list of calls from the call log for a given type. This call ignores the new or old
115 StringBuilder where = new StringBuilder();
116 List<String> selectionArgs = new ArrayList<>();
129 selectionArgs.toArray(new String[selectionArgs.size()]),
138 new StringBuilder(Voicemails.IS_READ + "=0" + " AND " + Voicemails.DELETED + "=0 ");
139 List<String> selectionArgs = new ArrayList<>();
149 new String[] {Voicemails._ID},
151 selectionArgs.toArray(new String[selectionArgs.size()])
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
HeaderClassLoader.java 51 throw new ClassNotFoundException("Class " + name + " not found");
57 ClassWriter writer = new ClassWriter(ClassWriter.COMPUTE_MAXS);
58 reader.accept(new CodeStubber(writer), 0);
61 throw new IOError(e);
81 return new BodyStubber(dest);
106 super.visitTypeInsn(Opcodes.NEW, EXCEPTION_INTERNAL_NAME);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
URLStreamHandlerRuntime.java 39 * Creates a new runtime.
72 // final URL url = new URL(protocol, null, "");
74 // final Object[] args = new Object[3];
87 mv.visitTypeInsn(Opcodes.NEW, "java/net/URL");
130 private final URLStreamHandler handler = new URLStreamHandler() {
137 private final URLConnection connection = new URLConnection(null) {
140 throw new AssertionError();
  /external/javassist/src/main/javassist/bytecode/
Opcode.java 215 int NEW = 187;
431 1, // new, 187
  /libcore/ojluni/src/main/java/sun/misc/
VM.java 195 // control array syntax allows applications the ability to preview this new
241 // throw new IllegalStateException("Should be non-empty if initialized");
249 private static final Properties savedProps = new Properties();
257 throw new IllegalStateException("System initialization has completed");
371 return NEW;
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionTimeout.java 38 private final Handler mHandler = new Handler(Looper.getMainLooper());
116 return state == CallState.NEW
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
InCallWakeLockControllerTest.java 45 TelecomWakeLock telecomWakeLock = new TelecomWakeLock(
49 mInCallWakeLockController = new InCallWakeLockController(telecomWakeLock, mCallsManager);
83 mInCallWakeLockController.onCallStateChanged(mCall, CallState.NEW, CallState.RINGING);
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLEngineImpl.java 89 new SSLEngineResult(OK, NEED_UNWRAP, 0, 0);
91 new SSLEngineResult(CLOSED, NEED_UNWRAP, 0, 0);
92 private static final SSLEngineResult NEED_WRAP_OK = new SSLEngineResult(OK, NEED_WRAP, 0, 0);
94 new SSLEngineResult(CLOSED, NEED_WRAP, 0, 0);
96 new SSLEngineResult(CLOSED, NOT_HANDSHAKING, 0, 0);
111 private final Object stateLock = new Object();
118 NEW,
150 private EngineState engineState = EngineState.NEW;
187 private final ByteBuffer[] singleSrcBuffer = new ByteBuffer[1];
188 private final ByteBuffer[] singleDstBuffer = new ByteBuffer[1]
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 47 public enum IceGatheringState { NEW, GATHERING, COMPLETE };
52 NEW, CHECKING, CONNECTED, COMPLETED, FAILED, DISCONNECTED, CLOSED
75 /** Triggered when a new ICE candidate has been found. */
78 /** Triggered when media is received on a new stream from remote peer. */
181 localStreams = new LinkedList<MediaStream>();
182 senders = new LinkedList<RtpSender>();
183 receivers = new LinkedList<RtpReceiver>();
  /dalvik/dx/src/com/android/dx/cf/code/
ValueAwareMachine.java 141 setResult(new ReturnAddress(getAuxTarget()));
170 case ByteOps.NEW: {
192 throw new RuntimeException("shouldn't happen: " +
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 32 * <pre>throw new RuntimeException("stub");</pre>
45 Label l0 = new Label();
48 mv.visitTypeInsn(Opcodes.NEW, "java/lang/RuntimeException");
58 Label l1 = new Label();
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialRunLoop.java 80 if (streamService.state() != State.NEW) {
81 throw new IllegalStateException("You can only invoke the run loop once");
107 throw new TrialFailureException(
137 new ShouldContinueMessage(
149 throw new TrialFailureException(String.format("The worker exited without producing "
163 throw new TrialFailureException(String.format(
171 throw new AssertionError("Impossible item: " + item);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ClassLoaderLocalMap.java 37 Collections.synchronizedMap(new WeakHashMap<Object, Object>());
43 ClassLoader.class.getDeclaredMethod("defineClass", new Class[]{
50 ClassLoader.class.getDeclaredMethod("findLoadedClass", new Class[]{String.class});
53 throw new RuntimeException(e);
104 Class<?> clazz = (Class<?>) findLoadedClass.invoke(cl, new Object[]{propertiesClassName});
109 throw new RuntimeException(e);
111 throw new RuntimeException(e);
113 throw new RuntimeException(e.getTargetException());
122 holderClass = (Class<?>) findLoadedClass.invoke(cl, new Object[]{holderClassName});
124 throw new RuntimeException(e)
    [all...]
  /external/javassist/src/main/javassist/expr/
NewExpr.java 24 * Object creation (<tt>new</tt> expression).
55 * Returns the method or constructor containing the <tt>new</tt>
62 * <tt>new</tt> expression.
71 * Returns the source file containing the <tt>new</tt> expression.
149 // throw new CannotCompileException(
150 // "sorry, cannot edit NEW followed by no DUP");
154 * Replaces the <tt>new</tt> expression with the bytecode derived from
169 /* delete the preceding NEW and DUP (or DUP_X1, SWAP) instructions.
182 Javac jc = new Javac(thisClass);
192 jc.recordProceed(new ProceedForNew(newType, newIndex
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Sec/X64/
SwitchRam.asm 58 mov rcx, rsp ; Move to new stack
71 ; This data comes off the NEW stack

Completed in 3668 milliseconds

12 3 4 5 6 7 8 91011>>