HomeSort by relevance Sort by last modified time
    Searched full:database (Results 1426 - 1450 of 2940) sorted by null

<<51525354555657585960>>

  /frameworks/base/docs/html/sdk/api_diff/8/changes/
alldiffs_index_changes.html 137 <!-- Package android.database -->
138 <A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
139 <!-- Package android.database.sqlite -->
140 <A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
293 &nbsp;&nbsp;<nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.compile_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
294 (<code>String, boolean</code>)&nbsp;in&nbsp;android.database.sqlite.SQLiteProgram
328 <A HREF="android.database.DatabaseUtils.html" class="hiddenlink" target="rightframe">DatabaseUtils</A><br
    [all...]
alldiffs_index_additions.html 314 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.CONFLICT_ABORT" class="hiddenlink" target="rightframe">CONFLICT_ABORT</A>
317 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.CONFLICT_FAIL" class="hiddenlink" target="rightframe">CONFLICT_FAIL</A>
320 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.CONFLICT_IGNORE" class="hiddenlink" target="rightframe">CONFLICT_IGNORE</A>
323 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.CONFLICT_NONE" class="hiddenlink" target="rightframe">CONFLICT_NONE</A>
326 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.CONFLICT_REPLACE" class="hiddenlink" target="rightframe">CONFLICT_REPLACE</A
    [all...]
  /external/webkit/Source/WebKit/gtk/po/
id.po 298 msgid "Web Database Usage"
306 msgid "Web Database Quota"
310 msgid "The web database quota of the security origin in bytes"
339 msgid "The security origin of the database"
347 msgid "The name of the Web Database database"
355 msgid "The display name of the Web Storage database"
363 msgid "The expected size of the Web Database database"
371 msgid "The current size of the Web Database database
    [all...]
pl.po 304 msgid "Web Database Usage"
312 msgid "Web Database Quota"
316 msgid "The web database quota of the security origin in bytes"
345 msgid "The security origin of the database"
353 msgid "The name of the Web Database database"
361 msgid "The display name of the Web Storage database"
369 msgid "The expected size of the Web Database database"
377 msgid "The current size of the Web Database database
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_mac.cc 412 // Pull out the database blacklist items, since they are used as-is rather
434 // Add in the blacklist entries from the database.
820 // database entry.
853 // items with database entries that weren't in the delete range. Instead,
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store.cc 266 // Open database handle.
270 // Load data from the database.
277 // Close database handle.
288 // Something's gone wrong. Nuke the database and try again.
290 LOG(ERROR) << "Sync database " << backing_filepath_.value()
505 VLOG(1) << "Old/null sync database, version " << version_on_disk;
506 // Delete the existing database (if any), and create a fresh one.
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebsettings.cpp 546 * WebKitWebSettings:enable-html5-database:
548 * Whether to enable HTML5 client-side SQL database support. Client-side
549 * SQL database allows web pages to store structured data and be able to
556 g_param_spec_boolean("enable-html5-database",
557 _("Enable HTML5 Database"),
558 _("Whether to enable HTML5 database support"),
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/15/changes/
alldiffs_index_changes.html 78 <!-- Package android.database -->
79 <A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
165 &nbsp;&nbsp;<A HREF="android.database.CursorWindow.html" class="hiddenlink" target="rightframe">android.database</A><br>
167 &nbsp;&nbsp;<nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.ctor_changed(boolean)" class="hiddenlink" target="rightframe">CursorWindow
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 24 import android.database.Cursor;
25 import android.database.sqlite.SQLiteDatabase;
73 // true if the database has been modified in the current MTP session
198 // for backward compatibility - read device properties from sqlite database
723 // now rename the file. make sure this succeeds before updating database
737 // finally update database
    [all...]
  /frameworks/base/media/jni/
android_mtp_MtpDatabase.cpp 78 MtpDatabase* getMtpDatabase(JNIEnv *env, jobject database) {
79 return (MtpDatabase *)env->GetIntField(database, field_context);
1073 MyMtpDatabase* database = new MyMtpDatabase(env, thiz); local
1081 MyMtpDatabase* database = (MyMtpDatabase *)env->GetIntField(thiz, field_context); local
    [all...]
  /packages/providers/DownloadProvider/docs/
index.html 97 <li> <a href="#Database_formats">Database formats</a>
180 to test the database upgrades from 1.0 database scheme to a new scheme, any work done in Cupcake will
181 have to work within the existing 1.0 database scheme.
247 The <code>URI</code> column is visible to the initiating application, which is a mild security risk. It should be hidden, but the OTA update mechanism relies on it to check duplicate downloads and to display the download that's currently ongoing in the settings app. If another string column was exposed to the initiating applications, the OTA update mechanism could use that one, and <code>URI</code> could then be hidden. For Cupcake, without changing the database schema, the <code>ENTITY</code> column could be re-used as it's currently unused.
260 If the <code>URI</code> column gets hidden, it could be used to store the intermediate URIs. After 1.0 the only available integer columns were <code>METHOD</code> and <code>CONTROL</code>. <code>CONTROL</code> was re-exposed to applications and can't be used. <code>METHOD</code> is slated to be re-used for 503 retry-after delays. It could be split into two halves, one for retry-after and one for the redirect count. It would make more sense to count the redirect loop with <code>FAILED_CONNECTIONS</code>, but since there's already quite some code using it it'd take a bit more effort. Ideally handling of redirects would be delayed until a future release, with a cleanup of the database schema (going along with the cleanup of the handling of filenames).
262 Because of the pattern used to read/write <code>DownloadInfo</code> and <code>DownloadProvider</code>, it's impractical to store multiple small integers into a large one. Therefore, since there are no integer columns left in the database, redirects will have to wait beyond Cupcake.
    [all...]
  /external/webkit/Source/WebCore/page/
DOMWindow.cpp 48 #include "Database.h"
1362 RefPtr<Database> database = 0; local
    [all...]
  /external/chromium/chrome/browser/
cookies_tree_model.cc 581 return DATABASE;
583 return DATABASE; // close enough
585 return DATABASE; // ditto
587 return DATABASE; // ditto
589 return DATABASE; // ditto
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
ConfigResults.java 41 * Complete results with additional database information.
196 * the given numbers as soon as there are enough builds in the database.
316 * build which has performance results in the database.
625 * Set the configuration value from database information
638 * Set the configuration value from database information
  /external/webkit/Source/WebCore/inspector/
InspectorInstrumentation.h 44 class Database;
151 #if ENABLE(DATABASE)
152 static void didOpenDatabase(ScriptExecutionContext*, PassRefPtr<Database>, const String& domain, const String& name, const String& version);
271 #if ENABLE(DATABASE)
272 static void didOpenDatabaseImpl(InspectorAgent*, PassRefPtr<Database>, const String& domain, const String& name, const String& version);
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 61 #if ENABLE(DATABASE)
397 #if ENABLE(DATABASE)
413 // Only update estimatedSize if we are trying to create a a new database, i.e. the usage for the database is 0.
442 // Otherwise, give up and deny the new database. :(
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarms.java 28 import android.database.Cursor;
140 // Private method to get a more limited set of alarms from the database.
189 * Return an Alarm object representing the alarm id in the database.
295 // non-repeating alarm is not in the active list in the database.
543 // The time in the database is either 0 (repeating) or a specific time
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 23 import android.database.Cursor;
235 * Restore a Mailbox from the database, given its unique id
267 * Returns a Mailbox from the database, given its pathname and account id. All mailbox
299 * Returns a {@link Mailbox} for the given path. If the path is not in the database, a new
394 // Fallback to querying the database directly.
  /packages/apps/Email/src/com/android/email/activity/
MailboxFragmentAdapter.java 22 import android.database.Cursor;
23 import android.database.CursorWrapper;
24 import android.database.MatrixCursor;
25 import android.database.MatrixCursor.RowBuilder;
26 import android.database.MergeCursor;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java 31 import android.database.CharArrayBuffer;
32 import android.database.Cursor;
33 import android.database.DatabaseUtils;
34 import android.database.SQLException;
35 import android.database.sqlite.SQLiteConstraintException;
36 import android.database.sqlite.SQLiteDatabase;
37 import android.database.sqlite.SQLiteDoneException;
38 import android.database.sqlite.SQLiteException;
39 import android.database.sqlite.SQLiteOpenHelper;
40 import android.database.sqlite.SQLiteQueryBuilder
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
methods_index_all.html 139 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)" class="hiddenlink" target="rightframe"><b>beginTransactionWithListener</b>
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
fields_index_all.html 469 <nobr><A HREF="android.database.Cursor.html#android.database.Cursor.FIELD_TYPE_BLOB" class="hiddenlink" target="rightframe">FIELD_TYPE_BLOB</A>
471 <nobr><A HREF="android.database.Cursor.html#android.database.Cursor.FIELD_TYPE_FLOAT" class="hiddenlink" target="rightframe">FIELD_TYPE_FLOAT</A>
473 <nobr><A HREF="android.database.Cursor.html#android.database.Cursor.FIELD_TYPE_INTEGER" class="hiddenlink" target="rightframe">FIELD_TYPE_INTEGER</A>
475 <nobr><A HREF="android.database.Cursor.html#android.database.Cursor.FIELD_TYPE_NULL" class="hiddenlink" target="rightframe">FIELD_TYPE_NULL</A>
477 <nobr><A HREF="android.database.Cursor.html#android.database.Cursor.FIELD_TYPE_STRING" class="hiddenlink" target="rightframe">FIELD_TYPE_STRING</A
    [all...]
  /dalvik/hit/samples/
android.hprof 5 JAVA PROFILE 1.0.3???!v[?id_aa_signatureTimeStampTokenxypSTOP v%?messagep-CursorWindow.javavrhKEY_CIPHER t ?AndroidManifest_sharedUserIds@xonAttachedToWindowp?DdmHandleHeap.java/qu?org.apache.http.impl.conn.AbstractPoolEntrySn?(Landroid/content/Context;Ljava/lang/String;)Landroid/content/IContentProvider;v?(mCacheMimeTypeColIndexq?8AbstractMessageWriter.java w=hmImeiSvwPfadingEdgeLength v??sThenTime.u?android.database.ContentObserver$Transportt?XGL_CURRENT_TEXTURE_COORDSw??BCCv?@SETTINGS_CONTRIBUTORS_URLu??CHUNK_WAITv?8READ_ACCESSr^?populateFromCache(r?()Landroid/content/res/AssetManager;Is<(Ljava/lang/Class;Landroid/content/Context;)Landroid/app/Application; q?xreadUTFrC?HeaderViewListAdapter.java wr?mPrompt!tGridLayoutAnimation_directionr??mPasskeyAgentRequestData qTandroid.ddm.DdmHandleAppNamev?DATE_MODIFIEDw?hPREVIOUSLY_SENT_DATEu?Pjava.lang.reflect.Modifiers??YEARw?@validationFeaturer?xWINDOW_HIERARCHY_TAGs?Bs?xC(s?android.app.IAlarmManager$Stub$Proxys??Es?HFvG?Dn?0(Landroid/os/Message;)Vs??Is?Jx?Lx?OrfHProtocolVersion.java$r"?android.database.BulkCursorProxyr8?trimStateSetv?Sx?Ts??Vt?GL_DEPTH_ATTACHMENT_OESAq?(Landroid/app/ActivityThread;Landroid/app/ActivityThread$1;)Vu8GRAVITY_DEATH_STAR_Is??Z v?NO_IDsn?(Landroid/content/Context;ILandroid/content/Intent;Landroid/app/PendingIntent$OnFinished;Landroid/os/Handler;)Vr"@getColumnNamesr?PmInstrumentedAppDirq?(ReflectionAccessImpl.javar?0br?crv?d+v!?WIFI_WATCHDOG_BACKGROUND_CHECK_DELAY_MSv?0mPanelChordingKeywA?ar?pfillToGalleryRightq?TypedValue.java%r??android.app.ActivityManagerNativej??Resources.javasZ?h t=PSlidingDrawer_animateOnClicku?0iu??m q?((I)[Cvc?BERv?YOUTUBE_MOST_DISCUSSED_URLv? FORMAT_24HOURxx?ew?u [S?(I)[Iw?@vr??(ILjava/lang/String;)VGq,(Landroid/app/ActivityThread$ActivityRecord;)Landroid/app/Activity;s?xs?(y r?HmWakeLockr??GPS_DELETE_HEALTH"w??org.apache.http.HttpConnectionsSXFileURLConnection.javax.?metricsCachex??NUM_ENTRIES_TO_LOADwa?ZONE_OFFSET t??S_IXOTHr??GPS_DELETE_RTI v??BEGINs??java.lang.CharSequencev?mFlingProfilingStartedx `HTTPu?pMETADATA_KEY_NUM_TRACKSs?java.lang.ProcessManagerq?KeyEvent.java(p android.content.ContentProviderProxy)x @org.apache.http.message.LineFormatterx~LONG_PRESS vxenumSizerw?readSparseArray s?0contextsv??mHttpAuthLockw?PDU_COLUMN_REPORT_ALLOWEDsn?childrenThreads,qd?(Ljava/lang/Runnable;)Ljava/lang/Thread;"sO?(ILandroid/util/TypedValue;Z)V*viXandroid.server.search.SearchableInfo$1"r?h(ILandroid/util/TypedValue;Z)Zw??MILLISECONDS_PER_400_YEARS$w?xjava.util.AbstractSequentialList w?xSTOREr"(ByteBuffer.javau?mNinePatchq?@java.net.Inet4Address5x;0com.google.android.googleapps.IGoogleLoginServicev?SPAN_EXCLUSIVE_INCLUSIVErm`(Ljava/lang/String;I)I v?XmReleaser r?pmaxChars(v8TRUNCATE_HISTORY_PROJECTION_ID_INDEXv?TEXT_AUTO_PUNCTUATEv?8mMotionViewOriginalTopv??KEYCODE_CLEARs`getObjectsx<?dalvik.system.DexFile[][qe?([Ljavax/net/ssl/KeyManager;[Ljavax/net/ssl/TrustManager;Ljava/security/SecureRandom;)V
80 x< opaques8bringTextIntoViewt"InsetDrawable_insetBottom&t;xSearchable_searchSuggestIntentData3v? android.provider.MediaStore$Images$ImageColumnss?XDEFAULT_COMPRESSIONw?8newGPRSStates? bydayCountw?hMMS_GENERIC:w?`org.apache.harmony.security.provider.cert.X509CertImpl s??AndroidManifestCategory_namew?absentRegistrants w??isNamedv?(mRecomputeGlobalAttributes5q??()Lorg/apache/harmony/kernel/vm/ReflectionAccess;u??ERROR_SEEK_NOT_SUPPORTEDqW?getMatchingMethodx??WEBSAFE_ALPHABETwc?mFormatBuilderw?@INITIAL_SIZEu?ACTION_ALARM_CHANGEDw<?LOCAL_DEBUG<sN?(Ljava/lang/String;Z)Lorg/apache/http/params/HttpParams;u?CHUNK_NHSGq?XLoggingPrintStream.java'q6?android.app.ApplicationThreadNative n??DefaultClientConnection.javas?SERVICE_ARGSq? ([BZ)Ljava/lang/String;vJsetLocalePermissionwK8CB_FACILITY_BAOICvSxNAME_ADDRESS_PATTERNx?8DATE_PATTERNS;r?(Lcom/android/internal/os/ZygoteConnection$Arguments;)V7q??org.apache.harmony.security.asn1.ASN1TypeCollectionq&?(Ljava/io/File;I)VPq??([Ljava/lang/Object;Ljava/lang/Class;[Ljava/lang/Class;IZ)Ljava/lang/Object;x+?AttributeValuexj?mPositiveListener$t?Pcom.google.android.jsr239.GLImplw>?mReportedRadioResetsw?0daylightSavingstATextView_bufferType&x"org.apache.http.message.LineParser s?HinLength sm?STATE_MAP x?nspCounts-s?`java.lang.ThreadGroup$ChildrenThreadsLockwu?mShrinkAllColumnsu?mResultWhow??MESSAGE_IDw??EVENT_SIM_READYx?XTRANSACTION_saveAuthTokenu??android.os.Bundle$1v??mLabelIdChatv?TABLE_NAME*sKandroid.database.sqlite.SQLiteClosable u?pdataDirw??DEFAULT_BOGONS_EMPTYv/?mSpanStartsq?nextElement!u??CATEGORY_SELECTED_ALTERNATIVEw HdirwGXmBroadcastingwtandroid.widget.TabWidget r??entriesv9STANDARD_ENCODINGn?XmlUtils.javas?xSTART_SERVICE_TRANSACTION*v?android.view.IWindowSession$Stub$Proxyr?(Ljava/lang/String;J)J x(PINSTANCEt?8GL_COLOR_ATTACHMENT8_OESriHscheduleLowMemoryv?@mEllipsizet?xGL_MODELVIEW_STACK_DEPTH$u?TRANSACTION_removeProximityAlertvahpkcs_9_at_localKeyIdr?(Ljava/lang/String;J)V8r?((Landroid/os/IBinder;)Landroid/app/IActivityManager;t!?ImageView_scaleTypesq??(Lorg/apache/http/util/CharArrayBuffer;Lorg/apache/http/message/ParserCursor;[C)Lorg/apache/http/NameValuePair;u?@ACTION_SCREEN_OFF w?dummyx|?SNIPPET_VIEWs??PROC_SPACE_TERM'q@X(Landroid/content/res/TypedArray;)V wahSEPTEMBERr?XmEventThreadHandlerr?pTRANSACTION_listBondings)u??android.app.ISearchManager$Stub$Proxys??IP_MULTICAST_IF2wy?REASON_DATA_DISABLED x+?CAPACITYZr7?(Lorg/apache/http/StatusLine;Lorg/apache/http/ReasonPhraseCatalog;Ljava/util/Locale;)Vu??javax.net.ssl.SSLContextSpiAr??org.apache.http.impl.client.DefaultProxyAuthenticationHandlerw?PCONTENT_TRANSFER_ENCODING$t?GradientDrawableGradient_centerX$tGradientDrawableGradient_centerY(u??android.content.ContentServiceNative4vKorg.apache.harmony.luni.util.TwoKeyHashMap$Entry%r?(Ljava/nio/charset/Charset;FF[B)Vv?VOLUME_ALARMv?MAX_RECYCLED
123 v?@EXRULEs?PmWindowManagerxu?AUTHTOKEN_KEYq6?access$300"sPjava.lang.Integer$valueOfCachewN?mCheckMarkResource v?`mChdirsx??mAssetItemAdapter r((Landroid/text/Spannable;I)V%x:?TRANSACTION_instrumentationStatust(?MenuGroup_enabledv*xydpiw)HmTrackballUpTimes??COMPLEX_UNIT_SP"t?pGL_PERSPECTIVE_CORRECTION_HINT v?ALBUM v?(SENTENCES8q??(Lcom/google/android/net/ParentalControl$Callback;)Vq]0()Landroid/os/Parcel; xshutdownslPinheritableValues q??doForgetxV?cookieComparator v?thePrefixw??EVENT_WAKE_LOCK_TIMEOUTs??STUB_INPUT_BUFFERs?AndroidManifestDatat?mValueCount!u?FLAG_RECEIVER_REGISTERED_ONLYv`xpkcs_9_at_challengePasswordv mDateReceivedMsIndex x?ASN1_RDN s??SEEK_ENDu ?SENSOR_ORIENTATION_RAWw??DEFAULT_CHUNK_LENGTHu?LIGHT_SUNLIGHT_MAXu?ERR_TYPE_GENERIC_PERMANENTvE@UPDATE_CACHE_AND_TEXT_ENTRYr?0permissionToSetIOt?hGL_RGB565_OESw??HTTP_USE_PROXYw.XmHeightCanMeasureq/newDecoder r??syncLocalDatabaseIfNecessary xTXmFieldId/u??android.text.TextUtils$SimpleStringSplitterw?hendDayOfWeek&q?`java.lang.IllegalArgumentException/x=?android.text.inputmethod.TextBoxAttribute$17q?xcom.android.vending.model.RequestSpecificPropertiess9?(I)Ljava/lang/StringBuffer;v?hdrawableStatebrNX(Ljava/lang/String;Lorg/apache/harmony/xml/ExpatReader;ZLjava/lang/String;Ljava/lang/String;)Vs$?requestWindowFeature'xn?android.widget.TextView$CharWrappert ?Animation_fillBeforew??useAttributes2Featurer??newHttpResponset??mNativeMovier??U_INVALID_FORMAT_ERRORv?KEYCODE_EQUALS7we(com.android.internal.os.RuntimeInit$UncaughtHandlerx??PLAIN_TEXT_TYPEsq definingMethod'u?`android.database.CrossProcessCursor"p0`android.app.ApplicationLoaders>rqcom.android.vending.model.RequestProperties$SessionContext s?UNICODE s?hfloat[]!x?Horg.apache.http.HeaderElement u??sServicev?NEXT_ALARM_FORMATTEDw pstepr?`marku?0DEBUG_CONFIGu?mDataSetObservablexq?mSubCategoryDisplayq?0android.view.KeyEvent$1xm?SMALL_NUMBERSs?ENUM_COMPARATORvZ?id_RSASSA_PSSqt?AssetTypeData.java u?pmString-qHhorg.apache.http.protocol.BasicHttpContextv?HmPersistent!v?handroid.webkit.WebSyncManagerw??maskv?ENABLED_FOCUSED_STATE_SET sqOTHERAq?org.apache.harmony.xnet.provider.jsse.TrustManagerFactoryImpltETextView_shadowColorwl?mPhoneStateRegistrantsx?SubjectDirectoryAttributesFr/p(Landroid/content/res/Resources;I)Landroid/content/res/TypedArray; p-x([B)Vt?@GL_SPOT_DIRECTIONr?KEYGUARD_SERVICE n?([B)Z7q?@()Lorg/apache/harmony/luni/platform/INetworkSystem;s!?AbstractHttpEntity.javaw^8mMaxDescentq??android.text.DynamicLayoutr?AUDIO_SERVICEs?HisDeserializedu??mOnErrorListenerv?(mDrawingCachew??oldReprIsValidsm?java.lang.reflect.Types@?(Ljava/net/InetAddress;I)Vv??sRefv?0mSpannedTextw^?mOrientation4n?(Landroid/os/Parcel;Landroid/content/Intent$1;)V q6?Byte.java r??EMPTY_MAP x?endDaten??CharsetDecoderICU.javav?YOUTUBE_TOP_RATED_URLwG@mButtonResourcev}PFOTA_INSTALLv??ABBREV_MONTH_FORMATt9?ScrollView_fillViewportv?mBackgroundDrawable r?nextChunksv?TYPE'qHandroid.app.IServiceConnection$Stubw??TAG_SEQUENCEOFr]XLocalDbSyncService.javav?android.text.Spanned r??authorityxSIZEOF_JBOOLEANw,0mSnapScrollModer??strmHandler r??orderw?MEMORY_TYPE_NORMAL x\?mRequestsw??MULTIPART_RELATED w??formatstE`TextView_shadowRadius?ru?(Lorg/apache/http/impl/client/RoutedRequest;Lorg/apache/http/HttpResponse;Lorg/apache/http/protocol/HttpContext;)Lorg/apache/http/impl/client/RoutedRequest;#r?0permissionToGetProtectionDomain&q?android.graphics.Matrix$ScaleToFitw HmAnimationListener)w?horg.apache.http.HttpConnectionMetricsv(LOCK_PATTERN_VISIBLEv/?mGapLengthu??mDefaultTabIndex rBP([I[I)[I.r?P([Ljava/lang/Object;)Ljava/util/ArrayList;w&?TRACKBALL_MULTIPLIERu?SENSOR_ALLw?`TAG_OBJDESCRIPTORr??GPS_DELETE_POSITIONt?DBG"t?pGL_RENDERBUFFER_GREEN_SIZE_OES?n?@(Ljava/lang/String;ZLjava/util/Locale;Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
CursorTreeAdapterTest.java 22 import android.database.Cursor;
23 import android.database.DataSetObserver;
24 import android.database.sqlite.SQLiteDatabase;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
_index.html 147 <dd> Demonstrates binding results from a database query to a field in a template. </dd>
150 <dd> Demonstrates binding multiple columns from a database query to fields in a template. </dd>
307 <dd>Demonstrates an autocomplete text box that gets its content from a database query. </dd>

Completed in 762 milliseconds

<<51525354555657585960>>