Searched refs:type (Results 226 - 250 of 1111) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt/
H A DResourceTable.h93 // The type of package to build.
105 ResourceTable(Bundle* bundle, const String16& assetsPackage, PackageType type);
127 const String16& type,
133 const String16& type,
144 const String16& type,
154 const String16& type,
166 const String16& type,
170 const String16& type,
179 const String16& type,
185 const String16& type,
324 enum type { enum in class:ResourceTable::Entry
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGroupReader.cpp56 // already got type - for example, bitcode or external OIR (object
58 if ((*input)->type() == Input::Script ||
59 (*input)->type() == Input::Archive ||
60 (*input)->type() == Input::External) {
65 if (Input::Object == (*input)->type()) {
70 if (Input::DynObj == (*input)->type()) {
/frameworks/base/opengl/java/android/opengl/
H A DGLES11.java218 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, GLint offset )
222 int type,
242 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
247 int type,
546 // C function void glNormalPointer ( GLenum type, GLsizei stride, GLint offset )
549 int type,
598 // C function void glPointSizePointerOES ( GLenum type, GLsizei stride, const GLvoid *pointer )
601 int type,
608 int type,
613 type,
220 glColorPointer( int size, int type, int stride, int offset ) argument
244 glDrawElements( int mode, int count, int type, int offset ) argument
548 glNormalPointer( int type, int stride, int offset ) argument
600 glPointSizePointerOESBounds( int type, int stride, java.nio.Buffer pointer, int remaining ) argument
607 glPointSizePointerOES( int type, int stride, java.nio.Buffer pointer ) argument
627 glTexCoordPointer( int size, int type, int stride, int offset ) argument
720 glVertexPointer( int size, int type, int stride, int offset ) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DSELinuxMMAC.java212 int type;
215 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
216 && (type != XmlPullParser.END_TAG
218 if (type == XmlPullParser.END_TAG
219 || type == XmlPullParser.TEXT) {
253 int type;
256 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
257 && (type != XmlPullParser.END_TAG
259 if (type == XmlPullParser.END_TAG
260 || type
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_AlarmManagerService.cpp61 virtual int set(int type, struct timespec *ts) = 0;
75 int set(int type, struct timespec *ts);
87 int set(int type, struct timespec *ts);
109 int AlarmImplAlarmDriver::set(int type, struct timespec *ts) argument
111 return ioctl(fds[0], ANDROID_ALARM_SET(type), ts);
140 int AlarmImplTimerFd::set(int type, struct timespec *ts) argument
142 if (type > ANDROID_ALARM_TYPE_COUNT) {
157 return timerfd_settime(fds[type], TFD_TIMER_ABSTIME, &spec, NULL);
358 static void android_server_AlarmManagerService_set(JNIEnv*, jobject, jlong nativeData, jint type, jlong seconds, jlong nanoseconds) argument
365 int result = impl->set(type,
[all...]
/frameworks/native/services/surfaceflinger/
H A DEventThread.cpp55 mVSyncEvent[i].header.type = DisplayEventReceiver::DISPLAY_EVENT_VSYNC;
150 mVSyncEvent[0].header.type = DisplayEventReceiver::DISPLAY_EVENT_VSYNC;
157 void EventThread::onHotplugReceived(int type, bool connected) { argument
158 ALOGE_IF(type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES,
159 "received hotplug event for an invalid display (id=%d)", type);
162 if (type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
164 event.header.type = DisplayEventReceiver::DISPLAY_EVENT_HOTPLUG;
165 event.header.id = type;
191 event.header.type, conn.get());
316 mVSyncEvent[0].header.type
[all...]
/frameworks/base/core/java/android/widget/
H A DExpandableListConnector.java274 return PositionMetadata.obtain(pos.groupPos, pos.type,
302 if (pos.type == ExpandableListPosition.GROUP) {
304 return PositionMetadata.obtain(midExpGm.flPos, pos.type,
306 } else if (pos.type == ExpandableListPosition.CHILD) {
309 + 1, pos.type, pos.groupPos, pos.childPos,
321 if (pos.type != ExpandableListPosition.GROUP) {
347 return PositionMetadata.obtain(flPos, pos.type, pos.groupPos,
361 return PositionMetadata.obtain(flPos, pos.type, pos.groupPos,
379 if (pos.type == ExpandableListPosition.CHILD) {
404 if (posMetadata.position.type
994 obtain(int flatListPos, int type, int groupPos, int childPos, GroupMetadata groupMetadata, int groupInsertIndex) argument
[all...]
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp44 AudioEffect::AudioEffect(const effect_uuid_t *type, argument
54 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
67 effect_uuid_t type; local
72 ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr, uuidStr);
75 if (stringToGuid(typeStr, &type) == NO_ERROR) {
76 pType = &type;
89 status_t AudioEffect::set(const effect_uuid_t *type, argument
101 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsRelocator.cpp48 for (Relocation::Type type = pParent.type();
49 llvm::ELF::R_MIPS_NONE != (type & 0xff); type >>= 8) {
50 if ((type & 0xff) == pType)
59 m_Type(pParent.type()),
64 if (pIsRel && (type() < llvm::ELF::R_MIPS_LA25_LUI ||
65 type() > llvm::ELF::R_MIPS_LA25_ADD))
73 return llvm::ELF::R_MIPS_NONE == type();
96 Relocation::Type type() cons function in class:mcld::MipsRelocationInfo
162 unsigned int type; member in struct:ApplyFunctionTriple
778 Relocation::Type type = llvm::ELF::R_MIPS_REL32 | local
[all...]
/frameworks/base/core/java/android/provider/
H A DContactsContract.java391 * The MIME-type of {@link #CONTENT_URI} providing a directory of
398 * The MIME type of a {@link #CONTENT_URI} item.
424 * The type of directory captured as a resource ID in the context of the
454 * The account type which this directory is associated.
716 * The type of account to which this row belongs, which when paired with
1196 * filter-as-you-type suggestions, use the {@link #CONTENT_FILTER_URI} URI.
1243 * That row has the mime type
1247 * that mime type.</td>
1568 * The content:// style URI used for "type-to-filter" functionality on the
1591 * The content:// style URI used for "type
5845 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
5855 getDisplayLabel(Context context, int type, CharSequence label) argument
5864 getTypeLabelResource(int type) argument
5895 getTypeLabel(Resources res, int type, CharSequence label) argument
6032 getTypeLabelResource(int type) argument
6047 getTypeLabel(Resources res, int type, CharSequence label) argument
6241 getTypeLabelResource(int type) argument
6255 getTypeLabel(Resources res, int type, CharSequence label) argument
6379 getTypeLabelResource(int type) argument
6393 getTypeLabel(Resources res, int type, CharSequence label) argument
6407 getProtocolLabelResource(int type) argument
6427 getProtocolLabel(Resources res, int type, CharSequence label) argument
6588 getTypeLabelResource(int type) argument
6601 getTypeLabel(Resources res, int type, CharSequence label) argument
6701 getTypeLabelResource(int type) argument
6728 getTypeLabel(Resources res, int type, CharSequence label) argument
6806 getTypeResource(Integer type) argument
6824 getTypeLabel(Resources res, int type, CharSequence label) argument
7139 getTypeLabelResource(int type) argument
7153 getTypeLabel(Resources res, int type, CharSequence label) argument
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java312 public PhoneData(String data, int type, String label, boolean isPrimary) { argument
314 mType = type;
369 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mNumber,
402 public EmailData(String data, int type, String label, boolean isPrimary) { argument
403 mType = type;
459 return String.format("type: %d, data: %s, label: %s, isPrimary: %s", mType, mAddress,
505 String region, String postalCode, String country, int type, String label,
507 mType = type;
524 final int type, final String label, boolean isPrimary, int vcardType) {
549 dataArray[4], dataArray[5], dataArray[6], type, labe
504 PostalData(String pobox, String extendedAddress, String street, String localty, String region, String postalCode, String country, int type, String label, boolean isPrimary, int vcardType) argument
523 constructPostalData(final List<String> propValueList, final int type, final String label, boolean isPrimary, int vcardType) argument
741 OrganizationData(final String organizationName, final String departmentName, final String titleName, final String phoneticName, int type, final boolean isPrimary) argument
877 ImData(final int protocol, final String customProtocol, final String address, final int type, final boolean isPrimary) argument
1353 SipData(String rawSip, int type, String label, boolean isPrimary) argument
1765 addPhone(int type, String data, String label, boolean isPrimary) argument
1806 addSip(String sipData, int type, String label, boolean isPrimary) argument
1820 addEmail(int type, String data, String label, boolean isPrimary) argument
1827 addPostal(int type, List<String> propValueList, String label, boolean isPrimary) argument
1839 addNewOrganization(final String organizationName, final String departmentName, final String titleName, final String phoneticName, int type, final boolean isPrimary) argument
1878 handleOrgValue(final int type, List<String> orgList, Map<String, Collection<String>> paramMap, boolean isPrimary) argument
1962 addIm(int protocol, String customProtocol, String propValue, int type, boolean isPrimary) argument
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp61 DiscontinuityType type, const sp<AMessage> &extra);
65 sp<MediaSource> getSource(SourceType type);
66 bool hasSource(SourceType type) const;
107 unsigned type() const { return mStreamType; } function in struct:android::ATSParser::Stream
117 DiscontinuityType type, const sp<AMessage> &extra);
121 sp<MediaSource> getSource(SourceType type);
220 DiscontinuityType type, const sp<AMessage> &extra) {
222 if ((type & DISCONTINUITY_TIME)
230 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
348 if (index >= 0 && mStreams.editValueAt(index)->type() !
219 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
428 getSource(SourceType type) argument
649 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
940 getSource(SourceType type) argument
987 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
1275 getSource(SourceType type) argument
[all...]
/frameworks/base/tools/aidl/
H A DAST.cpp77 types->insert(this->variable->type);
87 fprintf(to, "%s %s", this->variable->type->QualifiedName().c_str(),
130 :type(NULL),
137 :type(t),
144 :type(t),
157 types->insert(this->type);
167 fprintf(to, "%s%s %s", this->type->QualifiedName().c_str(), dim.c_str(),
392 :type(t)
397 :type(t)
421 fprintf(to, "new %s(", this->type
[all...]
/frameworks/base/cmds/idmap/
H A Dinspect.cpp148 String8 *package, String8 *type, String8 *name) {
158 if (type) {
159 *type = String8(String16(data.type, data.typeLen));
250 print("DATA BLOCK", "target type", targetTypeId, "");
256 print("", "overlay type", static_cast<uint32_t>(data16), "");
280 String8 type; local
282 err = resource_metadata(am, resID, NULL, &type, &name);
286 print("", "entry", data32, "%s/%s", type.string(), name.string());
147 resource_metadata(const AssetManager& am, uint32_t res_id, String8 *package, String8 *type, String8 *name) argument
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java51 public int type = TYPE_PPTP; // 1 field in class:VpnProfile
76 type = in.readInt();
97 out.writeInt(type);
128 profile.type = Integer.valueOf(values[1]);
129 if (profile.type < 0 || profile.type > TYPE_MAX) {
156 builder.append('\0').append(type);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DLayoutLibTestCallback.java72 final Class<?> type = field.getType();
74 if (type.isArray() && type.getComponentType() == int.class) {
78 } else if (type == int.class) {
83 mLog.error(null, "Unknown field type in R class: %1$s", type);
150 public Integer getResourceId(ResourceType type, String name) { argument
151 return mResources.get(type).get(name);
/frameworks/native/opengl/tools/glgen2/
H A Dglgen.py61 type = [nonestr(elem.text)]
70 type.extend([text, tail])
71 return (''.join(type).strip(), name)
74 # Format a list of (type, name) tuples as a C-style parameter list
80 # Format a list of (type, name) tuples as a C-style argument list
84 # Format a list of (type, name) tuples as comma-separated '"type", name'
164 # Append 'u' or 'ull' type suffix if present
165 type = enuminfo.elem.get('type')
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemBridgeAdapter.java35 public void onAddPresenter(Presenter presenter, int type) { argument
219 int type = mPresenters.indexOf(presenter);
220 if (type < 0) {
222 type = mPresenters.indexOf(presenter);
223 if (DEBUG) Log.v(TAG, "getItemViewType added presenter " + presenter + " type " + type);
225 mAdapterListener.onAddPresenter(presenter, type);
228 return type;
/frameworks/support/v4/kitkat/android/support/v4/provider/
H A DDocumentsContractApi19.java58 final String type = getRawType(context, self);
59 if (DocumentsContract.Document.MIME_TYPE_DIR.equals(type) || TextUtils.isEmpty(type)) {
96 final String type = getRawType(context, self);
100 if (TextUtils.isEmpty(type)) {
109 if (DocumentsContract.Document.MIME_TYPE_DIR.equals(type)
113 } else if (!TextUtils.isEmpty(type)
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestPlayStreamType.cpp47 /* Play an audio URIs on the given stream type */
48 void TestStreamTypeConfiguration( SLObjectItf sl, const char* path, const SLint32 type) argument
139 /* Set the Android audio stream type on the player */
141 SL_ANDROID_KEY_STREAM_TYPE, &type, sizeof(SLint32));
143 fprintf(stderr, "invalid stream type %d\n", type);
192 /* Get the stream type during playback */
199 fprintf(stderr, "ERROR: size for stream type is %u, should be %zu\n",
205 if (currentType != type) {
206 fprintf(stderr, "ERROR: stream type i
[all...]
/frameworks/base/core/java/android/hardware/
H A DLegacySensorManager.java107 private boolean registerLegacyListener(int legacyType, int type, argument
113 Sensor sensor = mSensorManager.getDefaultSensor(type);
160 private void unregisterLegacyListener(int legacyType, int type, argument
165 Sensor sensor = mSensorManager.getDefaultSensor(type);
262 int type = event.sensor.getType();
263 int legacyType = getLegacySensorType(type);
265 if (type == Sensor.TYPE_ORIENTATION) {
353 private static int getLegacySensorType(int type) { argument
354 switch (type) {
/frameworks/base/media/java/android/media/
H A DTimedText.java399 int type = parcel.readInt();
400 if (type == KEY_LOCAL_SETTING) {
401 type = parcel.readInt();
402 if (type != KEY_START_TIME) {
406 mKeyObjectMap.put(type, mStartTimeMs);
408 type = parcel.readInt();
409 if (type != KEY_STRUCT_TEXT) {
421 } else if (type != KEY_GLOBAL_SETTING) {
422 Log.w(TAG, "Invalid timed text key found: " + type);
/frameworks/base/services/core/java/com/android/server/
H A DSystemConfig.java197 int type;
198 while ((type=parser.next()) != parser.START_TAG
199 && type != parser.END_DOCUMENT) {
203 if (type != parser.START_TAG) {
375 int type;
376 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
377 && (type != XmlPullParser.END_TAG
379 if (type == XmlPullParser.END_TAG
380 || type == XmlPullParser.TEXT) {
/frameworks/av/include/media/stagefright/
H A DMediaCodecList.h41 const char *type, bool encoder, size_t startIndex = 0) const;
102 void addMediaCodec(bool encoder, const char *name, const char *type = NULL);
110 status_t initializeCapabilities(const char *type);
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java656 * Gets the acceleration curve type for this animation.
979 * @param type One of Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, or
981 * @param value The dimension associated with the type parameter
986 protected float resolveSize(int type, float value, int size, int parentSize) { argument
987 switch (type) {
1078 public int type; field in class:Animation.Description
1100 d.type = ABSOLUTE;
1103 if (value.type == TypedValue.TYPE_FRACTION) {
1104 d.type = (value.data & TypedValue.COMPLEX_UNIT_MASK) ==
1109 } else if (value.type
[all...]

Completed in 6799 milliseconds

1234567891011>>