Searched defs:type (Results 101 - 125 of 801) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt2/flatten/
H A DArchive.cpp37 file::FileType type = file::getFileType(mOutDir); local
38 if (type == file::FileType::kNonexistant) {
41 } else if (type != file::FileType::kDirectory) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DSystemViewInfo.java48 public void setViewType(ViewType type) { argument
49 mViewType = type;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DDynamicIdMap.java45 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
48 * @param type the type of the resource
53 public Integer getId(ResourceType type, String name) { argument
54 return getId(Pair.of(type, name));
58 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
61 * @param resource the type/name of the resource
/frameworks/base/tools/preload/
H A DOperation.java45 final Type type; field in class:Operation
58 int index, Type type) {
63 this.type = type;
98 switch (type) {
125 sb.append(type.toString());
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, int index, Type type) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h58 /// @param pType [in] the type of the relocation entry
68 /// type - relocation type
69 Type type() const { return m_Type; } function in class:mcld::Relocation
83 /// symbol info - binding, type
109 /// m_Type - the type of the relocation entries
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp87 llvm::Triple::ArchType type = local
89 if (llvm::Triple::UnknownArch != type)
90 pTriple.setArch(type);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DBuiltInVariableExpr.java29 BuiltInVariableExpr(String name, String type, String accessCode) { argument
31 super.setUserDefinedType(type);
H A DCastExpr.java29 CastExpr(String type, Expr expr) { argument
31 mType = type;
H A DInstanceOfExpr.java29 InstanceOfExpr(Expr left, String type) { argument
31 mTypeStr = type;
H A DSymbolExpr.java30 SymbolExpr(String text, Class type) { argument
33 mType = type;
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h50 uint32_t type; member in struct:android::DisplayEventReceiver::Event::Header
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp39 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
41 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
43 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
45 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
47 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
49 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
51 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
55 void glColorPointerBounds(GLint size, GLenum type, GLsizei stride, argument
57 glColorPointer(size, type, stride, ptr);
59 void glNormalPointerBounds(GLenum type, GLsize argument
63 glTexCoordPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
67 glVertexPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
72 glPointSizePointerOESBounds(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
77 glMatrixIndexPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
82 glWeightPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei ) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDrawElementsInstancedBaseVertex.cpp1 /* void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex ) */
4 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount, jint basevertex) {
27 (GLenum)type,
39 /* void glDrawElementsInstancedBaseVertex ( GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instanceCount, GLint basevertex ) */
42 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount, jint basevertex) {
46 (GLenum)type,
3 android_glDrawElementsInstancedBaseVertex__IIILjava_nio_Buffer_2II(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount, jint basevertex) argument
41 android_glDrawElementsInstancedBaseVertex__IIIIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount, jint basevertex) argument
/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioStream.java116 * @throws IllegalArgumentException if its type is used by DTMF.
123 if (codec.type == mDtmfType) {
124 throw new IllegalArgumentException("The type is used by DTMF");
130 * Returns the RTP payload type for dual-tone multi-frequency (DTMF) digits,
140 * Sets the RTP payload type for dual-tone multi-frequency (DTMF) digits.
143 * RTP payload type for DTMF is assigned dynamically, so it must be in the
145 * the previous assigned type. This method cannot be called when the stream
148 * @param type The RTP payload type to be used or {@code -1} to disable it.
149 * @throws IllegalArgumentException if the type i
153 setDtmfType(int type) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DNodeAttribute.java8 public NodeAttribute(String name, String type, String value) { argument
10 mType = type;
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/view/
H A DRichTextView.java106 public void setText(CharSequence text, BufferType type) { argument
108 super.setText(text, type);
/frameworks/rs/driver/
H A DrsdVertexArray.h38 uint32_t type; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
/frameworks/av/include/camera/ndk/
H A DNdkCameraMetadata.h47 * ACameraMetadata is opaque type that provides access to read-only camera metadata like camera
71 /// Number of type fields
76 * Definition of rational data type in {@link ACameraMetadata}.
100 * The data type of this metadata entry.
103 * same type.</p>
105 uint8_t type; member in struct:ACameraMetadata_entry
115 * <p>The type field above defines which union member pointer is valid. The count field above
145 * The data type of this metadata entry.
148 * same type.</p>
150 uint8_t type; member in struct:ACameraMetadata_const_entry
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
67 count = (type == RATIONAL || type == SRATIONAL) ? count * 2 : count;
/frameworks/av/media/libeffects/testlibs/
H A DAudioShelvingFilter.cpp49 AudioShelvingFilter::AudioShelvingFilter(ShelfType type, int nChannels, argument
51 : mType(type),
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DIOProfile.h78 audio_devices_t profileType = mSupportedDevices[k]->type();
99 sp<DeviceDescriptor> getSupportedDeviceByAddress(audio_devices_t type, String8 address) const argument
101 return mSupportedDevices.getDevice(type, address);
/frameworks/base/core/java/android/accounts/
H A DAuthenticatorDescription.java23 * A {@link Parcelable} value type that contains information about an account authenticator.
27 final public String type; field in class:AuthenticatorDescription
51 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
53 if (type == null) throw new IllegalArgumentException("type cannot be null");
55 this.type = type;
64 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
66 this(type, packageName, labelId, iconId, smallIconId, prefId, false);
71 * to identify the authenticator by its type
74 newKey(String type) argument
79 AuthenticatorDescription(String type) argument
[all...]
H A DChooseAccountTypeActivity.java66 for (String type : validAccountTypes) {
67 setOfAllowableAccountTypes.add(type);
78 final String type = entry.getKey();
81 && !setOfAllowableAccountTypes.contains(type)) {
96 setResultAndFinish(mAuthenticatorInfosToDisplay.get(0).desc.type);
110 setResultAndFinish(mAuthenticatorInfosToDisplay.get(position).desc.type);
115 private void setResultAndFinish(final String type) { argument
117 bundle.putString(AccountManager.KEY_ACCOUNT_TYPE, type);
121 + "selected account type " + type);
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java37 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
78 * @param type type of socket
85 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
88 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
96 * @param type type of socket
105 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port, argument
109 mSocket = new BluetoothSocket(type,
125 BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid) argument
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleProfiling.java31 public static final int CHUNK_MPRS = type("MPRS");
32 public static final int CHUNK_MPRE = type("MPRE");
33 public static final int CHUNK_MPSS = type("MPSS");
34 public static final int CHUNK_MPSE = type("MPSE");
35 public static final int CHUNK_MPRQ = type("MPRQ");
36 public static final int CHUNK_SPSS = type("SPSS");
37 public static final int CHUNK_SPSE = type("SPSE");
76 Log.v("ddm-heap", "Handling " + name(request.type) + " chunk");
77 int type = request.type;
166 handleMPSEOrSPSE(Chunk request, String type) argument
[all...]

Completed in 6199 milliseconds

1234567891011>>