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

12 3 4 5 6 7 8 91011>>

  /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 '')) +
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
CallTest.java 41 new ArrayList(Arrays.asList("456", "789"));
49 mCall = new TestCall();
75 Bundle bundle = new Bundle();
78 new ArrayList(Arrays.asList("654", "987")));
86 Bundle bundle = new Bundle();
105 super(Call.State.NEW);
  /packages/services/Telecomm/src/com/android/server/telecom/
CreateConnectionTimeout.java 37 private final Handler mHandler = new Handler(Looper.getMainLooper());
115 return state == CallState.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/conscrypt/src/main/java/org/conscrypt/
OpenSSLEngineImpl.java 48 private final Object stateLock = new Object();
55 NEW,
91 private EngineState engineState = EngineState.NEW;
136 throw new IllegalStateException("Engine has already been closed");
139 throw new IllegalStateException("Handshake has already been started");
142 throw new IllegalStateException("Client/server mode must be set before handshake");
177 throw new SSLException(e);
209 if (engineState != EngineState.MODE_SET && engineState != EngineState.NEW) {
266 case NEW:
277 throw new IllegalStateException("Unexpected engine state: " + engineState)
    [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/avahi/avahi-gobject/
ga-record-browser.c 37 NEW,
159 signals[NEW] =
160 g_signal_new("new-record",
332 guint signalid = (event == AVAHI_BROWSER_NEW ? NEW : REMOVED);
ga-service-browser.c 40 NEW,
161 signals[NEW] =
162 g_signal_new("new-service",
309 signalid = (event == AVAHI_BROWSER_NEW ? NEW : REMOVED);
  /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/src/com/android/dialer/calllog/
CallLogQueryHandler.java 116 return new CatchingWorkerHandler(looper);
128 mListener = new WeakReference<Listener>(listener);
145 * This call ignores the new or old state.
173 new String[] { Voicemails._ID },
180 StringBuilder where = new StringBuilder();
194 where.append(" AND (").append(Calls.NEW).append(" = 1)");
216 new String[selectionArgs.size()]), Calls.DEFAULT_SORT_ORDER);
224 /** Updates all new calls to mark them as old. */
229 // Mark all "new" calls as not new anymore
    [all...]
MissedCallNotifier.java 53 /** The identifier of the notification of new missed calls. */
64 sInstance = new MissedCallNotifier(context);
100 Notification.Builder builder = new Notification.Builder(mContext);
117 ContactPhotoLoader loader = new ContactPhotoLoader(mContext, contactInfo);
130 Notification.Builder publicBuilder = new Notification.Builder(mContext);
182 AsyncTask.execute(new Runnable() {
186 // new missed calls from the call log.
188 ContentValues values = new ContentValues();
189 values.put(Calls.NEW, 0);
191 StringBuilder where = new StringBuilder()
    [all...]
  /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/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/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...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Opcodes.java 129 Integer TOP = new Integer(0);
130 Integer INTEGER = new Integer(1);
131 Integer FLOAT = new Integer(2);
132 Integer DOUBLE = new Integer(3);
133 Integer LONG = new Integer(4);
134 Integer NULL = new Integer(5);
135 Integer UNINITIALIZED_THIS = new Integer(6);
326 int NEW = 187; // visitTypeInsn

Completed in 3136 milliseconds

12 3 4 5 6 7 8 91011>>