Searched refs:obj (Results 51 - 75 of 2873) sorted by relevance

1234567891011>>

/external/lldb/test/python_api/default-constructor/
H A Dsb_broadcaster.py8 def fuzz_obj(obj):
9 obj.BroadcastEventByType(lldb.eBreakpointEventTypeInvalidType, True)
10 obj.BroadcastEvent(lldb.SBEvent(), False)
12 obj.AddInitialEventsToListener(listener, 0xffffffff)
13 obj.AddInitialEventsToListener(listener, 0)
14 obj.AddListener(listener, 0xffffffff)
15 obj.AddListener(listener, 0)
16 obj.GetName()
17 obj.EventTypeHasListeners(0)
18 obj
[all...]
H A DTestDefaultConstructorForAPIObjects.py26 obj = lldb.SBAddress()
28 print obj
29 self.assertFalse(obj)
30 # Do fuzz testing on the invalid obj, it should not crash lldb.
32 sb_address.fuzz_obj(obj)
36 obj = lldb.SBBlock()
38 print obj
39 self.assertFalse(obj)
40 # Do fuzz testing on the invalid obj, it should not crash lldb.
42 sb_block.fuzz_obj(obj)
[all...]
H A Dsb_listener.py8 def fuzz_obj(obj):
9 obj.AddEvent(lldb.SBEvent())
10 obj.StartListeningForEvents(lldb.SBBroadcaster(), 0xffffffff)
11 obj.StopListeningForEvents(lldb.SBBroadcaster(), 0xffffffff)
14 obj.WaitForEvent(5, event)
15 obj.WaitForEventForBroadcaster(5, broadcaster, event)
16 obj.WaitForEventForBroadcasterWithType(5, broadcaster, 0xffffffff, event)
17 obj.PeekAtNextEvent(event)
18 obj.PeekAtNextEventForBroadcaster(broadcaster, event)
19 obj
[all...]
/external/lzma/CPP/7zip/Bundles/Format7zExtractR/
H A Dmakefile8 $O\CRC.obj \
9 $O\IntToString.obj \
10 $O\NewHandler.obj \
11 $O\MyString.obj \
12 $O\StringConvert.obj \
13 $O\StringToInt.obj \
14 $O\MyVector.obj \
15 $O\Wildcard.obj \
18 $O\PropVariant.obj \
19 $O\Synchronization.obj \
[all...]
/external/lzma/CPP/7zip/Bundles/Alone7z/
H A Dmakefile11 $O\BenchCon.obj \
12 $O\ConsoleClose.obj \
13 $O\ExtractCallbackConsole.obj \
14 $O\List.obj \
15 $O\Main.obj \
16 $O\MainAr.obj \
17 $O\OpenCallbackConsole.obj \
18 $O\PercentPrinter.obj \
19 $O\UpdateCallbackConsole.obj \
20 $O\UserInputUtils.obj \
[all...]
/external/lzma/CPP/7zip/UI/Console/
H A Dmakefile12 $O\ConsoleClose.obj \
13 $O\ExtractCallbackConsole.obj \
14 $O\List.obj \
15 $O\BenchCon.obj \
16 $O\Main.obj \
17 $O\MainAr.obj \
18 $O\OpenCallbackConsole.obj \
19 $O\PercentPrinter.obj \
20 $O\UpdateCallbackConsole.obj \
21 $O\UserInputUtils.obj \
[all...]
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A Dmakefile6 $O\LzmaAlone.obj \
9 $O\LzmaDecoder.obj \
10 $O\LzmaEncoder.obj \
11 $O\LzmaRegister.obj \
14 $O\CommandLineParser.obj \
15 $O\CRC.obj \
16 $O\IntToString.obj \
17 $O\MyString.obj \
18 $O\StringConvert.obj \
19 $O\StringToInt.obj \
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dcommon.h34 #define LOG_J(sev, obj) LOG(sev) << "Jingle:" << obj->ToString() << ": "
35 #define LOG_JV(sev, obj) LOG_V(sev) << "Jingle:" << obj->ToString() << ": "
/external/lzma/C/Util/SfxSetup/
H A Dmakefile6 $O\7zAlloc.obj \
7 $O\7zBuf.obj \
8 $O\7zBuf2.obj \
9 $O\7zCrc.obj \
10 $O\7zCrcOpt.obj \
11 $O\7zFile.obj \
12 $O\7zDec.obj \
13 $O\7zIn.obj \
14 $O\7zStream.obj \
15 $O\Bcj2.obj \
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2410.js35 var obj = { thrower: 'local' };
36 assertEquals(['thrower'], Object.getOwnPropertyNames(obj));
H A Dregress-362870.js9 var obj = {};
12 Object.defineProperty(obj, "x" + i, { value: 31415 });
13 Object.defineProperty(obj, "y" + i, {
17 assertTrue(%HasFastProperties(obj));
H A Dregress-619.js31 var obj = {};
32 obj[1] = 42;
33 assertEquals(42, obj[1]);
34 Object.defineProperty(obj, '1', {value:10, writable:false});
35 assertEquals(10, obj[1]);
37 // We should not be able to override obj[1].
38 obj[1] = 5;
39 assertEquals(10, obj[1]);
43 obj[i] = 42;
47 Object.defineProperty(obj,
[all...]
H A Dregress-crbug-245480.js31 function isHoley(obj) {
32 if (%HasFastHoleyElements(obj)) return true;
36 function assertHoley(obj, name_opt) {
37 assertEquals(true, isHoley(obj), name_opt);
40 function assertNotHoley(obj, name_opt) {
41 assertEquals(false, isHoley(obj), name_opt);
48 obj = create_array(0);
49 assertNotHoley(obj);
52 obj = create_array(10);
53 assertHoley(obj);
[all...]
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vtables-multiple-nonvirtual-inheritance-vdtors.cpp30 void build_vftable(C *obj) { delete obj; } argument
55 void build_vftable(E *obj) { delete obj; } argument
75 void build_vftable(F *obj) { delete obj; } argument
94 void build_vftable(G *obj) { delete obj; } argument
/external/chromium_org/v8/test/webkit/
H A Dcodegen-assign-nontemporary-as-rexp.js30 var obj = {};
32 obj.__defineSetter__('slot',
37 obj2.forward = (obj['slot'] = victim);
45 var obj = {};
47 obj.__defineSetter__('slot',
52 obj2.forward = (obj.slot = victim);
/external/openssl/crypto/des/
H A Dmakefile.bc13 .c.obj:
16 .obj.exe:
17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
21 # "make clean": use a directory containing only libdes .exe and .obj files...
24 del *.obj
28 OBJS= cbc_cksm.obj cbc_enc.obj ecb_enc.obj pcbc_enc.obj \
29 qud_cksm.obj rand_ke
[all...]
/external/qemu/include/qapi/qmp/
H A Dqobject.h67 #define QOBJECT(obj) (&(obj)->base)
70 #define QINCREF(obj) \
71 qobject_incref(QOBJECT(obj))
74 #define QDECREF(obj) \
75 qobject_decref(obj ? QOBJECT(obj) : NULL)
78 #define QOBJECT_INIT(obj, qtype_type) \
79 obj->base.refcnt = 1; \
80 obj
85 qobject_incref(QObject *obj) argument
95 qobject_decref(QObject *obj) argument
107 qobject_type(const QObject *obj) argument
[all...]
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
H A Dobject.js25 * @param {Object.<K,V>} obj The object over which to iterate.
32 goog.object.forEach = function(obj, f, opt_obj) {
33 for (var key in obj) {
34 f.call(opt_obj, obj[key], key, obj);
43 * @param {Object.<K,V>} obj The object over which to iterate.
55 goog.object.filter = function(obj, f, opt_obj) {
57 for (var key in obj) {
58 if (f.call(opt_obj, obj[key], key, obj)) {
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dallocation-site-info.js47 function getKind(obj) {
48 if (%HasFastSmiElements(obj)) return elements_kind.fast_smi_only;
49 if (%HasFastObjectElements(obj)) return elements_kind.fast;
50 if (%HasFastDoubleElements(obj)) return elements_kind.fast_double;
51 if (%HasDictionaryElements(obj)) return elements_kind.dictionary;
54 function isHoley(obj) {
55 if (%HasFastHoleyElements(obj)) return true;
59 function assertKind(expected, obj, name_opt) {
60 assertEquals(expected, getKind(obj), name_opt);
63 function assertHoley(obj, name_op
[all...]
/external/lzma/CPP/7zip/Bundles/Format7zR/
H A Dmakefile7 $O\CRC.obj \
8 $O\IntToString.obj \
9 $O\NewHandler.obj \
10 $O\MyString.obj \
11 $O\StringConvert.obj \
12 $O\StringToInt.obj \
13 $O\MyVector.obj \
14 $O\Wildcard.obj \
17 $O\FileDir.obj \
18 $O\FileFind.obj \
[all...]
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dinline-accessors.js30 var accessorCallCount, setterArgument, setterValue, obj, forceDeopt;
35 function TestInlinedGetter(context, obj, expected) {
39 assertEquals(expected, context(obj));
42 assertEquals(expected, context(obj));
46 assertEquals(expected, context(obj));
50 assertEquals(expected, context(obj));
55 function value_context_for_getter(obj) {
56 return obj.getterProperty;
59 function test_context_for_getter(obj) {
60 if (obj
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DAttCertIssuer.java15 ASN1Encodable obj; field in class:AttCertIssuer
19 Object obj)
21 if (obj == null || obj instanceof AttCertIssuer)
23 return (AttCertIssuer)obj;
25 else if (obj instanceof V2Form)
27 return new AttCertIssuer(V2Form.getInstance(obj));
29 else if (obj instanceof GeneralNames)
31 return new AttCertIssuer((GeneralNames)obj);
33 else if (obj instanceo
18 getInstance( Object obj) argument
45 getInstance( ASN1TaggedObject obj, boolean explicit) argument
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-object-private.hh115 static inline void hb_object_trace (const Type *obj, const char *function) argument
117 DEBUG_MSG (OBJECT, (void *) obj,
120 obj ? obj->header.ref_count.ref_count : 0);
126 Type *obj = (Type *) calloc (1, sizeof (Type)); local
128 if (unlikely (!obj))
129 return obj;
131 hb_object_init (obj);
132 hb_object_trace (obj, HB_FUNC);
133 return obj;
136 hb_object_init(Type *obj) argument
142 hb_object_is_inert(const Type *obj) argument
147 hb_object_reference(Type *obj) argument
156 hb_object_destroy(Type *obj) argument
169 hb_object_set_user_data(Type *obj, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
181 hb_object_get_user_data(Type *obj, hb_user_data_key_t *key) argument
[all...]
/external/chromium_org/content/browser/android/
H A Dinterstitial_page_delegate_android.cc20 jobject obj,
22 : weak_java_obj_(env, obj),
29 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local
30 if (obj.obj())
31 Java_InterstitialPageDelegateAndroid_onNativeDestroyed(env, obj.obj());
34 void InterstitialPageDelegateAndroid::Proceed(JNIEnv* env, jobject obj) { argument
40 jobject obj) {
51 ScopedJavaLocalRef<jobject> obj local
18 InterstitialPageDelegateAndroid( JNIEnv* env, jobject obj, const std::string& html_content) argument
39 DontProceed(JNIEnv* env, jobject obj) argument
58 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local
66 ScopedJavaLocalRef<jobject> obj = weak_java_obj_.get(env); local
87 Init(JNIEnv* env, jobject obj, jstring html_content) argument
[all...]
/external/zlib/src/contrib/delphi/
H A Dzlibd32.mak21 OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
22 OBJ2 = gzwrite.obj infback.obj inffast.obj inflat
[all...]

Completed in 435 milliseconds

1234567891011>>