HomeSort by relevance Sort by last modified time
    Searched refs:obj (Results 251 - 275 of 8311) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/LLVM/test/MC/ARM/
nop-armv6t2-padding.s 1 @ RUN: llvm-mc -triple armv6t2-apple-darwin %s -filetype=obj -o %t.obj
2 @ RUN: macho-dump --dump-section-data < %t.obj > %t.dump
  /external/webrtc/webrtc/base/
platform_thread_unittest.cc 20 bool NullRunFunction(void* obj) {
32 bool SetFlagRunFunction(void* obj) {
33 bool* obj_as_bool = static_cast<bool*>(obj);
  /libcore/ojluni/src/main/java/java/net/
ContentHandler.java 101 Object obj = getContent(urlc); local
104 if (classes[i].isInstance(obj)) {
105 return obj;
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubytypemaps.swg 45 #define SWIG_AppendOutput(result,obj) SWIG_Ruby_AppendOutput(result, obj)
48 #define SWIG_SetConstant(name, obj) rb_define_const($module, name, obj)
51 #define SWIG_Raise(obj, type, desc) rb_exc_raise(SWIG_Ruby_ExceptionType(desc, obj))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/arm/
prog.go 9 "cmd/internal/obj"
10 "cmd/internal/obj/arm"
24 var progtable = [arm.ALAST & obj.AMask]gc.ProgInfo{
25 obj.ATYPE: {Flags: gc.Pseudo | gc.Skip},
26 obj.ATEXT: {Flags: gc.Pseudo},
27 obj.AFUNCDATA: {Flags: gc.Pseudo},
28 obj.APCDATA: {Flags: gc.Pseudo},
29 obj.AUNDEF: {Flags: gc.Break},
30 obj.AUSEFIELD: {Flags: gc.OK},
31 obj.AVARDEF: {Flags: gc.Pseudo | gc.RightWrite}
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/arm/
prog.go 9 "cmd/internal/obj"
10 "cmd/internal/obj/arm"
24 var progtable = [arm.ALAST & obj.AMask]gc.ProgInfo{
25 obj.ATYPE: {Flags: gc.Pseudo | gc.Skip},
26 obj.ATEXT: {Flags: gc.Pseudo},
27 obj.AFUNCDATA: {Flags: gc.Pseudo},
28 obj.APCDATA: {Flags: gc.Pseudo},
29 obj.AUNDEF: {Flags: gc.Break},
30 obj.AUSEFIELD: {Flags: gc.OK},
31 obj.AVARDEF: {Flags: gc.Pseudo | gc.RightWrite}
    [all...]
  /art/test/ti-agent/
agent_common.cc 28 JNIEnv* env, jclass, jobject obj, jlong tag) {
29 jvmtiError ret = jvmti_env->SetTag(obj, tag);
33 extern "C" JNIEXPORT jlong JNICALL Java_art_Main_getTag(JNIEnv* env, jclass, jobject obj) {
35 jvmtiError ret = jvmti_env->GetTag(obj, &tag);
  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
hooks_android.cpp 24 JNIEXPORT void JNICALL Java_com_android_gputest_GLtestLib_init(JNIEnv * env, jobject obj, jint width, jint height);
25 JNIEXPORT void JNICALL Java_com_android_gputest_GLtestLib_step(JNIEnv * env, jobject obj);
28 JNIEXPORT void JNICALL Java_com_android_gputest_GLtestLib_init(__attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj, jint width, jint height)
33 JNIEXPORT void JNICALL Java_com_android_gputest_GLtestLib_step(__attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/field/
GF2Polynomial.java 24 public boolean equals(Object obj)
26 if (this == obj)
30 if (!(obj instanceof GF2Polynomial))
34 GF2Polynomial other = (GF2Polynomial)obj;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Selector.java 14 * @param obj the object to be matched.
17 boolean match(T obj);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemObjectParser.java 13 * @param obj the PEM object containing the details for the specific object.
17 Object parseObject(PemObject obj)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 37 static boolean checkIsInstance(Class<?> clazz, Object obj) {
38 return clazz.isInstance(obj);
46 static void checkCast(Class<?> clazz, Object obj) {
47 clazz.cast(obj);
  /external/libnl/include/netlink/
hashtable.h 22 struct nl_object * obj; member in struct:nl_hash_node
39 struct nl_object *obj);
41 struct nl_object *obj);
44 struct nl_object *obj);
  /external/llvm/test/MC/Mips/
unaligned-nops.s 1 # RUN: llvm-mc -filetype=obj -triple=mipsel %s -o %t
  /frameworks/base/core/jni/
com_android_internal_util_VirtualRefBasePtr.cpp 24 VirtualLightRefBase* obj = reinterpret_cast<VirtualLightRefBase*>(objPtr); local
25 obj->incStrong(0);
29 VirtualLightRefBase* obj = reinterpret_cast<VirtualLightRefBase*>(objPtr); local
30 obj->decStrong(0);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
FindFieldTest.java 30 FindFieldBindingObject obj = new FindFieldBindingObject(); local
31 obj.mPublicField = "foo";
32 mBinder.setObj(obj);
34 assertEquals(obj.mPublicField, mBinder.textView1.getText().toString());
  /libcore/ojluni/src/main/java/java/lang/annotation/
Annotation.java 81 boolean equals(Object obj);
  /libcore/ojluni/src/main/java/java/text/
ParsePosition.java 124 public boolean equals(Object obj)
126 if (obj == null) return false;
127 if (!(obj instanceof ParsePosition))
129 ParsePosition other = (ParsePosition) obj;
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileKey.java 56 public boolean equals(Object obj) {
57 if (obj == this)
59 if (!(obj instanceof FileKey))
61 FileKey other = (FileKey)obj;
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileKey.java 48 public boolean equals(Object obj) {
49 if (obj == this)
51 if (!(obj instanceof UnixFileKey))
53 UnixFileKey other = (UnixFileKey)obj;
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Predicate.java 58 boolean equals(Object obj);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
big-obj.d 1 #as: -mbig-obj
3 #name: PE x64 big obj
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralString.java 20 * @param obj the object we want converted.
25 Object obj)
27 if (obj == null || obj instanceof DERGeneralString)
29 return (DERGeneralString) obj;
32 if (obj instanceof byte[])
36 return (DERGeneralString)fromByteArray((byte[])obj);
45 + obj.getClass().getName());
51 * @param obj the tagged object holding the object we want
59 ASN1TaggedObject obj,
    [all...]
DERGraphicString.java 17 * @param obj a DERGraphicString or an object that can be converted into one.
22 Object obj)
24 if (obj == null || obj instanceof DERGraphicString)
26 return (DERGraphicString)obj;
29 if (obj instanceof byte[])
33 return (DERGraphicString)fromByteArray((byte[])obj);
41 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
47 * @param obj the tagged object holding the object we want
55 ASN1TaggedObject obj,
    [all...]
DERT61String.java 21 * @param obj a DERT61String or an object that can be converted into one.
26 Object obj)
28 if (obj == null || obj instanceof DERT61String)
30 return (DERT61String)obj;
33 if (obj instanceof byte[])
37 return (DERT61String)fromByteArray((byte[])obj);
45 throw new IllegalArgumentException("illegal object in getInstance: " + obj.getClass().getName());
51 * @param obj the tagged object holding the object we want
59 ASN1TaggedObject obj,
    [all...]

Completed in 1075 milliseconds

<<11121314151617181920>>