Searched refs:NAME (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/base/core/java/android/util/
H A DJsonToken.java53 NAME, enum constant in enum:JsonToken
/frameworks/base/keystore/java/android/security/
H A DAndroidKeyStoreProvider.java33 put("KeyStore." + AndroidKeyStore.NAME, AndroidKeyStore.class.getName());
36 put("KeyPairGenerator." + AndroidKeyPairGenerator.NAME,
H A DAndroidKeyStore.java70 public static final String NAME = "AndroidKeyStore"; field in class:AndroidKeyStore
149 Log.w(NAME, "Couldn't parse certificate in keystore", e);
161 Log.w(NAME, "Couldn't parse certificates in keystore", e);
387 Log.e(NAME, "invalid alias: " + alias);
/frameworks/ex/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java35 public static final String NAME = OpenableColumns.DISPLAY_NAME; field in interface:PhotoContract.PhotoViewColumns
58 PhotoViewColumns.NAME,
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java35 public static final String NAME = OpenableColumns.DISPLAY_NAME; field in interface:PhotoContract.PhotoViewColumns
63 PhotoViewColumns.NAME,
/frameworks/base/core/java/android/provider/
H A DLiveFolders.java126 * <tr><th>{@link #NAME}</th>
183 public static final String NAME = "name"; field in class:LiveFolders
258 public static final String EXTRA_LIVE_FOLDER_NAME = "android.intent.extra.livefolder.NAME";
H A DApplications.java123 public static final String NAME = "name"; field in interface:Applications.ApplicationColumns
H A DContacts.java247 public static final String NAME = "name"; field in interface:Contacts.PeopleColumns
412 public static final String DEFAULT_SORT_ORDER = People.NAME + " ASC";
511 Groups.NAME + "=?", new String[] { groupName }, null);
760 public static final String NAME = "name"; field in interface:Contacts.GroupsColumns
838 public static final String DEFAULT_SORT_ORDER = NAME + " ASC";
1907 public static final String NAME = "name"; field in interface:Contacts.ExtensionsColumns
2221 public static final String NAME = ContactsContract.Intents.Insert.NAME; field in class:Contacts.Intents.Insert
/frameworks/compile/linkloader/android/
H A Dtest-librsloader.c39 #define DEF(NAME, ADDR) \
40 { NAME, sizeof(NAME) - 1, (void *)(&(ADDR)) },
/frameworks/base/core/tests/coretests/src/android/net/
H A DLinkPropertiesTest.java33 private static String NAME = "qmi0"; field in class:LinkPropertiesTest
49 source.setInterfaceName(NAME);
65 target.setInterfaceName(NAME);
92 target.setInterfaceName(NAME);
105 target.setInterfaceName(NAME);
118 target.setInterfaceName(NAME);
140 source.setInterfaceName(NAME);
155 target.setInterfaceName(NAME);
/frameworks/compile/libbcc/tests/debuginfo/
H A Dbuild_test_apk.sh23 NAME=""
78 NAME="$2"
159 if [ -z "$NAME" ]; then
160 NAME="$ACTIVITY"
168 run $SDK/tools/android create project --target $TARGET --name $NAME --path $OUT_DIR --activity $ACTIVITY --package $PACKAGE
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DVoiceMailConstants.java44 static final int NAME = 0; field in class:VoiceMailConstants
60 return data[NAME];
103 data[NAME] = parser.getAttributeValue(null, "carrier");
/frameworks/base/core/tests/coretests/src/android/content/
H A DContentQueryMapTest.java61 Settings.System.NAME,
66 cursor, Settings.System.NAME, true, null);
/frameworks/base/cmds/servicemanager/
H A Dbinder.c59 #define NAME(n) case n: return #n macro
63 NAME(BR_NOOP);
64 NAME(BR_TRANSACTION_COMPLETE);
65 NAME(BR_INCREFS);
66 NAME(BR_ACQUIRE);
67 NAME(BR_RELEASE);
68 NAME(BR_DECREFS);
69 NAME(BR_TRANSACTION);
70 NAME(BR_REPLY);
71 NAME(BR_FAILED_REPL
[all...]
/frameworks/native/include/binder/
H A DIInterface.h83 #define IMPLEMENT_META_INTERFACE(INTERFACE, NAME) \
84 const android::String16 I##INTERFACE::descriptor(NAME); \
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListManagedCursor.java47 // Map the NAME column in the people database to...
48 new String[] {People.NAME} ,
H A DListWithDisappearingItemBug.java55 // Map the NAME column in the people database to...
56 new String[] {People.NAME} ,
/frameworks/ex/chips/src/com/android/ex/chips/
H A DQueries.java71 public static final int NAME = 0; // String field in class:Queries.Query
H A DRecipientAlternatesAdapter.java110 c.getString(Queries.Query.NAME),
121 + " NAME : " + c.getString(Queries.Query.NAME)
202 original.getString(Query.NAME),
229 c.getString(Queries.Query.NAME),
266 display.setText(cursor.getString(Queries.Query.NAME));
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java58 * The value of <code>NAME</code> is 0x01 (1).
60 public static final int NAME = 0x01; field in class:HeaderSet
268 case NAME:
449 case NAME:
510 out.write(NAME);
/frameworks/compile/linkloader/
H A Dmain.cpp115 #define DEF(NAME, ADDR) \
116 { NAME, sizeof(NAME) - 1, (void *)(ADDR) },
/frameworks/base/core/tests/coretests/src/android/provider/
H A DSettingsProviderTest.java78 v.put(Settings.System.NAME, "test_key");
87 assertEquals("test_key", c.getString(c.getColumnIndex(Settings.System.NAME)));
106 assertEquals("test_key", c.getString(c.getColumnIndex(Settings.System.NAME)));
120 assertEquals("test_key", c.getString(c.getColumnIndex(Settings.System.NAME)));
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp130 #define BASIC_TYPE(NAME,FIELDNAME,TYPENAME) \
131 void AMessage::set##NAME(const char *name, TYPENAME value) { \
134 item->mType = kType##NAME; \
138 bool AMessage::find##NAME(const char *name, TYPENAME *value) const { \
139 const Item *item = findItem(name, kType##NAME); \
/frameworks/base/voip/java/com/android/server/sip/
H A DSipHelper.java297 ReplacesHeader.NAME, replaces));
324 ViaHeader viaHeader = (ViaHeader) request.getHeader(ViaHeader.NAME);
360 ToHeader toHeader = (ToHeader) response.getHeader(ToHeader.NAME);
429 long cseq = ((CSeqHeader) response.getHeader(CSeqHeader.NAME))
528 (CallIdHeader) message.getHeader(CallIdHeader.NAME);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsProvider.java157 this.where = Settings.NameValueTable.NAME + "=?";
204 String name = values.getAsString(Settings.NameValueTable.NAME);
438 new String[] { Settings.NameValueTable.NAME, Settings.NameValueTable.VALUE },
469 Settings.NameValueTable.NAME + "=?",
478 values.put(Settings.NameValueTable.NAME, Settings.Secure.ANDROID_ID);
592 values.put(Settings.NameValueTable.NAME, request);
772 String where = Settings.Secure.NAME + "=\'" + Settings.Secure.LOCATION_PROVIDERS_ALLOWED + "\'";
848 String name = initialValues.getAsString(Settings.Secure.NAME);
1121 String name = contentValues.getAsString(Settings.NameValueTable.NAME);

Completed in 5342 milliseconds

123