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

1 2 3 4 5 6 7 8 91011>>

  /external/dnsmasq/contrib/slackware-dnsmasq/
doinst.sh.gz 
  /external/curl/docs/examples/
adddocsref.pl 8 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);
34 system("mv $f.new $f");
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
add-section.d 4 #objcopy: --add-section NEW=$srcdir/empty.s
5 #objdump: -s -j NEW
9 Contents of section NEW:
add-empty-section.d 4 #objcopy: --add-section NEW=$srcdir/empty-file
8 \[[ 0-9]+\] NEW[ \t]+PROGBITS[ \t]+[0-9a-f]+[ \t]+[0-9a-f]+[ \t]+0+[ \t]+[ \t0-9a-f]+
  /hardware/qcom/msm8x27/
clean.sh 5 NEW=kernel-headers
12 $CLEAN_HEADER $OPTS $ORIGINAL/$HEADER > $NEW/$HEADER
  /packages/services/Telecomm/src/com/android/server/telecom/
CallState.java 30 * Indicates that a call is new and not connected. This is used as the default state internally
32 * not expected to ever interact with NEW calls, but {@link android.telecom.InCallService}s will
35 public static final int NEW = 0;
117 case NEW:
118 return "NEW";
  /toolchain/binutils/binutils-2.25/bfd/
mep-relocs.pl 48 open(MEPHO, "> include/elf/mep.h.new") || die("mep.h.new create: $!");
53 print (MEPHO "$pre$rel, $val$rest\n") || die("mep.h.new write: $!");
68 print(MEPHO) || die("mep.h.new write: $!");
72 close(MEPHO) || die("mep.h.new close: $!");
142 printf(NEW " MEPREL (R_MEP_%-10s%d,%3d,%2d,%2d,%2d,%2s, 0x%s),\n",
158 print NEW " case R_MEP_$relocs[$i]: /* $pattern[$i] */\n";
160 print NEW " $v -= mep_tpoff_base(rel->r_offset);\n";
163 print NEW " $v -= mep_sdaoff_base(rel->r_offset);\n";
168 print NEW " if (u > $max) r = bfd_reloc_overflow;\n"
    [all...]
  /sdk/eclipse/scripts/
update_version.sh 4 NEW="$2"
7 if [ -z "$OLD" ] || [ -z "$NEW" ]; then
9 Usage: $0 <old> <new>
24 # sanity check the new version number
25 if [[ "$NEW" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
26 echo "## Version $NEW: seems valid."
28 echo "## Version $NEW: does not conform to major.mino.micro format."
47 SED_NEW="${NEW//./\.}\.qualifier"
57 SED_NEW="${NEW//./\.}"
  /external/toybox/scripts/
bloatcheck 5 echo "usage: bloatcheck old new"
11 NEXT="$(printf "%s% $((50-${#LASTNAME}))d% 10d %10d" "$LASTNAME" "$OLD" "$NEW" "$DELTA")"
23 NEW=0
26 printf "name% 46s% 10s% 11s\n" old new delta
39 NEW=0
48 NEW=$(($NEW+$SIZE))
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 49 * The run state of this task, initially NEW. The run state
59 * NEW -> COMPLETING -> NORMAL
60 * NEW -> COMPLETING -> EXCEPTIONAL
61 * NEW -> CANCELLED
62 * NEW -> INTERRUPTING -> INTERRUPTED
65 private static final int NEW = 0;
93 throw new CancellationException();
94 throw new ExecutionException((Throwable)x);
106 throw new NullPointerException();
108 this.state = NEW; // ensure visibility of callabl
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceTest.java 20 import static com.google.common.util.concurrent.Service.State.NEW;
36 assertLessThan(NEW, STARTING);
37 assertLessThan(NEW, TERMINATED);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
VoicemailQueryHandler.java 32 /** The token for the query to mark all new voicemails as old. */
41 /** Updates all new voicemails to mark them as old. */
43 // Mark all "new" voicemails as not new anymore.
44 StringBuilder where = new StringBuilder();
45 where.append(Calls.NEW);
50 ContentValues values = new ContentValues(1);
51 values.put(Calls.NEW, "0");
54 values, where.toString(), new String[]{ Integer.toString(Calls.VOICEMAIL_TYPE) });
61 Intent serviceIntent = new Intent(mContext, CallLogNotificationsService.class)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 10 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
91 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
92 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
94 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 23 import static com.google.common.util.concurrent.Service.State.NEW;
58 new Callback<Listener>("starting()") {
64 new Callback<Listener>("running()") {
75 terminatedCallback(NEW);
82 return new Callback<Listener>("terminated({from = " + from + "})") {
90 return new Callback<Listener>("stopping({from = " + from + "})") {
97 private final Monitor monitor = new Monitor();
99 private final Guard isStartable = new Guard(monitor) {
101 return state() == NEW;
105 private final Guard isStoppable = new Guard(monitor)
    [all...]
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...]
  /libcore/ojluni/src/main/java/sun/net/
ProgressSource.java 36 public enum State { NEW, CONNECTED, UPDATE, DELETE };
76 this.state = State.NEW;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfg-flags.def 45 DEF_BASIC_BLOCK_FLAG(NEW, 0)
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 12 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 11 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,date INTEGER,duration INTEGER,type INTEGER,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT);
147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END;
150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END
    [all...]
  /external/javassist/src/main/javassist/compiler/
TokenId.java 47 int NEW = 328;
  /external/javassist/src/main/javassist/convert/
TransformNewClass.java 41 * NEW classname
51 if (c == NEW) {
55 throw new CannotCompileException(
56 "NEW followed by no DUP was found");
  /external/tcpdump/tests/
TESTrun.sh 3 mkdir -p NEW
  /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...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadStateTest.java 23 Thread.State [] exStates = { Thread.State.NEW, Thread.State.RUNNABLE,
28 String [] spNames = {"NEW", "RUNNABLE", "BLOCKED", "WAITING",
35 String [] illegalNames = {"New", "new", "", "NAME", "TIME"};
  /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...]

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 91011>>