Searched refs:NEW (Results 1 - 25 of 89) sorted by relevance

1234

/external/curl/docs/examples/
H A Dadddocsref.pl8 open(NEW, ">$f.new");
18 print NEW "$prefix/* $docroot/curl_easy_setopt.html#$anc */\n";
19 print NEW $l;
23 print NEW "$prefix/* $docroot/$func.html */\n";
24 print NEW $l;
27 print NEW $l;
31 close(NEW);
/external/dnsmasq/contrib/slackware-dnsmasq/
H A Ddoinst.sh.gz
/external/toybox/scripts/
H A Dbloatcheck11 NEXT="$(printf "%s% $((50-${#LASTNAME}))d% 10d %10d" "$LASTNAME" "$OLD" "$NEW" "$DELTA")"
23 NEW=0
39 NEW=0
48 NEW=$(($NEW+$SIZE))
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DServiceTest.java20 import static com.google.common.util.concurrent.Service.State.NEW;
36 assertLessThan(NEW, STARTING);
37 assertLessThan(NEW, TERMINATED);
H A DServiceManagerTest.java158 assertState(manager, Service.State.NEW, a, b);
182 assertState(manager, Service.State.NEW, a, b, c, d, e);
206 assertState(manager, Service.State.NEW, a, b);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java23 import static com.google.common.util.concurrent.Service.State.NEW;
75 terminatedCallback(NEW);
101 return state() == NEW;
140 private volatile StateSnapshot snapshot = new StateSnapshot(NEW);
193 case NEW:
195 terminated(NEW);
365 case NEW:
462 case NEW:
H A DService.java32 * <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 { enum constant in enum:Service.State
257 * Called when the service transitions from {@linkplain State#NEW NEW} to
285 * this are {@linkplain State#NEW NEW}, {
[all...]
H A DServiceManager.java27 import static com.google.common.util.concurrent.Service.State.NEW;
189 * @throws IllegalArgumentException if not all services are {@linkplain State#NEW new} or if there
209 // to a NEW service.
210 checkArgument(service.state() == NEW, "Can only manage NEW services, %s", service);
266 * It is only valid to call this method if all of the services are {@linkplain State#NEW new}.
269 * @throws IllegalStateException if any of the Services are not {@link State#NEW new} when the
275 checkState(state == NEW, "Service %s is %s, cannot start it.", service, state);
284 // all services were NEW when it was called, and this has already been verified above, so we
466 * It is implicitly assumed that all the services are NEW an
[all...]
/external/javassist/src/main/javassist/compiler/
H A DTokenId.java47 int NEW = 328; field in interface:TokenId
/external/javassist/src/main/javassist/convert/
H A DTransformNewClass.java41 * NEW classname
51 if (c == NEW) {
56 "NEW followed by no DUP was found");
H A DTransformNew.java40 * NEW classname
55 if (c == NEW) {
60 "NEW followed by no DUP was found");
/external/tcpdump/tests/
H A DTESTrun.sh3 mkdir -p NEW
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DWebSocketChannelClient.java60 NEW, CONNECTED, REGISTERED, CLOSED, ERROR enum constant in enum:WebSocketChannelClient.WebSocketConnectionState
79 state = WebSocketConnectionState.NEW;
88 if (state != WebSocketConnectionState.NEW) {
138 case NEW:
H A DWebSocketRTCClient.java45 NEW, CONNECTED, CLOSED, ERROR enum constant in enum:WebSocketRTCClient.ConnectionState
62 roomState = ConnectionState.NEW;
96 roomState = ConnectionState.NEW;
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
H A DDuplicateFrameEliminatorTest.java85 testInstructionBetweenFrames(new TypeInsnNode(Opcodes.NEW,
152 mv.visitFrame(Opcodes.NEW, 1, new Object[] { Opcodes.INTEGER }, 0,
/external/r8/src/test/examplesAndroidO/invokecustom/
H A DTestGenerator.java170 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
193 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
216 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
239 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
262 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
285 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
369 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
396 mv.visitTypeInsn(Opcodes.NEW, Type.getInternalName(InvokeCustom.class));
/external/libxml2/os400/
H A Dmake-src.sh261 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')"
H A Dxmlcatalog.cmd14 CASE(*MIXED) EXPR(*YES) MIN(1) SPCVAL((*NEW '')) +
/external/vogar/src/vogar/
H A DConsole.java48 protected CurrentLine currentLine = CurrentLine.NEW;
185 currentLine = CurrentLine.NEW;
375 } else if (currentLine != CurrentLine.NEW) {
379 currentLine = CurrentLine.NEW;
390 NEW, enum constant in enum:Console.CurrentLine
/external/desugar/java/com/google/devtools/build/android/desugar/
H A DHeaderClassLoader.java106 super.visitTypeInsn(Opcodes.NEW, EXCEPTION_INTERNAL_NAME);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DURLStreamHandlerRuntime.java87 mv.visitTypeInsn(Opcodes.NEW, "java/net/URL");
/external/javassist/src/main/javassist/bytecode/
H A DOpcode.java215 int NEW = 187; field in interface:Opcode
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DPeerConnection.java47 public enum IceGatheringState { NEW, GATHERING, COMPLETE }; enum constant in enum:PeerConnection.IceGatheringState
52 NEW, CHECKING, CONNECTED, COMPLETED, FAILED, DISCONNECTED, CLOSED enum constant in enum:PeerConnection.IceConnectionState
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DTrialRunLoop.java80 if (streamService.state() != State.NEW) {
/external/javassist/src/main/javassist/expr/
H A DNewExpr.java150 // "sorry, cannot edit NEW followed by no DUP");
169 /* delete the preceding NEW and DUP (or DUP_X1, SWAP) instructions.
232 bytecode.addOpcode(NEW);

Completed in 897 milliseconds

1234