Home
last modified time | relevance | path

Searched refs:newObj (Results 1 – 16 of 16) sorted by relevance

/third_party/skia/modules/particles/include/
DSkReflected.h176 sk_sp<SkReflected> newObj = obj; in visit() local
177 this->visit(newObj, T::GetType()); in visit()
178 if (newObj != obj) { in visit()
179 if (!newObj || newObj->isOfType(T::GetType())) { in visit()
180 obj.reset(static_cast<T*>(newObj.release())); in visit()
/third_party/flutter/skia/modules/particles/include/
DSkReflected.h198 sk_sp<SkReflected> newObj = obj; in visit() local
199 this->visit(newObj, T::GetType()); in visit()
200 if (newObj != obj) { in visit()
201 if (!newObj || newObj->isOfType(T::GetType())) { in visit()
202 obj.reset(static_cast<T*>(newObj.release())); in visit()
/third_party/icu/icu4c/source/i18n/
Dcurrpinf.cpp169 CurrencyPluralInfo* newObj = new CurrencyPluralInfo(*this); in clone() local
172 if (newObj != nullptr && U_FAILURE(newObj->fInternalStatus)) { in clone()
173 delete newObj; in clone()
174 newObj = nullptr; in clone()
176 return newObj; in clone()
Dplurrule.cpp108 LocalPointer<PluralRules> newObj(new PluralRules(*this), status); in clone() local
109 if (U_SUCCESS(status) && U_FAILURE(newObj->mInternalStatus)) { in clone()
110 status = newObj->mInternalStatus; in clone()
111 newObj.adoptInstead(nullptr); in clone()
113 return newObj.orphan(); in clone()
249 LocalPointer<PluralRules> newObj(new PluralRules(status), status); in internalForLocale() local
253 UnicodeString locRule = newObj->getRuleFromResource(locale, type, status); in internalForLocale()
267 parser.parse(locRule, newObj.getAlias(), status); in internalForLocale()
273 newObj->mStandardPluralRanges = StandardPluralRanges::forLocale(locale, status) in internalForLocale()
277 return newObj.orphan(); in internalForLocale()
/third_party/node/deps/icu-small/source/i18n/
Dcurrpinf.cpp169 CurrencyPluralInfo* newObj = new CurrencyPluralInfo(*this); in clone() local
172 if (newObj != nullptr && U_FAILURE(newObj->fInternalStatus)) { in clone()
173 delete newObj; in clone()
174 newObj = nullptr; in clone()
176 return newObj; in clone()
Dplurrule.cpp108 LocalPointer<PluralRules> newObj(new PluralRules(*this), status); in clone() local
109 if (U_SUCCESS(status) && U_FAILURE(newObj->mInternalStatus)) { in clone()
110 status = newObj->mInternalStatus; in clone()
111 newObj.adoptInstead(nullptr); in clone()
113 return newObj.orphan(); in clone()
249 LocalPointer<PluralRules> newObj(new PluralRules(status), status); in internalForLocale() local
253 UnicodeString locRule = newObj->getRuleFromResource(locale, type, status); in internalForLocale()
267 parser.parse(locRule, newObj.getAlias(), status); in internalForLocale()
273 newObj->mStandardPluralRanges = StandardPluralRanges::forLocale(locale, status) in internalForLocale()
277 return newObj.orphan(); in internalForLocale()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dcurrpinf.cpp169 CurrencyPluralInfo* newObj = new CurrencyPluralInfo(*this); in clone() local
172 if (newObj != nullptr && U_FAILURE(newObj->fInternalStatus)) { in clone()
173 delete newObj; in clone()
174 newObj = nullptr; in clone()
176 return newObj; in clone()
Dplurrule.cpp91 PluralRules* newObj = new PluralRules(*this); in clone() local
94 if (newObj != nullptr && U_FAILURE(newObj->mInternalStatus)) { in clone()
95 delete newObj; in clone()
96 newObj = nullptr; in clone()
98 return newObj; in clone()
230 LocalPointer<PluralRules> newObj(new PluralRules(status), status); in internalForLocale() local
234 UnicodeString locRule = newObj->getRuleFromResource(locale, type, status); in internalForLocale()
248 parser.parse(locRule, newObj.getAlias(), status); in internalForLocale()
254 return newObj.orphan(); in internalForLocale()
/third_party/skia/third_party/externals/icu/source/i18n/
Dcurrpinf.cpp169 CurrencyPluralInfo* newObj = new CurrencyPluralInfo(*this); in clone() local
172 if (newObj != nullptr && U_FAILURE(newObj->fInternalStatus)) { in clone()
173 delete newObj; in clone()
174 newObj = nullptr; in clone()
176 return newObj; in clone()
Dplurrule.cpp108 LocalPointer<PluralRules> newObj(new PluralRules(*this), status); in clone() local
109 if (U_SUCCESS(status) && U_FAILURE(newObj->mInternalStatus)) { in clone()
110 status = newObj->mInternalStatus; in clone()
111 newObj.adoptInstead(nullptr); in clone()
113 return newObj.orphan(); in clone()
249 LocalPointer<PluralRules> newObj(new PluralRules(status), status); in internalForLocale() local
253 UnicodeString locRule = newObj->getRuleFromResource(locale, type, status); in internalForLocale()
267 parser.parse(locRule, newObj.getAlias(), status); in internalForLocale()
273 newObj->mStandardPluralRanges = StandardPluralRanges::forLocale(locale, status) in internalForLocale()
277 return newObj.orphan(); in internalForLocale()
/third_party/cups-filters/filter/
Dimagetopdf.c92 static int newObj(void);
221 pageObjects[i] = newObj(); in allocPageObjects()
225 static int newObj(void) in newObj() function
341 newObj(); /* dummy for no 0 object */ in outPrologue()
354 catalogObj = newObj(); in outPrologue()
355 pagesObj = newObj(); in outPrologue()
425 trfuncObj = newObj(); in outPageObject()
426 lengthObj = newObj(); in outPageObject()
467 lengthObj = newObj(); in outPageContents()
537 lengthObj = newObj(); in outImage()
[all …]
/third_party/mesa3d/src/mesa/main/
Darrayobj.c916 struct gl_vertex_array_object *newObj = NULL; in bind_vertex_array() local
930 newObj = ctx->Array.DefaultVAO; in bind_vertex_array()
934 newObj = _mesa_lookup_vao(ctx, id); in bind_vertex_array()
935 if (!no_error && !newObj) { in bind_vertex_array()
941 newObj->EverBound = GL_TRUE; in bind_vertex_array()
956 _mesa_reference_vao(ctx, &ctx->Array.VAO, newObj); in bind_vertex_array()
962 (oldObj == ctx->Array.DefaultVAO) != (newObj == ctx->Array.DefaultVAO)) in bind_vertex_array()
Dpipelineobj.c444 struct gl_pipeline_object *newObj = NULL; in bind_program_pipeline() local
474 newObj = _mesa_lookup_pipeline_object(ctx, pipeline); in bind_program_pipeline()
475 if (!no_error && !newObj) { in bind_program_pipeline()
484 newObj->EverBound = GL_TRUE; in bind_program_pipeline()
487 _mesa_bind_pipeline(ctx, newObj); in bind_program_pipeline()
/third_party/node/deps/npm/node_modules/qs/lib/
Dparse.js169 var newObj = parseKeys(key, tempObj[key], options);
170 obj = utils.merge(obj, newObj, options);
/third_party/node/lib/
Dbuffer.js348 const newObj = createUnsafeBuffer(items.length); constant
350 newObj[k] = items[k];
351 return newObj;
/third_party/node/deps/npm/node_modules/qs/dist/
Dqs.js203 var newObj = parseKeys(key, tempObj[key], options);
204 obj = utils.merge(obj, newObj, options);