HomeSort by relevance Sort by last modified time
    Searched refs:NEW (Results 51 - 75 of 484) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentTable.java 58 private static final String[] FILENAME_ONLY_PROJECTION = new String[] { Voicemails._DATA };
60 private static final ImmutableSet<String> ALLOWED_COLUMNS = new ImmutableSet.Builder<String>()
99 mVoicemailProjectionMap = new ProjectionMap.Builder()
142 ContentValues copiedValues = new ContentValues(values);
155 // A voicemail is marked as new unless it is marked as read or explicitly overridden.
158 if (!values.containsKey(Calls.NEW)) {
159 copiedValues.put(Calls.NEW, !isRead);
175 throw new UnsupportedOperationException(String.format(
189 throw new RuntimeException("unable to create temp file", e);
193 ContentValues values = new ContentValues()
    [all...]
DbModifierWithNotification.java 62 private static final String[] PROJECTION = new String[] {
97 mVoicemailPermissions = new VoicemailPermissions(mContext);
137 Intent intent = new Intent("com.android.internal.action.CALL_LOG_CHANGE");
138 intent.setComponent(new ComponentName("com.android.calllogbackup",
189 // If the server has set the IS_READ, it should also unset the new flag
190 if (!values.containsKey(Calls.NEW)) {
191 values.put(Calls.NEW, 0);
206 // A "New" voicemail has been marked as read by the server. This voicemail is no longer
207 // new but the content consumer might still think it is. ACTION_NEW_VOICEMAIL should
208 // trigger a rescan of new voicemails
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
ParcelableCallUtils.java 43 * Parcels all information for a {@link Call} into a new {@link ParcelableCall} instance.
66 * Parcels all information for a {@link Call} into a new {@link ParcelableCall} instance.
132 List<String> childCallIds = new ArrayList<>();
154 List<String> conferenceableCallIds = new ArrayList<String>(conferenceableCalls.size());
161 return new ParcelableCall(
191 int state = CallState.NEW;
222 case CallState.NEW:
245 private static final int[] CONNECTION_TO_CALL_CAPABILITY = new int[] {
319 private static final int[] CONNECTION_TO_CALL_PROPERTIES = new int[] {
355 * Removes the specified capability from the set of capabilities bits and returns the new set
    [all...]
Call.java 204 new CallerInfoLookupHelper.OnQueryCompleteListener() {
261 private final Handler mHandler = new Handler(Looper.getMainLooper());
263 private final List<Call> mConferenceableCalls = new ArrayList<>();
310 private DisconnectCause mDisconnectCause = new DisconnectCause(DisconnectCause.UNKNOWN);
312 private Bundle mIntentExtras = new Bundle();
327 new ConcurrentHashMap<Listener, Boolean>(8, 0.9f, 1));
355 private List<Call> mChildCalls = new LinkedList<>();
449 * Persists the specified parameters and initializes the new instance.
483 mState = isConference ? CallState.ACTIVE : CallState.NEW;
500 mAnalytics = new Analytics.CallInfo()
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceManagerTest.java 74 new Thread() {
83 new Thread() {
94 notifyFailed(new IllegalStateException("failed"));
101 notifyFailed(new IllegalStateException("failed"));
107 notifyFailed(new IllegalStateException("failed"));
112 Service a = new NoOpDelayedService(150);
113 Service b = new NoOpDelayedService(353);
114 ServiceManager serviceManager = new ServiceManager(asList(a, b));
127 final Service b = new NoOpDelayedService(353) {
134 Service a = new NoOpDelayedService(150)
    [all...]
AbstractServiceTest.java 52 NoOpService service = new NoOpService();
55 assertEquals(State.NEW, service.state());
78 NoOpService service = new NoOpService();
88 NoOpService service = new NoOpService();
98 NoOpService service = new NoOpService();
116 NoOpService service = new NoOpService();
126 NoOpService service = new NoOpService();
138 NoOpService service = new NoOpService();
171 ManualSwitchedService service = new ManualSwitchedService();
202 ManualSwitchedService service = new ManualSwitchedService()
    [all...]
ThreadFactoryBuilderTest.java 36 private final Runnable monitoredRunnable = new Runnable() {
43 new UncaughtExceptionHandler() {
53 builder = new ThreadFactoryBuilder();
74 // Creating a new thread from the same ThreadFactory will have the same
182 ThreadFactory backingThreadFactory = new ThreadFactory() {
184 Thread thread = new Thread(r);
201 assertSame(Thread.State.NEW, thread.getState());
210 NullPointerTester npTester = new NullPointerTester();
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaClassFixer.java 52 private final HashSet<String> implementedMethods = new HashSet<>();
53 private final LinkedHashSet<String> methodsToMoveIn = new LinkedHashSet<>();
126 new LambdaClassMethodRewriter(super.visitMethod(access, name, desc, signature, exceptions));
130 new UseBridgeMethod(methodVisitor, lambdaInfo, access, name, desc, signature, exceptions);
133 methodVisitor = new LambdaClassInvokeSpecialRewriter(methodVisitor);
165 new String[0]);
166 codeBuilder.visitTypeInsn(Opcodes.NEW, getInternalName());
194 CopyOneMethod copier = new CopyOneMethod(methodName);
206 bytecode.accept(new CopyBridgeMethods(), ClassReader.SKIP_DEBUG);
323 return new AvoidJacocoInit
    [all...]
  /frameworks/base/core/java/android/provider/
CallLog.java 133 * Intent intent = new Intent(Intent.ACTION_VIEW);
289 public static final String NEW = "new";
345 * Unlike the {@link #NEW} field, which requires the user to have acknowledged the
659 ContentValues values = new ContentValues(6);
675 values.put(NEW, Integer.valueOf(1));
694 new String[] { Phone._ID },
696 new String[] { String.valueOf(ci.contactIdOrZero),
704 new String[] { Phone._ID },
706 new String[] { String.valueOf(ci.contactIdOrZero) }
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
opnames.go 93 ONEW: "NEW",
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
opnames.go 93 ONEW: "NEW",
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 54 #define NEW(p) if (((p) = memget(sizeof *(p))) != NULL) \
  /development/scripts/
reverse_tether.sh 166 sudo iptables -A FORWARD -m state --state NEW -i $HOST_DEV -j ACCEPT
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
FuturesCombineBenchmark.java 44 return Futures.transform(trigger, new AsyncFunction<Object, V>() {
57 NEW {
70 private static final Executor INLINE_EXECUTOR = new Executor() {
97 futuresBuilder.add(Futures.immediateFailedFuture(new Exception("boom")));
128 Exception throwable = new Exception("boom");
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 36 (new InstructionPrinter(stream)).print(method);
52 throw new RuntimeException(e);
63 throw new IllegalArgumentException("Invalid opcode, opcode: " + opcode + " pos: "+ pos);
127 throw new RuntimeException("Bad opcode 186");
128 case NEW:
166 throw new RuntimeException("Invalid WIDE operand");
190 throw new RuntimeException("Invalid array type");
224 StringBuffer buffer = new StringBuffer("lookupswitch {\n");
243 StringBuffer buffer = new StringBuffer("tableswitch {\n");
278 throw new RuntimeException("bad LDC: " + tag)
    [all...]
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 32 * Whenever an expression, such as a method call and a <tt>new</tt>
44 * cm.instrument(new ExprEditor() {
87 LoopContext context = new LoopContext(codeAttr.getMaxLocals());
96 Handler h = new Handler(et, i, iterator, clazz, minfo);
116 throw new CannotCompileException(b.getMessage(), b);
190 expr = new MethodCall(pos, iterator, clazz, minfo);
196 expr = new FieldAccess(pos, iterator, clazz, minfo, c);
199 else if (c == Opcode.NEW) {
201 context.newList = new NewOp(context.newList, pos,
209 expr = new NewExpr(pos, iterator, clazz, minfo
    [all...]
  /external/v8/src/parsing/
token.h 127 K(NEW, "new", 0) \
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CallLogInteraction.java 65 return number == null ? null : new Intent(Intent.ACTION_CALL).setData(
101 final StringBuilder callDetail = new StringBuilder();
180 return mValues.getAsBoolean(Calls.NEW);
  /prebuilts/go/darwin-x86/src/crypto/rsa/
pss_test.go 60 hash := sha1.New()
64 encoded, err := emsaPSSEncode(hashed, 1023, salt, sha1.New())
72 if err = emsaPSSVerify(hashed, encoded, 1023, len(salt), sha1.New()); err != nil {
89 // new keys and signature blocks.
90 const newKeyMarker = "START NEW KEY"
91 const newSignatureMarker = "START NEW SIGNATURE"
131 h := hash.New()
139 key = new(PublicKey)
172 h := hash.New()
194 h := hash.New()
    [all...]
  /prebuilts/go/linux-x86/src/crypto/rsa/
pss_test.go 60 hash := sha1.New()
64 encoded, err := emsaPSSEncode(hashed, 1023, salt, sha1.New())
72 if err = emsaPSSVerify(hashed, encoded, 1023, len(salt), sha1.New()); err != nil {
89 // new keys and signature blocks.
90 const newKeyMarker = "START NEW KEY"
91 const newSignatureMarker = "START NEW SIGNATURE"
131 h := hash.New()
139 key = new(PublicKey)
172 h := hash.New()
194 h := hash.New()
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/modula3/
modula3.swg 455 %{*($&1_ltype*)&$result = new $1_ltype((const $1_ltype &)$1); %}
634 RETURN NEW(REF $1_basetype, $imcall);
637 RETURN NEW($1_basetype, $imcall, $owner);
641 RETURN (cPtr = IntPtr.Zero) ? null : NEW($1_basetype, cPtr, $owner);
681 RETURN new $&*1_mangle($imcall, true);
685 RETURN new $1_basetype($imcall, $owner);
690 RETURN (cPtr == IntPtr.Zero) ? null : new $1_basetype(cPtr, $owner);
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/ui/
MissedCallNotifierImpl.java 100 return new Notification.Builder(context);
104 private static final String[] CALL_LOG_PROJECTION = new String[] {
114 " AND new=1" +
142 new DefaultNotificationBuilderFactory());
156 mMissedCallCounts = new ConcurrentHashMap<>();
171 AsyncTask.execute(new Runnable("MCNI.mMCAR", null /*lock*/) {
174 // Clear the list of new missed calls from the call log.
175 ContentValues values = new ContentValues();
176 values.put(Calls.NEW, 0);
178 StringBuilder where = new StringBuilder()
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-spi-0.9.0.M2.jar 
  /dalvik/dx/src/com/android/dx/cf/code/
ByteOps.java 214 public static final int NEW = 0xbb;
348 private static final int[] OPCODE_INFO = new int[256];
351 private static final String[] OPCODE_NAMES = new String[256];
541 "bb p:c new;" +
  /external/guice/lib/build/
asm-5.0.3.jar 

Completed in 667 milliseconds

1 23 4 5 6 7 8 91011>>