HomeSort by relevance Sort by last modified time
    Searched defs:NEW (Results 1 - 25 of 533) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 60 NEW {
62 return new ExecutionListWrapper() {
63 final ExecutionList list = new ExecutionList();
80 return new ExecutionListWrapper() {
81 final ExecutionListCAS list = new ExecutionListCAS();
98 return new ExecutionListWrapper() {
99 final NewExecutionListQueue list = new NewExecutionListQueue();
116 return new ExecutionListWrapper() {
117 final NewExecutionListWithoutReverse list = new NewExecutionListWithoutReverse();
134 return new ExecutionListWrapper()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallState.java 32 * Indicates that a call is new and not connected. This is used as the default state internally
34 * not expected to ever interact with NEW calls, but {@link android.telecom.InCallService}s will
37 public static final int NEW = TelecomProtoEnums.NEW; // = 0
119 case NEW:
120 return "NEW";
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 32 * <li>{@linkplain State#NEW NEW} -&gt;
57 * If the service state is {@link State#NEW}, this initiates service startup and returns
61 * @throws IllegalStateException if the service is not {@link State#NEW}
80 * {@linkplain State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having been
189 NEW {
257 * Called when the service transitions from {@linkplain State#NEW NEW} to
285 * this are {@linkplain State#NEW NEW}, {@linkplain State#RUNNING RUNNING} or
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_server_lib.h 120 // NEW ---------> STARTED --------> STOPPED
124 enum State { NEW, STARTED, STOPPED };
  /frameworks/native/services/vr/virtual_touchpad/
EvdevInjector.h 119 enum class State { NEW, CONFIGURING, READY, CLOSED };
135 State state_ = State::NEW;
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
Criterion.java 36 NEW,
Insertion.java 30 NEW,
56 protected static Set<String> alwaysQualify = new LinkedHashSet<String>();
59 * Creates a new insertion.
67 this.packageNames = new LinkedHashSet<String>();
289 StringBuilder result = new StringBuilder();
340 throw new RuntimeException("Illegal kind: " + type.getKind());
367 AnnotationInsertion ins = new AnnotationInsertion(annotation);
402 throw new RuntimeException("Expected 'ANNOTATION' insertion kind, got '"
414 throw new RuntimeException("Missing type path.");
429 throw new RuntimeException("Incorrect type path.")
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
ProgressSource.java 36 public enum State { NEW, CONNECTED, UPDATE, DELETE };
76 this.state = State.NEW;
  /packages/apps/Dialer/java/com/android/dialer/calllog/ui/
CoalescedAnnotatedCallLogCursorLoader.java 39 private static final int NEW = 6;
62 /** Creates a new {@link CoalescedRow} from the provided cursor using the current position. */
68 throw new IllegalStateException("Couldn't parse DialerPhoneNumber bytes");
75 throw new IllegalStateException("Couldn't parse CoalescedIds bytes");
82 throw new IllegalStateException("Couldn't parse NumberAttributes bytes");
92 .setIsNew(cursor.getInt(NEW) == 1)
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
AnomalyDatabaseHelper.java 40 @IntDef({State.NEW,
44 int NEW = 0;
99 sSingleton = new AnomalyDatabaseHelper(context.getApplicationContext());
  /packages/apps/Settings/tests/unit/src/com/android/settings/fuelgauge/batterytip/
RestrictAppTest.java 67 AnomalyDatabaseHelper.State.NEW, System.currentTimeMillis());
70 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
79 AnomalyDatabaseHelper.State.NEW, System.currentTimeMillis());
82 AnomalyDatabaseHelper.State.NEW, System.currentTimeMillis());
85 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
100 instrumentation.startActivitySync(new Intent(BATTERY_INTENT));
112 AnomalyDatabaseHelper.State.NEW, now)).isTrue();
114 AnomalyDatabaseHelper.State.NEW, now)).isFalse();
118 AnomalyDatabaseHelper.State.NEW);
119 assertThat(newAppInfos).containsExactly(new AppInfo.Builder(
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java 78 * See {@link android.provider.CallLog.Calls#NEW}.
82 String NEW = "new";
143 new String[] {
150 NEW,
253 private static final String[] COLUMNS_ONLY_IN_COALESCED_CALL_LOG = new String[] {COALESCED_IDS};
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/tips/
BatteryTip.java 41 @IntDef({StateType.NEW,
45 int NEW = 0;
73 TIP_ORDER = new SparseIntArray();
129 * Update the current {@link #mState} using the new {@code tip}.
141 Preference preference = new Preference(context);
  /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/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketChannelClient.java 50 private final Object closeEventLock = new Object();
60 NEW, CONNECTED, REGISTERED, CLOSED, ERROR
78 wsSendQueue = new LinkedList<String>();
79 state = WebSocketConnectionState.NEW;
88 if (state != WebSocketConnectionState.NEW) {
97 ws = new WebSocketConnection();
98 wsObserver = new WebSocketObserver();
100 ws.connect(new URI(wsServerUrl), wsObserver);
117 JSONObject json = new JSONObject();
138 case NEW
    [all...]
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...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
FutureTask.java 78 * The run state of this task, initially NEW. The run state
88 * NEW -> COMPLETING -> NORMAL
89 * NEW -> COMPLETING -> EXCEPTIONAL
90 * NEW -> CANCELLED
91 * NEW -> INTERRUPTING -> INTERRUPTED
94 private static final int NEW = 0;
122 throw new CancellationException();
123 throw new ExecutionException((Throwable)x);
135 throw new NullPointerException();
137 this.state = NEW; // ensure visibility of callabl
    [all...]
  /external/javassist/src/main/javassist/compiler/
TokenId.java 47 int NEW = 328;
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 66 * <li> {@link #ACTION_NEW_VOICEMAIL} is generated for each new voicemail
70 * made into the database, including new voicemail.
87 /** Broadcast intent when a new voicemail record is inserted. */
109 * Broadcast intent to inform a new visual voicemail SMS has been received. This intent will
195 public static final String NEW = Calls.NEW;
400 * Inserts a new voicemail into the voicemail content provider.
443 buildSourceUri(context.getPackageName()), "", new String[0]);
450 ContentValues contentValues = new ContentValues();
635 * the source gets notified of new voicemails on the remote server
    [all...]
  /libcore/ojluni/src/main/native/
UNIXProcess_md.c 217 #define NEW(type, n) ((type *) xmalloc(env, (n) * sizeof(type)))
261 pathv = NEW(char*, count+1);
270 pathv[i] = NEW(char, q - p + addSlash + 1);
499 errmsg = NEW(char, newsize);
759 /* change to the new working directory */
858 if ((c = NEW(ChildStuff, 1)) == NULL) return -1;
873 if ((c->argv = NEW(const char *, argc + 3)) == NULL) goto Catch;
880 if ((c->envv = NEW(const char *, envc + 1)) == NULL) goto Catch;
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 54 #define NEW(p) if (((p) = memget(sizeof *(p))) != NULL) \
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
ASTParserConstants.java 94 int NEW = 68;
347 "\"new\"",
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParserConstants.java 94 int NEW = 43;
322 "\"new\"",
  /external/turbine/java/com/google/turbine/parse/
Token.java 112 NEW("new"),
  /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>();

Completed in 2025 milliseconds

1 2 3 4 5 6 7 8 91011>>