Searched defs:isStatic (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/MC/
H A DAttribute.cpp41 if (pAttr.isAsNeeded() && pAttr.isStatic()) {
85 bool AttributeProxy::isStatic() const function in class:AttributeProxy
88 return m_pBase->isStatic();
/frameworks/rs/
H A DrsPath.cpp27 Path::Path(Context *rsc, RsPathPrimitive pp, bool isStatic, argument
73 RsPath rsi_PathCreate(Context *rsc, RsPathPrimitive pp, bool isStatic, argument
75 return new Path(rsc, pp, isStatic, (Allocation *)vtx, (Allocation *)loops, quality);
/frameworks/compile/mclinker/include/mcld/MC/
H A DAttribute.h65 bool isStatic() const function in class:mcld::AttributeBase
194 bool isStatic() const;
226 (pLHS.isStatic() == pRHS.isStatic()));
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter.java115 * @param isStatic True if the method is declared static.
123 boolean isStatic) {
131 mIsStatic = isStatic;
117 DelegateMethodAdapter(Log log, MethodVisitor mvOriginal, MethodVisitor mvDelegate, String className, String methodName, String desc, boolean isStatic) argument
H A DStubMethodAdapter.java52 String invokeSignature, boolean isStatic, boolean isNative) {
57 mIsStatic = isStatic;
51 StubMethodAdapter(MethodVisitor mv, String methodName, Type returnType, String invokeSignature, boolean isStatic, boolean isNative) argument
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1572 nPathCreate(JNIEnv *_env, jobject _this, jlong con, jint prim, jboolean isStatic, jlong _vtx, jlong _loop, jfloat q) { argument
1575 jlong id = (jlong)(uintptr_t)rsPathCreate((RsContext)con, (RsPathPrimitive)prim, isStatic,
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java853 native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, long loop, float q); argument
854 synchronized long nPathCreate(int prim, boolean isStatic, long vtx, long loop, float q) { argument
856 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);

Completed in 4369 milliseconds