Searched refs:obj (Results 126 - 150 of 2873) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libxml/src/win32/
H A DMakefile101 XML_OBJS = $(XML_INTDIR)\c14n.obj\
102 $(XML_INTDIR)\catalog.obj\
103 $(XML_INTDIR)\chvalid.obj\
104 $(XML_INTDIR)\debugXML.obj\
105 $(XML_INTDIR)\dict.obj\
106 $(XML_INTDIR)\DOCBparser.obj\
107 $(XML_INTDIR)\encoding.obj\
108 $(XML_INTDIR)\entities.obj\
109 $(XML_INTDIR)\error.obj\
110 $(XML_INTDIR)\globals.obj\
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dosr-elements-kind.js51 function getKind(obj) {
52 if (%HasFastSmiElements(obj)) return elements_kind.fast_smi_only;
53 if (%HasFastObjectElements(obj)) return elements_kind.fast;
54 if (%HasFastDoubleElements(obj)) return elements_kind.fast_double;
55 if (%HasDictionaryElements(obj)) return elements_kind.dictionary;
57 assertTrue(%HasExternalArrayElements(obj));
58 if (%HasExternalByteElements(obj)) {
61 if (%HasExternalUnsignedByteElements(obj)) {
64 if (%HasExternalShortElements(obj)) {
67 if (%HasExternalUnsignedShortElements(obj)) {
[all...]
/external/libnl/lib/
H A Dobject.c24 static inline struct nl_object_ops *obj_ops(struct nl_object *obj) argument
26 if (!obj->ce_ops)
29 return obj->ce_ops;
91 * @arg obj object to inherite data from
94 struct nl_object *nl_object_clone(struct nl_object *obj) argument
97 struct nl_object_ops *ops = obj_ops(obj);
109 new->ce_ops = obj->ce_ops;
110 new->ce_msgtype = obj->ce_msgtype;
111 new->ce_mask = obj->ce_mask;
114 memcpy((void *)new + doff, (void *)obj
133 nl_object_free(struct nl_object *obj) argument
162 nl_object_get(struct nl_object *obj) argument
173 nl_object_put(struct nl_object *obj) argument
194 nl_object_shared(struct nl_object *obj) argument
210 nl_object_mark(struct nl_object *obj) argument
219 nl_object_unmark(struct nl_object *obj) argument
229 nl_object_is_marked(struct nl_object *obj) argument
246 nl_object_dump(struct nl_object *obj, struct nl_dump_params *params) argument
315 nl_object_match_filter(struct nl_object *obj, struct nl_object *filter) argument
338 nl_object_attrs2str(struct nl_object *obj, uint32_t attrs, char *buf, size_t len) argument
359 nl_object_attr_list(struct nl_object *obj, char *buf, size_t len) argument
371 nl_object_get_refcnt(struct nl_object *obj) argument
376 nl_object_get_cache(struct nl_object *obj) argument
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_resampler.c43 resampler_t *obj = malloc(sizeof(resampler_t)); local
44 *resampInst = obj;
45 if (obj == NULL) {
54 resampler_t *obj = (resampler_t*) resampInst; local
55 memset(obj->buffer, 0, sizeof(obj->buffer));
56 obj->position = 0.0;
58 obj->deviceSampleRateHz = deviceSampleRateHz;
59 memset(obj->skewData, 0, sizeof(obj
68 resampler_t *obj = (resampler_t*) resampInst; local
80 resampler_t *obj = (resampler_t*) resampInst; local
137 resampler_t *obj = (resampler_t*)resampInst; local
[all...]
/external/qemu/include/qom/
H A Dobject.h101 * #define MY_DEVICE_GET_CLASS(obj) \
102 * OBJECT_GET_CLASS(MyDeviceClass, obj, TYPE_MY_DEVICE)
105 * #define MY_DEVICE(obj) \
106 * OBJECT_CHECK(MyDevice, obj, TYPE_MY_DEVICE)
163 * void (*frobnicate) (MyDevice *obj);
174 * void my_device_frobnicate(MyDevice *obj)
176 * MyDeviceClass *klass = MY_DEVICE_GET_CLASS(obj);
178 * klass->frobnicate(obj);
220 * typedef void (*MyDoSomething)(MyState *obj);
228 * static void my_do_something(MyState *obj)
[all...]
H A Dqom-qobject.h20 * @obj: the object
27 struct QObject *object_property_get_qobject(Object *obj, const char *name,
32 * @obj: the object
39 void object_property_set_qobject(Object *obj, struct QObject *qobj,
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfConfig.h65 #define STORE_TRACK_PARAMETERS(obj) (obj)->fStreamId = streamId;\
66 (obj)->fOffsetStart = offsetStart;\
67 (obj)->fOffsetEnd = offsetEnd;
68 #define STORE_TRACK_PARAMETER_OFFSET_END(obj,offsetEnd) (obj)->fOffsetEnd = (offsetEnd)-streamStart;
71 #define STORE_TRACK_PARAMETERS(obj)
72 #define STORE_TRACK_PARAMETER_OFFSET_END(obj,offsetEnd)
/external/chromium_org/ui/base/android/
H A Dview_android.cc18 ViewAndroid::ViewAndroid(JNIEnv* env, jobject obj, WindowAndroid* window) argument
19 : weak_java_view_(env, obj),
22 void ViewAndroid::Destroy(JNIEnv* env, jobject obj) { argument
23 DCHECK(obj && env->IsSameObject(weak_java_view_.get(env).obj(), obj));
45 jlong Init(JNIEnv* env, jobject obj, jlong window) { argument
47 env, obj, reinterpret_cast<ui::WindowAndroid*>(window));
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1625.js33 var obj = {};
34 var x = Object.defineProperties(obj, desc);
H A Dregress-3199913.js43 obj = new C()
44 assertEquals('called b(0, 1)', obj.f())
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Diteration.js48 obj = new Object();
49 obj.a = 11;
50 obj.b = 22;
53 for ( prop in obj )
54 properties += (prop + "=" + obj[prop] + ";");
59 obj.y = 33;
60 obj.x = 44;
62 for ( prop in obj )
45 obj = new Object(); class
/external/chromium_org/v8/test/webkit/
H A Dfor-in-avoid-duplicates.js36 var obj = new constr();
39 for (var prop in obj) {
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vtables-multiple-nonvirtual-inheritance-pure-virtual.cpp35 void build_vftable(C *obj) { obj->g(); } argument
/external/clang/test/Modules/Inputs/
H A DMethodPoolASub.h4 - (void)method5:(C*)obj;
/external/lzma/C/Util/LzmaLib/
H A Dmakefile10 $O\LzmaLibExports.obj \
13 $O\Alloc.obj \
14 $O\LzFind.obj \
15 $O\LzFindMt.obj \
16 $O\LzmaDec.obj \
17 $O\LzmaEnc.obj \
18 $O\LzmaLib.obj \
19 $O\Threads.obj \
/external/qemu/include/qapi/
H A Dqmp-input-visitor.h22 QmpInputVisitor *qmp_input_visitor_new(QObject *obj);
23 QmpInputVisitor *qmp_input_visitor_new_strict(QObject *obj);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DJoin.java9 for (Object obj : collection) {
10 String asString = obj == null ? null : obj.toString();
11 if (obj != null && asString.length() > 0) {
12 sb.append(del).append(obj);
22 for (Object obj : collection) {
23 String asString = obj == null ? null : obj.toString();
/external/skia/experimental/PdfViewer/
H A DSkPdfConfig.h65 #define STORE_TRACK_PARAMETERS(obj) (obj)->fStreamId = streamId;\
66 (obj)->fOffsetStart = offsetStart;\
67 (obj)->fOffsetEnd = offsetEnd;
68 #define STORE_TRACK_PARAMETER_OFFSET_END(obj,offsetEnd) (obj)->fOffsetEnd = (offsetEnd)-streamStart;
71 #define STORE_TRACK_PARAMETERS(obj)
72 #define STORE_TRACK_PARAMETER_OFFSET_END(obj,offsetEnd)
/external/harfbuzz_ng/test/api/
H A Dtest-object.c119 typedef void *(*reference_func_t) (void *obj);
120 typedef void (*destroy_func_t) (void *obj);
121 typedef hb_bool_t (*set_user_data_func_t) (void *obj, hb_user_data_key_t *key, void *data, hb_destroy_func_t destroy, hb_bool_t replace);
122 typedef void * (*get_user_data_func_t) (void *obj, hb_user_data_key_t *key);
123 typedef void (*make_immutable_func_t) (void *obj);
124 typedef hb_bool_t (*is_immutable_func_t) (void *obj);
233 void *obj; local
244 obj = o->create ();
245 g_assert (obj);
247 g_assert (obj
[all...]
/external/chromium_org/content/common/
H A Dpage_state_serialization.cc208 void WriteData(const void* data, int length, SerializeObject* obj) { argument
209 obj->pickle.WriteData(static_cast<const char*>(data), length);
212 void ReadData(SerializeObject* obj, const void** data, int* length) { argument
214 if (obj->pickle.ReadData(&obj->iter, &tmp, length)) {
217 obj->parse_error = true;
223 void WriteInteger(int data, SerializeObject* obj) { argument
224 obj->pickle.WriteInt(data);
227 int ReadInteger(SerializeObject* obj) { argument
229 if (obj
235 ConsumeInteger(SerializeObject* obj) argument
239 WriteInteger64(int64 data, SerializeObject* obj) argument
243 ReadInteger64(SerializeObject* obj) argument
251 ConsumeInteger64(SerializeObject* obj) argument
255 WriteReal(double data, SerializeObject* obj) argument
259 ReadReal(SerializeObject* obj) argument
273 ConsumeReal(SerializeObject* obj) argument
277 WriteBoolean(bool data, SerializeObject* obj) argument
281 ReadBoolean(SerializeObject* obj) argument
289 ConsumeBoolean(SerializeObject* obj) argument
293 WriteGURL(const GURL& url, SerializeObject* obj) argument
297 ReadGURL(SerializeObject* obj) argument
305 WriteStdString(const std::string& s, SerializeObject* obj) argument
309 ReadStdString(SerializeObject* obj) argument
320 WriteString(const base::NullableString16& str, SerializeObject* obj) argument
336 ReadStringNoCopy(SerializeObject* obj, int* num_chars) argument
357 ReadString(SerializeObject* obj) argument
365 ConsumeString(SerializeObject* obj) argument
370 WriteAndValidateVectorSize(const std::vector<T>& v, SerializeObject* obj) argument
372 WriteInteger(static_cast<int>(v.size()), obj); local
375 ReadAndValidateVectorSize(SerializeObject* obj, size_t element_size) argument
395 WriteStringVector( const std::vector<base::NullableString16>& data, SerializeObject* obj) argument
403 ReadStringVector(SerializeObject* obj, std::vector<base::NullableString16>* result) argument
414 WriteHttpBody(const ExplodedHttpBody& http_body, SerializeObject* obj) argument
447 ReadHttpBody(SerializeObject* obj, ExplodedHttpBody* http_body) argument
496 WriteFrameState( const ExplodedFrameState& state, SerializeObject* obj, bool is_top) argument
539 ReadFrameState(SerializeObject* obj, bool is_top, ExplodedFrameState* state) argument
637 WritePageState(const ExplodedPageState& state, SerializeObject* obj) argument
643 ReadPageState(SerializeObject* obj, ExplodedPageState* state) argument
751 SerializeObject obj; local
[all...]
/external/chromium_org/android_webview/native/
H A Daw_pdf_exporter.cc27 jobject obj,
29 : java_ref_(env, obj),
31 DCHECK(obj);
33 env, obj, reinterpret_cast<intptr_t>(this));
38 ScopedJavaLocalRef<jobject> obj = java_ref_.get(env); local
39 if (obj.is_null())
42 Java_AwPdfExporter_setNativeAwPdfExporter(env, obj.obj(), 0);
46 jobject obj,
50 CreatePdfSettings(env, obj);
26 AwPdfExporter(JNIEnv* env, jobject obj, WebContents* web_contents) argument
45 ExportToPdf(JNIEnv* env, jobject obj, int fd, jobject cancel_signal) argument
65 CreatePdfSettings(JNIEnv* env, jobject obj) argument
101 ScopedJavaLocalRef<jobject> obj = java_ref_.get(env); local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERTaggedObject.java16 * @param obj the tagged object.
20 ASN1Encodable obj)
22 super(true, tagNo, obj);
28 * @param obj the tagged object.
33 ASN1Encodable obj)
35 super(explicit, tagNo, obj);
58 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
74 ASN1Primitive primitive = obj.toASN1Primitive();
107 if (obj instanceof ASN1OctetString)
109 if (obj instanceo
18 BERTaggedObject( int tagNo, ASN1Encodable obj) argument
30 BERTaggedObject( boolean explicit, int tagNo, ASN1Encodable obj) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDHPrivateKeyParameters.java30 Object obj)
32 if (!(obj instanceof DHPrivateKeyParameters))
37 DHPrivateKeyParameters other = (DHPrivateKeyParameters)obj;
39 return other.getX().equals(this.x) && super.equals(obj);
29 equals( Object obj) argument
H A DDHPublicKeyParameters.java30 Object obj)
32 if (!(obj instanceof DHPublicKeyParameters))
37 DHPublicKeyParameters other = (DHPublicKeyParameters)obj;
39 return other.getY().equals(y) && super.equals(obj);
29 equals( Object obj) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java6 boolean match(Object obj); argument

Completed in 2429 milliseconds

1234567891011>>