Searched defs:type (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/frameworks/base/docs/html/resources/
H A Dresources-data.js2 type: {
72 en: 'Android offers a very powerful and yet easy-to-use message type called an intent. You can use intents to turn applications into high-level libraries and make code modular and reusable. While it is nice to be able to make use of a loosely coupled API, there is no guarantee that the intent you send will be received by another application. This article describes a technique you can use to find out whether the system contains any application capable of responding to the intent you want to use.'
362 en: 'This article illustrates how an application, in this case the WikiNotes sample app, can use intents to route various types of linked text to the application that handles that type of data. For example, an app can use intents to route a linked telephone number to a dialer app and a web URL to a browser.'
717 en: 'An example of an Android library project, a type of project that lets you store and manage shared code and resources in one place, then make them available to your other Android applications.'
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dcal_dc_scaler.cpp23 [input_variable_name] = [description of the input to module, its type
27 [local_store_name] = [description of the local store, its type
29 [local_buffer_name] = [description of the local buffer, its type
31 [local_ptr_name] = [description of the local pointer, its type
35 [global_store_name] = [description of the global store, its type
37 [global_buffer_name] = [description of the global buffer, its type
39 [global_ptr_name] = [description of the global pointer, its type
44 by module, its type definition, and length
49 variable_bfr_ptr points to, its type definition, and length
55 [local_store_name] = [describe new contents, its type
150 cal_dc_scaler( int QP, int type) argument
[all...]
/frameworks/compile/linkloader/lib/
H A DELFSymbol.cpp21 ELFSymbolHelperMixin::getTypeStr(uint8_t type) { argument
22 switch (type) {
45 ELFSymbolHelperMixin::getBindingAttributeStr(uint8_t type) { argument
46 switch (type) {
64 ELFSymbolHelperMixin::getVisibilityStr(uint8_t type) { argument
65 switch (type) {
H A DELFSectionHeader.cpp38 char const *ELFSectionHeaderHelperMixin::getSectionTypeStr(uint32_t type) { argument
39 switch (type) {
45 // General section header type
52 // ARM-specific section header type
H A DELFHeader.cpp64 char const *ELFHeaderHelperMixin::getObjectTypeStr(uint16_t type) { argument
65 switch (type) {
66 default: return "No file type";
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCacheListener.java28 * @param type the type of registered service
31 void onServiceChanged(V type, boolean removed); argument
H A DPathPermission.java31 public PathPermission(String pattern, int type, String readPermission, argument
33 super(pattern, type);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsSubaddress.java21 public int type; field in class:CdmaSmsSubaddress
/frameworks/base/voip/jni/rtp/
H A DAudioCodec.cpp41 AudioCodecType *type = gAudioCodecTypes; local
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
44 AudioCodec *codec = type->create();
45 codec->name = type->name;
48 ++type;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/base/cmds/backup/
H A Dbackup.cpp68 int type; local
70 while (reader.ReadNextHeader(&done, &type) == 0) {
74 switch (type) {
89 printf("Unknown chunk type: 0x%08x\n", type);
/frameworks/base/core/java/android/accounts/
H A DAccount.java24 * Value type that represents an Account in the {@link AccountManager}. This object is
30 public final String type; field in class:Account
36 return name.equals(other.name) && type.equals(other.type);
42 result = 31 * result + type.hashCode();
46 public Account(String name, String type) { argument
50 if (TextUtils.isEmpty(type)) {
51 throw new IllegalArgumentException("the type must not be empty: " + type);
54 this.type
[all...]
H A DIAccountAuthenticatorCache.java37 * @param type the authenticator type to return
39 * matches the account type or null if none is present
42 AuthenticatorDescription type);
41 getServiceInfo( AuthenticatorDescription type) argument
/frameworks/base/core/java/android/net/
H A DNetworkConfig.java35 public int type; field in class:NetworkConfig
61 * [Connection name],[ConnectivityManager connection type],
62 * [associated radio-type],[priority],[dependencyMet]
67 type = Integer.parseInt(fragments[1]);
78 return (type == radio);
/frameworks/base/core/java/android/webkit/
H A DCertTool.java70 static void addCertificate(Context context, String type, byte[] value) { argument
71 Credentials.getInstance().install(context, type, value);
/frameworks/base/core/java/com/android/internal/view/
H A DRootViewSurfaceTaker.java9 void setSurfaceType(int type); argument
/frameworks/base/drm/common/
H A DIDrmServiceListener.cpp49 int type = data.readInt32(); local
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/base/drm/java/android/drm/
H A DDrmErrorEvent.java67 * @param type Type of the event. Could be any of the event types defined above.
70 public DrmErrorEvent(int uniqueId, int type, String message) { argument
71 super(uniqueId, type, message);
78 * @param type Type of the event. Could be any of the event types defined above.
83 public DrmErrorEvent(int uniqueId, int type, String message, argument
85 super(uniqueId, type, message, attributes);
H A DDrmInfoEvent.java57 * @param type Type of the event. Could be any of the event types defined above.
60 public DrmInfoEvent(int uniqueId, int type, String message) { argument
61 super(uniqueId, type, message);
68 * @param type Type of the event. Could be any of the event types defined above.
73 public DrmInfoEvent(int uniqueId, int type, String message, argument
75 super(uniqueId, type, message, attributes);
/frameworks/base/libs/rs/
H A Dspec.h15 int type; member in struct:__anon301
/frameworks/base/tools/aidl/
H A Daidl_language_y.y91 fprintf(stderr, "%s:%d syntax error in parcelable declaration. Expected type name.\n",
96 fprintf(stderr, "%s:%d syntax error in parcelable declaration. Expected type name, saw \"%s\".\n",
134 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
139 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
168 type IDENTIFIER '(' arg_list ')' ';' {
172 method->type = $1.type;
180 method->comments_token = &method->type.type;
183 | ONEWAY type IDENTIFIE
233 type: label
[all...]
/frameworks/base/voip/java/android/net/rtp/
H A DAudioCodec.java39 * The RTP payload type of the encoding.
41 public final int type; field in class:AudioCodec
84 private AudioCodec(int type, String rtpmap, String fmtp) { argument
85 this.type = type;
100 * @param type The payload type of the encoding defined in RTP/AVP.
107 public static AudioCodec getCodec(int type, String rtpmap, String fmtp) { argument
108 if (type < 0 || type > 12
[all...]
/frameworks/compile/slang/
H A Dslang_rs_export_element.h45 RSExportPrimitiveType::DataType type; member in struct:slang::RSExportElement::__anon1321
H A Dslang_rs_metadata_spec.h32 // All ->type or ->base_type in RS*Type now becomes an index to RSType array.
46 const union RSType *type; member in struct:RSVar
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java35 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
69 * @param type type of socket
76 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
79 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);

Completed in 3592 milliseconds

1234567891011>>