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

1 2 3 4 5 6 7 8 91011>>

  /external/dnsmasq/contrib/slackware-dnsmasq/
doinst.sh.gz 
  /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;
108 case NEW:
109 return "NEW";
  /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...]
CallLogQueryHandler.java 49 private static final String[] EMPTY_STRING_ARRAY = new String[0];
108 return new CatchingWorkerHandler(looper);
120 mListener = new WeakReference<Listener>(listener);
126 * This call ignores the new or old state.
154 // We consider the calls that are not yet consumed (i.e. IS_READ = 0) as "new".
155 StringBuilder where = new StringBuilder();
164 where.append(Calls.NEW);
198 /** Updates all new calls to mark them as old. */
203 // Mark all "new" calls as not new anymore
    [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...]
  /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)
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 23 import static com.google.common.util.concurrent.Service.State.NEW;
59 new Callback<Listener>("starting()") {
65 new Callback<Listener>("running()") {
76 terminatedCallback(NEW);
83 return new Callback<Listener>("terminated({from = " + from + "})") {
91 return new Callback<Listener>("stopping({from = " + from + "})") {
98 private final Monitor monitor = new Monitor();
100 private final Transition startup = new Transition();
101 private final Transition shutdown = new Transition();
103 private final Guard isStartable = 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
91 * If the service state is {@link State#NEW}, this initiates service startup and returns
95 * @throws IllegalStateException if the service is not {@link State#NEW}
114 * {@linkplain State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having been
134 * this is {@link State#STARTING}, startup will be cancelled. If this is {@link State#NEW}, it is
150 * {@linkplain State#NEW new}, it is {@linkplain State#TERMINATED terminated} without having bee
    [all...]
ServiceManager.java 26 import static com.google.common.util.concurrent.Service.State.NEW;
89 * ServiceManager manager = new ServiceManager(services);
90 * manager.addListener(new Listener() {
103 * Runtime.getRuntime().addShutdownHook(new Thread() {
127 private static final Callback<Listener> HEALTHY_CALLBACK = new Callback<Listener>("healthy()") {
132 private static final Callback<Listener> STOPPED_CALLBACK = new Callback<Listener>("stopped()") {
184 * Constructs a new instance for managing the given services.
188 * @throws IllegalArgumentException if not all services are {@linkplain State#NEW new} or if there
198 new EmptyServiceManagerWarning())
    [all...]
  /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/tcpdump/tests/
TESTrun.sh 3 mkdir -p NEW
  /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");
TransformNew.java 40 * NEW classname
55 if (c == NEW) {
59 throw new CannotCompileException(
60 "NEW followed by no DUP was found");
  /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"};
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
InCallWakeLockControllerTest.java 60 mInCallWakeLockController = new InCallWakeLockController(mContext, mCallsManager);
87 mInCallWakeLockController.onCallStateChanged(mCall, CallState.NEW, CallState.RINGING);
  /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/javassist/src/main/javassist/bytecode/
Opcode.java 215 int NEW = 187;
431 1, // new, 187

Completed in 729 milliseconds

1 2 3 4 5 6 7 8 91011>>