Searched refs:type (Results 201 - 225 of 1497) sorted by relevance

1234567891011>>

/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 DSymbolExpr.java30 SymbolExpr(String text, Class type) { argument
33 mType = type;
/frameworks/data-binding/extensions/baseAdapters/
H A Dbuild.gradle67 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
73 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
79 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
106 task prebuild(type : Copy) {
/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DImageViewBindingAdapter.java26 @BindingMethod(type = android.widget.ImageView.class, attribute = "android:tint", method = "setImageTintList"),
27 @BindingMethod(type = android.widget.ImageView.class, attribute = "android:tintMode", method = "setImageTintMode"),
H A DCardViewBindingAdapter.java24 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardCornerRadius", method = "setRadius"),
25 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardMaxElevation", method = "setMaxCardElevation"),
26 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardPreventCornerOverlap", method = "setPreventCornerOverlap"),
27 @BindingMethod(type = android.support.v7.widget.CardView.class, attribute = "cardUseCompatPadding", method = "setUseCompatPadding"),
H A DViewStubBindingAdapter.java27 @BindingMethod(type = android.view.ViewStub.class, attribute = "android:layout", method = "setLayoutResource")
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageInsertKHR.cpp1 /* void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf ) */
4 (JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) {
22 (GLenum)type,
3 android_glDebugMessageInsertKHR__IIIILjava_lang_String_2(JNIEnv *_env, jobject _this, jint source, jint type, jint id, jint severity, jstring buf) argument
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgram.h59 GLuint buildShader(const char* source, GLenum type);
60 String8& dumpShader(String8& result, GLenum type);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DNetworkAuthenticationTypeElement.java31 private NetworkAuthentication(NwkAuthTypeEnum type, String url) { argument
32 m_type = type;
62 NwkAuthTypeEnum type;
63 type = typeNumber >= NwkAuthTypeEnum.values().length ?
67 m_authenticationTypes.add(new NetworkAuthentication(type,
/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/support/compat/honeycomb_mr2/android/support/v4/net/
H A DConnectivityManagerCompatHoneycombMR2.java43 final int type = info.getType();
44 switch (type) {
/frameworks/support/v14/preference/
H A Dbuild.gradle66 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){
71 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
77 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
82 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
/frameworks/av/include/media/
H A DMediaResourcePolicy.h32 MediaResourcePolicy(String8 type, String8 value);
/frameworks/av/media/libstagefright/webm/
H A DWebmFrame.h33 WebmFrame(int type, bool key, uint64_t absTimecode, MediaBuffer *buf);
/frameworks/av/services/mediaresourcemanager/
H A DResourceManagerService.h79 // Gets the list of all the clients who own the specified resource type.
82 bool getAllClients_l(int callingPid, MediaResource::Type type,
85 // Gets the client who owns specified resource type from lowest possible priority process.
88 bool getLowestPriorityBiggestClient_l(int callingPid, MediaResource::Type type,
91 // Gets lowest priority process that has the specified resource type.
93 bool getLowestPriorityPid_l(MediaResource::Type type, int *pid, int *priority);
95 // Gets the client who owns biggest piece of specified resource type from pid.
97 bool getBiggestClient_l(int pid, MediaResource::Type type, sp<IResourceManagerClient> *client);
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11Ext.java127 int type,
134 int type,
141 int type,
148 int type,
125 glMatrixIndexPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
132 glMatrixIndexPointerOES( int size, int type, int stride, int offset ) argument
139 glWeightPointerOES( int size, int type, int stride, java.nio.Buffer pointer ) argument
146 glWeightPointerOES( int size, int type, int stride, int offset ) argument
/frameworks/base/packages/Osu/src/com/android/anqp/eap/
H A DNonEAPInnerAuth.java44 public NonEAPInnerAuth(NonEAPType type) { argument
45 mType = type;
69 public static String mapInnerType(NonEAPType type) { argument
70 return sOmaMap.get(type);
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DEndPointRatioClassifier.java34 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
H A DPointerCountClassifier.java50 public float getFalseTouchEvaluation(int type) { argument
H A DSpeedClassifier.java35 public float getFalseTouchEvaluation(int type, Stroke stroke) { argument
/frameworks/compile/mclinker/include/mcld/Script/
H A DFileToken.h33 return pToken->type() == InputToken::File;
H A DInputToken.h31 Type type() const { return m_Type; } function in class:mcld::InputToken
H A DNameSpec.h33 return pToken->type() == InputToken::NameSpec;
/frameworks/native/services/surfaceflinger/Effects/
H A DDaltonizer.h38 void setType(ColorBlindnessType type);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
H A DNonEAPInnerAuth.java44 public NonEAPInnerAuth(NonEAPType type) { argument
45 mType = type;
69 public static String mapInnerType(NonEAPType type) { argument
70 return sOmaMap.get(type);

Completed in 828 milliseconds

1234567891011>>