Searched refs:type (Results 176 - 200 of 749) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt/
H A DResourceTable.h116 const String16& type,
122 const String16& type,
133 const String16& type,
143 const String16& type,
155 const String16& type,
159 const String16& type,
168 const String16& type,
174 const String16& type,
179 const String16& package, const String16& type, const String16& name);
199 const String16& type,
300 enum type { enum in class:ResourceTable::Entry
[all...]
H A DResourceTable.cpp132 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
133 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
208 static String16 mayOrMust(int type, int flags)
210 if ((type&(~flags)) == 0) {
218 const String16& typeName, const String16& ident, int type,
223 if ((type&flags->value) != 0 && flags->description != NULL) {
224 String16 fullMsg(mayOrMust(type, flags->value));
232 if (hadType && (type&ResTable_map::TYPE_REFERENCE) == 0) {
235 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
237 "\"<code>?[<i>package</i>:][<i>type</
861 String16 type; local
933 String16 type; local
1065 String16 type; local
1672 addPublic(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const uint32_t ident) argument
1696 addEntry(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& value, const Vector<StringPool::entry_style_span>* style, const ResTable_config* params, const bool doSetIndex, const int32_t format, const bool overwrite) argument
1737 startBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const ResTable_config* params, bool overlay, bool replace, bool isId) argument
1801 addBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const String16& bagKey, const String16& value, const Vector<StringPool::entry_style_span>* style, const ResTable_config* params, bool replace, bool isId, const int32_t format) argument
1846 hasBagOrEntry(const String16& package, const String16& type, const String16& name) const argument
1871 hasBagOrEntry(const String16& package, const String16& type, const String16& name, const ResTable_config& config) const argument
1906 String16 package, type, name; local
1914 appendComment(const String16& package, const String16& type, const String16& name, const String16& comment, bool onlyIfEmpty) argument
1938 appendTypeComment(const String16& package, const String16& type, const String16& name, const String16& comment) argument
1961 canAddEntry(const SourcePos& pos, const String16& package, const String16& type, const String16& name) argument
1996 getResId(const String16& package, const String16& type, const String16& name, bool onlyPublic) const argument
2041 String16 package, type, name; local
2151 getCustomResource( const String16& package, const String16& type, const String16& name) const argument
2167 getCustomResourceWithCreation( const String16& package, const String16& type, const String16& name, const bool createIfNotFound) argument
3631 getType(const String16& type, const SourcePos& sourcePos, bool doSetIndex) argument
3764 getType(const String16& package, const String16& type, const SourcePos& sourcePos, bool doSetIndex) argument
3776 getEntry(const String16& package, const String16& type, const String16& name, const SourcePos& sourcePos, bool overlay, const ResTable_config* config, bool doSetIndex) 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/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp59 DiscontinuityType type, const sp<AMessage> &extra);
63 sp<MediaSource> getSource(SourceType type);
104 unsigned type() const { return mStreamType; } function in struct:android::ATSParser::Stream
114 DiscontinuityType type, const sp<AMessage> &extra);
118 sp<MediaSource> getSource(SourceType type);
217 DiscontinuityType type, const sp<AMessage> &extra) {
219 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
332 if (index >= 0 && mStreams.editValueAt(index)->type() != info.mType) {
345 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
216 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
412 getSource(SourceType type) argument
602 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
885 getSource(SourceType type) argument
930 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
1193 getSource(SourceType type) argument
[all...]
/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/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 %u\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/core/java/android/provider/
H A DContactsContract.java448 * The MIME-type of {@link #CONTENT_URI} providing a directory of
455 * The MIME type of a {@link #CONTENT_URI} item.
481 * The type of directory captured as a resource ID in the context of the
511 * The account type which this directory is associated.
773 * The type of account to which this row belongs, which when paired with
1222 * filter-as-you-type suggestions, use the {@link #CONTENT_FILTER_URI} URI.
1269 * That row has the mime type
1273 * that mime type.</td>
1555 * The content:// style URI used for "type-to-filter" functionality on the
1579 * The content:// style URI used for "type
5475 getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) argument
5485 getDisplayLabel(Context context, int type, CharSequence label) argument
5494 getTypeLabelResource(int type) argument
5525 getTypeLabel(Resources res, int type, CharSequence label) argument
5661 getTypeLabelResource(int type) argument
5676 getTypeLabel(Resources res, int type, CharSequence label) argument
5869 getTypeLabelResource(int type) argument
5883 getTypeLabel(Resources res, int type, CharSequence label) argument
6007 getTypeLabelResource(int type) argument
6021 getTypeLabel(Resources res, int type, CharSequence label) argument
6035 getProtocolLabelResource(int type) argument
6055 getProtocolLabel(Resources res, int type, CharSequence label) argument
6215 getTypeLabelResource(int type) argument
6228 getTypeLabel(Resources res, int type, CharSequence label) argument
6327 getTypeLabelResource(int type) argument
6354 getTypeLabel(Resources res, int type, CharSequence label) argument
6431 getTypeResource(Integer type) argument
6747 getTypeLabelResource(int type) argument
6761 getTypeLabel(Resources res, int type, CharSequence label) argument
[all...]
/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...]
H A DTranslateAnimation.java61 mFromXType = d.type;
66 mToXType = d.type;
71 mFromYType = d.type;
76 mToYType = d.type;
/frameworks/base/tools/preload/
H A Dsorttable.js77 // work through each column and calculate its type
80 // manually override the type with a sorttable_type attribute
167 // guess the type of a column based on its first non-blank row
374 function dean_addEvent(element, type, handler) {
376 element.addEventListener(type, handler, false);
383 var handlers = element.events[type];
385 handlers = element.events[type] = {};
387 if (element["on" + type]) {
388 handlers[0] = element["on" + type];
394 element["on" + type]
[all...]
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_allocation.c5 // Opaque Allocation type operations
70 Type_t *type = (Type_t *)alloc->mHal.state.type; local
71 rs_element returnElem = {type->mHal.state.element};
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h49 /// type - The categorizes the section's contents and semantics. It's
53 /// In MachO, it's type field of struct section::flags
54 uint32_t type() const function in class:mcld::LDSection
65 /// In ELF, if the type() is SHT_NOBITS, this function return zero.
128 void setType(uint32_t type) argument
129 { m_Type = type; }
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java433 int type;
434 while ((type = parser.next()) != XmlPullParser.START_TAG &&
435 type != XmlPullParser.END_DOCUMENT) {
439 if (type != XmlPullParser.START_TAG) {
719 int type;
721 while (((type = parser.next()) != XmlPullParser.END_TAG ||
722 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
724 if (type != XmlPullParser.START_TAG) {
759 int type;
762 while (((type
[all...]
H A DDisplay.java146 * Display type: Unknown display type.
152 * Display type: Built-in display.
158 * Display type: HDMI display.
164 * Display type: WiFi display.
170 * Display type: Overlay display.
195 mType = displayInfo.type;
271 * Gets the display type.
273 * @return The display type.
288 * Interpretation varies by display type
601 typeToString(int type) argument
[all...]
H A DSurfaceHolder.java50 * whose type is SURFACE_TYPE_PUSH_BUFFERS.
149 * Sets the surface's type.
154 public void setType(int type); argument
/frameworks/native/opengl/libagl/
H A Darray.cpp108 c->arrays.vertex.type = GL_FLOAT;
110 c->arrays.color.type = GL_FLOAT;
112 c->arrays.normal.type = GL_FLOAT;
115 c->arrays.texture[i].type = GL_FLOAT;
255 static const fn_t color_fct[2][16] = { // size={3,4}, type={ub,f,x}
263 static const fn_t color_clamp_fct[2][16] = { // size={3,4}, type={ub,f,x}
271 static const fn_t normal_fct[1][16] = { // size={3}, type={b,s,f,x}
277 static const fn_t vertex_fct[3][16] = { // size={2,3,4}, type={b,s,f,x}
291 static const fn_t texture_fct[3][16] = { // size={2,3,4}, type={b,s,f,x}
313 GLint size, GLenum type, GLsize
312 init( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, const buffer_t* bo, GLsizei count) argument
746 read_index(int type, const GLvoid*& p) argument
765 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
787 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
814 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
841 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
870 const int type = (c->arrays.indicesType == GL_UNSIGNED_BYTE); local
1235 glVertexPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) argument
1256 glColorPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) argument
1276 glNormalPointer( GLenum type, GLsizei stride, const GLvoid *pointer) argument
1297 glTexCoordPointer( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) argument
1385 glDrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DMetaData.h151 // kKeyEncryptedSizes, 0 /* type */, encSizes, sizeof(encSizes));
206 bool setData(uint32_t key, uint32_t type, const void *data, size_t size);
208 bool findData(uint32_t key, uint32_t *type,
225 void setData(uint32_t type, const void *data, size_t size);
226 void getData(uint32_t *type, const void **data, size_t *size) const;
/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.h41 // Shelf type
48 // type Type of the filter (high shelf or low shelf).
51 AudioShelvingFilter(ShelfType type, int nChannels, int sampleRate);
117 // Shelf type.
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp85 ATSParser::SourceType type = local
89 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
150 ATSParser::SourceType type = local
154 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
/frameworks/base/core/java/android/bluetooth/
H A DIBluetooth.aidl80 ParcelFileDescriptor connectSocket(in BluetoothDevice device, int type, in ParcelUuid uuid, int port, int flag);
81 ParcelFileDescriptor createSocketChannel(int type, in String serviceName, in ParcelUuid uuid, int port, int flag);
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java183 public <T> T[] getSpans(int start, int end, Class<T> type) { argument
184 return mSpanned.getSpans(start, end, type);
199 public int nextSpanTransition(int start, int end, Class type) { argument
200 return mSpanned.nextSpanTransition(start, end, type);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DMetaDataTest.java63 int type;
64 while ((type = xml.next()) != XmlPullParser.START_TAG
65 && type != XmlPullParser.END_DOCUMENT) {
67 assertEquals(XmlPullParser.START_TAG, type);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DFragmentShader.java56 public Builder setObjectConst(Type type) { argument
57 mShader.mPerObjConstants = type;
61 public Builder setShaderConst(Type type) { argument
62 mShader.mPerShaderConstants = type;

Completed in 2613 milliseconds

1234567891011>>