/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsDatabaseHelperUpgradeTest.java | 147 TableStructure calls = new TableStructure(mDb, "calls"); 150 TableStructure voicemailStatus = new TableStructure(mDb, "voicemail_status"); 227 private static final TableColumn[] PROPERTIES_COLUMNS = new TableColumn[] { 228 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_KEY, TEXT, false, null), 229 new TableColumn(PropertyUtils.PropertiesColumns.PROPERTY_VALUE, TEXT, false, null), 232 private static final TableColumn[] ACCOUNTS_COLUMNS = new TableColumn[] { 233 new TableColumn(AccountsColumns._ID, INTEGER, false, null), 234 new TableColumn(AccountsColumns.ACCOUNT_NAME, TEXT, false, null), 235 new TableColumn(AccountsColumns.ACCOUNT_TYPE, TEXT, false, null), 236 new TableColumn(AccountsColumns.DATA_SET, TEXT, false, null) [all...] |
VoicemailProviderTest.java | 88 // We create on purpose a new set of ContentValues here, because the code above modifies 106 Cursor c = mResolver.query(uri, projection, Calls.NEW + "=0", null, 130 byte[] inBuffer = new byte[4]; 142 ContentValues values = new ContentValues(); 164 mResolver.update(uri, new ContentValues(), null, null); 177 mResolver.update(uri, new ContentValues(), null, null); 234 mResolver.update(anotherVoicemail, new ContentValues(), null, null); 238 ContentValues values = new ContentValues(); 264 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() { 271 EvenMoreAsserts.assertThrows(SecurityException.class, new Runnable() [all...] |
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 243 static final Printer LOG_PRINTER = new LogPrinter(Log.DEBUG, GridLayout.class.getName()); 244 static final Printer NO_PRINTER = new Printer() { 270 final Axis mHorizontalAxis = new Axis(true); 271 final Axis mVerticalAxis = new Axis(false); 726 lp.setRowSpecSpan(new Interval(row, row + rowSpan)); 727 lp.setColumnSpecSpan(new Interval(col, col + colSpan)); 748 int[] maxSizes = new int[count]; 832 throw new IllegalArgumentException(msg + ". "); [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 228 static final Printer LOG_PRINTER = new LogPrinter(Log.DEBUG, GridLayout.class.getName()); 229 static final Printer NO_PRINTER = new Printer() { 255 final Axis mHorizontalAxis = new Axis(true); 256 final Axis mVerticalAxis = new Axis(false); 714 lp.setRowSpecSpan(new Interval(row, row + rowSpan)); 715 lp.setColumnSpecSpan(new Interval(col, col + colSpan)); 736 int[] maxSizes = new int[count]; 808 throw new IllegalArgumentException(msg + ". "); 846 return new LayoutParams(); 851 return new LayoutParams(getContext(), attrs) [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
BytecodeArray.java | 40 public static final Visitor EMPTY_VISITOR = new BaseVisitor(); 60 throw new NullPointerException("bytes == null"); 64 throw new NullPointerException("pool == null"); 145 * set new bits in the work set during the process. 153 throw new NullPointerException("visitor == null"); 758 case ByteOps.NEW: 777 throw new ParseException("invokedynamic not supported"); 810 SimException se = new SimException(ex) [all...] |
/prebuilts/tools/common/m2/repository/org/beanshell/bsh/2.0b4/ |
bsh-2.0b4.jar | |
/prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/ |
javacc-5.0.jar | |
/external/doclava/src/com/google/doclava/parser/ |
JavaLexer.java | 86 public static final int NEW=58; 155 this(input, new RecognizerSharedState()); 240 new NoViableAltException("", 4, 0, input); 312 new EarlyExitException(2, input); 349 new EarlyExitException(3, input); 384 new NoViableAltException("", 5, 1, input); 391 new NoViableAltException("", 5, 0, input); 431 MismatchedSetException mse = new MismatchedSetException(null,input); 455 MismatchedSetException mse = new MismatchedSetException(null,input); 502 new EarlyExitException(6, input) [all...] |
/external/guice/lib/build/ |
jarjar-1.1.jar | |
/external/testng/ant/3rdparty/ |
cobertura.jar | |
/external/testng/lib-supplied/ |
jarjar-issue-21.jar | |
/prebuilts/tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.3/ |
jarjar-1.3.jar | |
/prebuilts/tools/common/m2/repository/org/gradle/jarjar/jarjar/1.2.1/ |
jarjar-1.2.1.jar | |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
ItsService.java | 143 private HandlerThread mSaveThreads[] = new HandlerThread[MAX_NUM_OUTPUT_SURFACES]; 144 private Handler mSaveHandlers[] = new Handler[MAX_NUM_OUTPUT_SURFACES]; 153 private LinkedList<Integer> mInflightImageSizes = new LinkedList<>(); 155 new LinkedBlockingDeque<ByteBuffer>(); 156 private final Object mSocketWriteEnqueueLock = new Object(); 157 private final Object mSocketWriteDrainLock = new Object(); 160 new LinkedBlockingDeque<Object[]>(); 162 private AtomicInteger mCountCallbacksRemaining = new AtomicInteger(); 163 private AtomicInteger mCountRawOrDng = new AtomicInteger(); 164 private AtomicInteger mCountRaw10 = new AtomicInteger() [all...] |
/packages/services/Telecomm/src/com/android/server/telecom/ |
CallsManager.java | 164 * call should be ended first to make room for a new outgoing call. 182 {CallState.NEW, CallState.CONNECTING, CallState.SELECT_PHONE_ACCOUNT, CallState.DIALING, 191 sAnalyticsTechnologyMap = new HashMap<>(5); 201 * The main call repository. Keeps an instance of all live calls. New incoming and outgoing 209 new ConcurrentHashMap<Call, Boolean>(8, 0.9f, 1)); 218 * The current telecom call ID. Used when creating new instances of {@link Call}. Should 240 new ConcurrentHashMap<CallsManagerListener, Boolean>(16, 0.9f, 1)); 260 private final Set<Call> mLocallyDisconnectingCalls = new HashSet<>(); 261 private final Set<Call> mPendingCallsToDisconnect = new HashSet<>(); 263 private final Handler mHandler = new Handler(Looper.getMainLooper()) [all...] |
/prebuilts/tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.4/ |
jarjar-1.4.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.objectweb.asm_3.2.0.v200909071300.jar | |
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar | |
/external/v8/src/parsing/ |
parser-base.h | 323 return new (zone) Scope(zone, parent, BLOCK_SCOPE); 683 return new (zone()) DeclarationScope(zone(), ast_value_factory()); 687 return new (zone()) DeclarationScope(zone(), scope(), BLOCK_SCOPE); 691 return new (zone()) ModuleScope(parent, ast_value_factory()); 695 return new (zone()) DeclarationScope(zone(), parent, EVAL_SCOPE); 712 return new (zone()) Scope(zone(), parent, scope_type); 718 new (zone()) DeclarationScope(zone(), scope(), FUNCTION_SCOPE, kind); [all...] |
/packages/providers/ContactsProvider/tests/assets/upgradeTest/ |
contacts2_1108.sql | 45 CREATE TABLE calls (_id INTEGER PRIMARY KEY AUTOINCREMENT,number TEXT,presentation INTEGER NOT NULL DEFAULT 1,post_dial_digits TEXT NOT NULL DEFAULT '',date INTEGER,duration INTEGER,data_usage INTEGER,type INTEGER,features INTEGER NOT NULL DEFAULT 0,subscription_component_name TEXT,subscription_id TEXT,phone_account_address TEXT,phone_account_hidden INTEGER NOT NULL DEFAULT 0,sub_id INTEGER DEFAULT -1,new INTEGER,name TEXT,numbertype INTEGER,numberlabel TEXT,countryiso TEXT,voicemail_uri TEXT,is_read INTEGER,geocoded_location TEXT,lookup_uri TEXT,matched_number TEXT,normalized_number TEXT,photo_id INTEGER NOT NULL DEFAULT 0,photo_uri TEXT,formatted_number TEXT,_data TEXT,has_content INTEGER,mime_type TEXT,source_data TEXT,source_package TEXT,transcription TEXT,state INTEGER,dirty INTEGER NOT NULL DEFAULT 0,deleted INTEGER NOT NULL DEFAULT 0, add_for_all_users INTEGER NOT NULL DEFAULT 1); 150 CREATE TRIGGER raw_contacts_marked_deleted AFTER UPDATE ON raw_contacts BEGIN UPDATE raw_contacts SET version=OLD.version+1 WHERE _id=OLD._id AND NEW.deleted!= OLD.deleted; END; [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-inject-bean/1.4.2/ |
sisu-inject-bean-1.4.2.jar | |
/prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-inject-bean/1.4.2/ |
sisu-inject-bean-1.4.2.jar | |
/external/owasp/sanitizer/tools/findbugs/lib/ |
bcel.jar | |
/prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/ |
bcel-2.0.1.jar | |
/prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel-findbugs/6.0/ |
bcel-findbugs-6.0.jar | |