Searched refs:obj (Results 101 - 125 of 2873) sorted by last modified time

1234567891011>>

/external/stlport/test/unit/
H A Dmfunptr_test.cpp73 Class obj; local
74 const Class& objc = obj;
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1);
114 mem_fun_ref(&Class::f0)(obj);
115 mem_fun_ref(&Class::f1)(obj, s1);
118 mem_fun_ref(&Class::vf0)(obj);
119 mem_fun_ref(&Class::vf1)(obj, s
[all...]
/external/strace/
H A Daio.c138 PADDEDptr(struct iocb *obj, __pad2);
328 event.data, event.obj,
365 event.obj, event.res, event.res2);
/external/stressapptest/
H A Dconfigure3188 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
3214 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
3283 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
3377 rm -f conftest.o conftest.obj
3389 for ac_file in conftest.o conftest.obj conftest.*; do
6018 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
/external/srtp/
H A Dconfigure1762 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
1851 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
1893 rm -f conftest.o conftest.obj
1899 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
7255 sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py701 obj = MetaEvent(ticks, seq, meta_type, msg)
702 return obj
/external/skia/src/core/
H A DSkComposeShader.cpp76 template <typename T> void safe_call_destructor(T* obj) { argument
77 if (obj) {
78 obj->~T();
H A DSkPicture.cpp35 template <typename T> int SafeCount(const T* obj) { argument
36 return obj ? obj->count() : 0;
H A DSkPictureFlat.cpp55 SkRefCnt* SkTypefacePlayback::set(int index, SkRefCnt* obj) { argument
57 SkRefCnt_SafeAssign(fArray[index], obj);
58 return obj;
H A DSkPictureFlat.h262 // Flatten obj into an SkFlatData with this index. controller owns the SkFlatData*.
264 static SkFlatData* Create(SkFlatController* controller, const T& obj, int index) { argument
273 Traits::Flatten(buffer, obj);
H A DSkPicturePlayback.cpp21 template <typename T> int SafeCount(const T* obj) { argument
22 return obj ? obj->count() : 0;
H A DSkReadBuffer.cpp328 SkFlattenable* obj = NULL;
332 obj = (*factory)(*this);
343 return obj;
H A DSkScalerContext.cpp71 SkFlattenable* obj = NULL; local
77 obj = buffer.readFlattenable(ft);
80 return obj;
H A DSkTRefArray.h28 SkTRefArray<T>* obj = (SkTRefArray<T>*)sk_malloc_throw(size); local
30 SkNEW_PLACEMENT(obj, SkTRefArray<T>);
31 obj->fCount = count;
32 return obj;
42 SkTRefArray<T>* obj = Alloc(count); local
43 T* array = const_cast<T*>(obj->begin());
47 return obj;
56 SkTRefArray<T>* obj = Alloc(count); local
57 T* array = const_cast<T*>(obj->begin());
61 return obj;
[all...]
H A DSkValidatingReadBuffer.cpp243 SkFlattenable* obj = NULL; local
247 obj = (*factory)(*this);
253 delete obj;
254 obj = NULL;
261 return obj;
H A DSkWriteBuffer.cpp213 void SkWriteBuffer::writeTypeface(SkTypeface* obj) { argument
214 if (NULL == obj || NULL == fTFSet) {
217 fWriter.write32(fTFSet->add(obj));
319 // record the obj's size
/external/skia/src/gpu/gl/debug/
H A DGrGLCreateDebugInterface.cpp516 GrFakeRefObj *obj = GrDebugGL::getInstance()->createObj(type); local
517 GrAlwaysAssert(obj);
518 ids[i] = obj->getID();
/external/skia/src/pdf/
H A DSkPDFCatalog.cpp27 SkPDFObject* SkPDFCatalog::addObject(SkPDFObject* obj, bool onFirstPage) { argument
28 if (findObjectIndex(obj) != -1) { // object already added
29 return obj;
36 struct Rec newEntry(obj, onFirstPage);
38 return obj;
41 size_t SkPDFCatalog::setFileOffset(SkPDFObject* obj, off_t offset) { argument
42 int objIndex = assignObjNum(obj) - 1;
47 return getSubstituteObject(obj)->getOutputSize(this, true);
50 void SkPDFCatalog::emitObjectNumber(SkWStream* stream, SkPDFObject* obj) { argument
51 stream->writeDecAsText(assignObjNum(obj));
55 getObjectNumberSize(SkPDFObject* obj) argument
76 assignObjNum(SkPDFObject* obj) argument
[all...]
H A DSkPDFCatalog.h32 /** Add the passed object to the catalog. Refs obj.
33 * @param obj The object to add.
35 * @return The obj argument is returned.
37 SkPDFObject* addObject(SkPDFObject* obj, bool onFirstPage);
42 * @param obj The object to add.
45 size_t setFileOffset(SkPDFObject* obj, off_t offset);
48 * @param obj The object of interest.
51 void emitObjectNumber(SkWStream* stream, SkPDFObject* obj);
55 * @param obj The object of interest
57 size_t getObjectNumberSize(SkPDFObject* obj);
[all...]
H A DSkPDFTypes.cpp39 stream->writeText(" obj\n");
45 return catalog->getObjectNumberSize(this) + strlen(" obj\n") +
74 SkPDFObjRef::SkPDFObjRef(SkPDFObject* obj) : fObj(obj) { argument
75 SkSafeRef(obj);
H A DSkPDFTypes.h114 * @param obj The object to reference.
116 explicit SkPDFObjRef(SkPDFObject* obj);
/external/skia/src/pipe/
H A DSkGPipeRead.cpp47 static void set_paintflat(SkPaint* paint, SkFlattenable* obj, unsigned paintFlat) { argument
51 paint->setColorFilter((SkColorFilter*)obj);
54 paint->setLooper((SkDrawLooper*)obj);
57 paint->setMaskFilter((SkMaskFilter*)obj);
60 paint->setPathEffect((SkPathEffect*)obj);
63 paint->setRasterizer((SkRasterizer*)obj);
66 paint->setShader((SkShader*)obj);
69 paint->setImageFilter((SkImageFilter*)obj);
72 paint->setXfermode((SkXfermode*)obj);
125 SkFlattenable* obj
[all...]
H A DSkGPipeWrite.cpp344 int flattenToIndex(SkFlattenable* obj, PaintFlats);
393 // return 0 for NULL (or unflattenable obj), or index-base-1
395 int SkGPipeCanvas::flattenToIndex(SkFlattenable* obj, PaintFlats paintflat) { argument
397 if (NULL == obj) {
403 const SkFlatData* flat = fFlatDictionary.findAndReplace(*obj, fFlattenableHeap.flatToReplace(),
/external/skia/src/utils/
H A DSkLua.cpp58 template <typename T> void push_obj(lua_State* L, const T& obj) { argument
59 new (lua_newuserdata(L, sizeof(T))) T(obj);
/external/skia/src/views/
H A DSkViewPriv.cpp37 SkView::Artist* SkView::setArtist(Artist* obj) argument
39 if (obj == NULL)
48 SkRefCnt_SafeAssign(rec->fArtist, obj);
50 this->addTagList(new Artist_SkTagList(obj));
52 return obj;
83 SkView::Layout* SkView::setLayout(Layout* obj, bool invokeLayoutNow) argument
85 if (obj == NULL)
94 SkRefCnt_SafeAssign(rec->fLayout, obj);
96 this->addTagList(new Layout_SkTagList(obj));
102 return obj;
[all...]
/external/skia/src/xml/
H A DSkJS.cpp77 global_enumerate(JSContext *cx, JSObject *obj) argument
80 return JS_EnumerateStandardClasses(cx, obj);
87 global_resolve(JSContext *cx, JSObject *obj, jsval id, uintN flags, JSObject **objp) argument
93 if (!JS_ResolveStandardClass(cx, obj, id, &resolved))
96 *objp = obj;
138 fun = JS_DefineFunction(cx, obj, name, Exec, 0, JSPROP_ENUMERATE);
141 *objp = obj;

Completed in 5388 milliseconds

1234567891011>>