HomeSort by relevance Sort by last modified time
    Searched refs:NEW (Results 101 - 125 of 415) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/tools/common/m2/repository/asm/asm/3.3/
asm-3.3.jar 
  /prebuilts/tools/common/m2/repository/asm/asm/3.3.1/
asm-3.3.1.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/4.0/
asm-4.0.jar 
  /prebuilts/tools/common/offline-m2/org/ow2/asm/asm/4.0/
asm-4.0.jar 
  /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...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Frame.java 69 * Constructs a new frame with the given size.
75 this.values = new Value[nLocals + nStack];
80 * Constructs a new frame that is identical to the given frame.
119 throw new IndexOutOfBoundsException("Trying to access an inexistant local variable");
128 * @param value the new value of this local variable.
135 throw new IndexOutOfBoundsException("Trying to access an inexistant local variable");
177 throw new IndexOutOfBoundsException("Cannot pop operand off an empty stack.");
190 throw new IndexOutOfBoundsException("Insufficient maximum stack size.");
279 throw new AnalyzerException("Illegal use of POP");
285 throw new AnalyzerException("Illegal use of POP2");
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckMethodAdapter.java 88 TYPE = new int[s.length()];
96 // int[] TYPE = new int[] {
284 // 3, //NEW
307 * Constructs a new {@link CheckMethodAdapter} object.
313 this.labels = new HashMap();
322 return new CheckAnnotationAdapter(mv.visitAnnotation(desc, visible));
327 return new CheckAnnotationAdapter(mv.visitAnnotationDefault(), false);
337 return new CheckAnnotationAdapter(mv.visitParameterAnnotation(parameter,
345 throw new IllegalArgumentException("Invalid attribute (must not be null)");
388 throw new IllegalArgumentException("Invalid frame type " + type);
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/tests/calllog/
FillCallLogTestActivity.java 75 private static final Random RNG = new Random();
76 private static final int[] CALL_TYPES = new int[] {
119 mAddButton.setOnClickListener(new View.OnClickListener(){
126 throw new RuntimeException("Number too large. Max=100");
160 mCustomCallTypeTextView.addTextChangedListener(new TextWatcher() {
200 new CallLogLoaderListener(count));
227 ContentValues values = new ContentValues();
256 ContentValues[] values = new ContentValues[count];
258 values[i] = new ContentValues();
264 new AsyncCallLogInserter(values).execute(new Void[0])
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallLogProviderTest.java 54 private static final String[] VOICEMAIL_PROVIDER_SPECIFIC_COLUMNS = new String[] {
113 EvenMoreAsserts.assertThrows(IllegalArgumentException.class, new Runnable() {
129 ContentValues values = new ContentValues();
178 CallerInfo ci = new CallerInfo();
182 final ComponentName sComponentName = new ComponentName(
185 PhoneAccountHandle subscription = new PhoneAccountHandle(
194 ContentValues values = new ContentValues();
252 String[] projection = new String[] {Calls._ID, Calls.TYPE};
297 IllegalArgumentException.class, new Runnable() {
325 final ContentValues values = new ContentValues()
    [all...]
ContactsDatabaseHelperUpgradeTest.java 123 TableStructure calls = new TableStructure(mDb, "calls");
126 TableStructure voicemailStatus = new TableStructure(mDb, "voicemail_status");
142 BufferedReader r = new BufferedReader(new InputStreamReader(input));
148 throw new RuntimeException(e.toString());
155 private static final TableColumn[] PROPERTIES_COLUMNS = new TableColumn[] {
156 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_KEY, TEXT, false, null),
157 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_VALUE, TEXT, false, null),
160 private static final TableColumn[] ACCOUNTS_COLUMNS = new TableColumn[] {
161 new TableColumn(AccountsColumns._ID, INTEGER, false, null)
    [all...]
VoicemailProviderTest.java 85 // We create on purpose a new set of ContentValues here, because the code above modifies
101 Cursor c = mResolver.query(uri, projection, Calls.NEW + "=0", null,
125 byte[] inBuffer = new byte[4];
136 ContentValues values = new ContentValues();
154 mResolver.update(uri, new ContentValues(), null, null);
167 mResolver.update(uri, new ContentValues(), null, null);
230 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() {
237 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() {
244 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() {
251 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
BluetoothPhoneServiceImpl.java 90 public final IBluetoothHeadsetPhone.Stub mBinder = new IBluetoothHeadsetPhone.Stub() {
288 * headset with the new states.
291 public CallsManagerListener mCallsManagerListener = new CallsManagerListenerBase() {
321 // If a call is being put on hold because of a new connecting call, ignore the
362 Log.d(this, "Ignoring onIsConferenceChanged from child call with new parent");
382 new BluetoothProfile.ServiceListener() {
386 setBluetoothHeadset(new BluetoothHeadsetProxy((BluetoothHeadset) proxy));
402 public final BroadcastReceiver mBluetoothAdapterReceiver = new BroadcastReceiver() {
424 private Map<Call, Integer> mClccIndexMap = new HashMap<>();
457 IntentFilter intentFilter = new IntentFilter(BluetoothAdapter.ACTION_STATE_CHANGED)
    [all...]
  /external/libpng/contrib/libtests/
pngimage.c 174 * new low-order bits.
352 #define NEW(type) ((type *)malloc(sizeof (type)))
434 add = NEW(struct buffer_list);
569 /* Used to write a new image (the original info_ptr is used) */
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
BluetoothPhoneServiceTest.java 90 private final TelecomSystem.SyncRoot mLock = new TelecomSystem.SyncRoot() {
112 mBluetoothPhoneService = new BluetoothPhoneServiceImpl(mContext, mLock, mMockCallsManager,
238 ArrayList<Call> calls = new ArrayList<>();
259 ArrayList<Call> calls = new ArrayList<>();
271 when(confCall1.getGatewayInfo()).thenReturn(new GatewayInfo(null, null,
273 when(confCall2.getGatewayInfo()).thenReturn(new GatewayInfo(null, null,
280 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{
306 ArrayList<Call> calls = new ArrayList<>();
318 when(foregroundCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null,
320 when(heldCall.getGatewayInfo()).thenReturn(new GatewayInfo(null, null
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/4.1/
asm-4.1.jar 
  /sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
android-support-v7-gridlayout.jar 
  /external/valgrind/drd/tests/
tsan_unittest.cpp 124 // Create a new test instead.
287 ar_[0] = new MyThread(f1);
288 ar_[1] = f2 ? new MyThread(f2) : NULL;
289 ar_[2] = f3 ? new MyThread(f3) : NULL;
290 ar_[3] = f4 ? new MyThread(f4) : NULL;
291 ar_[4] = f5 ? new MyThread(f5) : NULL;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 55 new CstType(Type.internClassName("java/lang/reflect/Array"));
62 new CstMethodRef(ARRAY_REFLECT_TYPE,
63 new CstNat(new CstString("newInstance"),
64 new CstString("(Ljava/lang/Class;[I)" +
139 throw new NullPointerException("methods == null");
143 throw new NullPointerException("ropper == null");
147 throw new NullPointerException("advice == null");
155 this.insns = new ArrayList<Insn>(25);
195 * Gets ready to start working on a new block. This will clear th
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 276 if (c == NEW)
599 Gap gap = new Gap();
688 byte[] newcode = new byte[codeLength + gapLength];
743 throw new BadBytecode("invalid opcode address");
767 // throw new BadBytecode(opcode);
774 throw new BadBytecode(opcode);
812 throw new RuntimeException("fatal error?");
823 byte[] newcode = new byte[codeLength + gapLength];
889 throw new AlignmentException();
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 49 throw new RuntimeException(e);
245 throw new BadBytecode("POP can not be used with a category 2 value, pos = " + pos);
254 throw new BadBytecode("DUP can not be used with a category 2 value, pos = " + pos);
263 throw new BadBytecode("DUP can not be used with a category 2 value, pos = " + pos);
299 throw new BadBytecode("Swap can not be used with category 2 values, pos = " + pos);
550 throw new RuntimeException(e);
576 throw new RuntimeException("Bad opcode 186");
577 case NEW:
589 throw new BadBytecode("Array length passed a non-array [pos = " + pos + "]: " + array);
652 throw new BadBytecode("Not an array! [pos = " + lastPos + "]: " + component)
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
Tracer.java 45 stackTypes = new TypeData[maxStack];
46 localsTypes = new TypeData[maxLocals];
56 stackTypes = new TypeData[size];
61 localsTypes = new TypeData[size2];
105 throw new BadBytecode("inconsistent stack height " + e.getMessage());
160 stackTypes[stackTop++] = new TypeData.NullType();
258 throw new BadBytecode("bad AALOAD");
260 stackTypes[s] = new TypeData.ArrayElement(data);
269 throw new RuntimeException("fatal");
279 stackTypes[stackTop++] = new TypeData.ClassName("java.lang.String")
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Frame.java 230 int[] b = new int[202];
244 // b = new int[] {
432 // 1, //NEW, // visitTypeInsn
545 outputLocals = new int[10];
549 int[] t = new int[Math.max(local + 1, 2 * n)];
558 * Pushes a new type onto the output frame stack.
565 outputStack = new int[10];
569 int[] t = new int[Math.max(outputStackTop + 1, 2 * n)];
583 * Pushes a new type onto the output frame stack.
722 * Adds a new type to the list of types on which a constructor is invoked in
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CodeEmitter.java 109 state = new State(ce.getClassInfo(), access, sig, exceptionTypes);
143 return new Block(this);
148 throw new IllegalStateException("end of block is unset");
195 throw new IllegalArgumentException("Bad comparison for type " + type);
301 mv.visitLdcInsn(new Integer(i));
309 mv.visitLdcInsn(new Integer(i));
317 mv.visitLdcInsn(new Long(value));
325 mv.visitLdcInsn(new Float(value));
332 mv.visitLdcInsn(new Double(value));
358 throw new IllegalStateException("no 'this' pointer within static method")
    [all...]
  /external/v8/src/parsing/
scanner.cc 1150 KEYWORD("new", Token::NEW) \
    [all...]

Completed in 1130 milliseconds

1 2 3 45 6 7 8 91011>>