Home
last modified time | relevance | path

Searched refs:reset (Results 1 – 25 of 3412) sorted by relevance

12345678910>>...137

/external/v8/src/compiler-dispatcher/
Dcompiler-dispatcher-job.cc52 unicode_cache_.reset(new UnicodeCache()); in PrepareToParseOnMainThread()
53 zone_.reset(new Zone(isolate_->allocator(), ZONE_NAME)); in PrepareToParseOnMainThread()
59 character_stream_.reset(ScannerStream::For( in PrepareToParseOnMainThread()
66 character_stream_.reset(ScannerStream::For( in PrepareToParseOnMainThread()
69 parse_info_.reset(new ParseInfo(zone_.get())); in PrepareToParseOnMainThread()
80 parser_.reset(new Parser(parse_info_.get())); in PrepareToParseOnMainThread()
108 no_deref.reset(new DisallowHandleDereference()); in Parse()
160 parser_.reset(); in FinalizeParsingOnMainThread()
161 unicode_cache_.reset(); in FinalizeParsingOnMainThread()
162 character_stream_.reset(); in FinalizeParsingOnMainThread()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DTestUScriptRun.java231 scriptRun.reset(0, 100); in TestReset()
238 scriptRun.reset(100, 0); in TestReset()
245 scriptRun.reset(0, -100); in TestReset()
252 scriptRun.reset(-100, 0); in TestReset()
259 scriptRun.reset(dummy, 0, 6); in TestReset()
266 scriptRun.reset(dummy, 6, 0); in TestReset()
273 scriptRun.reset(dummy, 0, -100); in TestReset()
280 scriptRun.reset(dummy, -100, 0); in TestReset()
287 scriptRun.reset(dummy, 0, dummy.length); in TestReset()
294 scriptRun.reset(0, 6); in TestReset()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DTestUScriptRun.java232 scriptRun.reset(0, 100); in TestReset()
239 scriptRun.reset(100, 0); in TestReset()
246 scriptRun.reset(0, -100); in TestReset()
253 scriptRun.reset(-100, 0); in TestReset()
260 scriptRun.reset(dummy, 0, 6); in TestReset()
267 scriptRun.reset(dummy, 6, 0); in TestReset()
274 scriptRun.reset(dummy, 0, -100); in TestReset()
281 scriptRun.reset(dummy, -100, 0); in TestReset()
288 scriptRun.reset(dummy, 0, dummy.length); in TestReset()
295 scriptRun.reset(0, 6); in TestReset()
[all …]
/external/icu/icu4c/source/extra/scrptrun/
Dscrptrun.h44 void reset();
46 void reset(int32_t start, int32_t count);
48 void reset(const UChar chars[], int32_t start, int32_t length);
104 reset(NULL, 0, 0); in ScriptRun()
109 reset(chars, 0, length); in ScriptRun()
114 reset(chars, start, length); in ScriptRun()
132 inline void ScriptRun::reset() in reset() function
140 inline void ScriptRun::reset(int32_t start, int32_t length) in reset() function
145 reset(); in reset()
148 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length) in reset() function
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUScriptRun.java69 reset(nullChars, 0, 0); in UScriptRun()
84 reset (text); in UScriptRun()
101 reset(text, start, count); in UScriptRun()
116 reset(chars); in UScriptRun()
133 reset(chars, start, count); in UScriptRun()
144 public final void reset() in reset() method in UScriptRun
176 public final void reset(int start, int count) in reset() method in UScriptRun
192 reset(); in reset()
208 public final void reset(char[] chars, int start, int count) in reset() method in UScriptRun
216 reset(start, count); in reset()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUScriptRun.java71 reset(nullChars, 0, 0); in UScriptRun()
86 reset (text); in UScriptRun()
103 reset(text, start, count); in UScriptRun()
118 reset(chars); in UScriptRun()
135 reset(chars, start, count); in UScriptRun()
146 public final void reset() in reset() method in UScriptRun
178 public final void reset(int start, int count) in reset() method in UScriptRun
194 reset(); in reset()
210 public final void reset(char[] chars, int start, int count) in reset() method in UScriptRun
218 reset(start, count); in reset()
[all …]
/external/mockito/src/test/java/org/mockitousage/basicapi/
DResetTest.java31 reset(mock); in shouldResetOngoingStubbingSoThatMoreMeaningfulExceptionsAreRaised()
41 reset(""); in resettingNonMockIsSafe()
46 reset(new Object[]{null}); in resettingNullIsSafe()
53 reset(mock); in shouldRemoveAllStubbing()
61 reset(mock); in shouldRemoveAllInteractions()
69 reset(mockTwo); in shouldRemoveStubbingToString()
77 reset(mock); in shouldStubbingNotBeTreatedAsInteraction()
85 reset(mock); in shouldNotAffectMockName()
94 reset(mock, mockTwo); in shouldResetMultipleMocks()
104 reset(mockTwo); in shouldValidateStateWhenResetting()
[all …]
/external/skia/src/core/
DSkAutoPixmapStorage.h51 void reset() { in reset() function
53 this->INHERITED::reset(); in reset()
55 void reset(const SkImageInfo& info, const void* addr, size_t rb, SkColorTable* ctable = NULL) {
57 this->INHERITED::reset(info, addr, rb, ctable);
59 void reset(const SkImageInfo& info) { in reset() function
61 this->INHERITED::reset(info); in reset()
63 bool SK_WARN_UNUSED_RESULT reset(const SkMask& mask) { in reset() function
65 return this->INHERITED::reset(mask); in reset()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.remove/
Dremove_if.pass.cpp62 ia[0].reset(new int(0)); in test1()
63 ia[1].reset(new int(1)); in test1()
64 ia[2].reset(new int(2)); in test1()
65 ia[3].reset(new int(3)); in test1()
66 ia[4].reset(new int(4)); in test1()
67 ia[5].reset(new int(2)); in test1()
68 ia[6].reset(new int(3)); in test1()
69 ia[7].reset(new int(4)); in test1()
70 ia[8].reset(new int(2)); in test1()
Dremove.pass.cpp50 ia[0].reset(new int(0)); in test1()
51 ia[1].reset(new int(1)); in test1()
52 ia[3].reset(new int(3)); in test1()
53 ia[4].reset(new int(4)); in test1()
54 ia[6].reset(new int(3)); in test1()
55 ia[7].reset(new int(4)); in test1()
/external/skia/tests/
DUtilsTest.cpp59 tmp.reset(0); // test out reset(0) when already at 0 in test_autostarray()
60 tmp.reset(4); // this should force a new allocation in test_autostarray()
62 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
63 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
68 tmp.reset(0); in test_autostarray()
73 tmp.reset(2); // this should use the preexisting allocation in test_autostarray()
75 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
76 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
88 tmp[0].reset(SkRef(&obj0)); in test_autostarray()
89 tmp[1].reset(SkRef(&obj1)); in test_autostarray()
[all …]
DIsClosedSingleContourTest.cpp14 p.reset(); in DEF_TEST()
18 p.reset(); in DEF_TEST()
23 p.reset(); in DEF_TEST()
29 p.reset(); in DEF_TEST()
38 p.reset(); in DEF_TEST()
44 p.reset(); in DEF_TEST()
52 p.reset(); in DEF_TEST()
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
Dunique.pass.cpp109 ib[1].reset(&one); in test1()
123 id[2].reset(&one); in test1()
131 ie[2].reset(&one); in test1()
140 ig[2].reset(&one); in test1()
141 ig[3].reset(&one); in test1()
149 ih[1].reset(&one); in test1()
150 ih[2].reset(&one); in test1()
158 ii[1].reset(&one); in test1()
159 ii[2].reset(&one); in test1()
160 ii[3].reset(&one); in test1()
[all …]
Dunique_pred.pass.cpp137 ib[1].reset(&one); in test1()
155 id[2].reset(&one); in test1()
165 ie[2].reset(&one); in test1()
176 ig[2].reset(&one); in test1()
177 ig[3].reset(&one); in test1()
187 ih[1].reset(&one); in test1()
188 ih[2].reset(&one); in test1()
198 ii[1].reset(&one); in test1()
199 ii[2].reset(&one); in test1()
200 ii[3].reset(&one); in test1()
[all …]
/external/webrtc/webrtc/modules/video_processing/util/
Ddenoiser_filter.cc33 filter.reset(new DenoiserFilterSSE2()); in Create()
35 filter.reset(new DenoiserFilterC()); in Create()
39 filter.reset(new DenoiserFilterNEON()); in Create()
41 filter.reset(new DenoiserFilterC()); in Create()
44 filter.reset(new DenoiserFilterC()); in Create()
47 filter.reset(new DenoiserFilterC()); in Create()
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.mod/
Dreset.pass.cpp34 static_assert(noexcept(opt.reset()) == true, ""); in main()
35 opt.reset(); in main()
40 opt.reset(); in main()
45 static_assert(noexcept(opt.reset()) == true, ""); in main()
47 opt.reset(); in main()
55 opt.reset(); in main()
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dresolver_service_base.ipp51 work_.reset();
58 work_thread_.reset();
60 work_io_service_.reset();
76 work_io_service_->reset();
77 work_thread_.reset(new asio::detail::thread(
86 impl.reset(static_cast<void*>(0), socket_ops::noop_deleter());
94 impl.reset();
102 impl.reset(static_cast<void*>(0), socket_ops::noop_deleter());
117 work_thread_.reset(new asio::detail::thread(
/external/llvm/lib/MC/MCDisassembler/
DDisassembler.h96 MAI.reset(mAI); in LLVMDisasmContext()
97 MRI.reset(mRI); in LLVMDisasmContext()
98 MSI.reset(mSI); in LLVMDisasmContext()
99 MII.reset(mII); in LLVMDisasmContext()
100 Ctx.reset(ctx); in LLVMDisasmContext()
101 DisAsm.reset(disAsm); in LLVMDisasmContext()
102 IP.reset(iP); in LLVMDisasmContext()
118 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); } in setIP()
/external/libchrome/base/mac/
Dscoped_nsobject.h113 void reset(NST object = Traits::InvalidValue(),
116 ScopedTypeRef<NST, Traits>::reset(object, policy);
119 void reset(NST object = Traits::InvalidValue()) {
120 ScopedTypeRef<NST, Traits>::reset(object, base::scoped_policy::RETAIN);
177 void reset(NST* object = Traits::InvalidValue(),
180 scoped_nsprotocol<NST*>::reset(object, policy);
183 void reset(NST* object = Traits::InvalidValue()) {
184 scoped_nsprotocol<NST*>::reset(object);
225 void reset(id object = Traits::InvalidValue(),
228 scoped_nsprotocol<id>::reset(object, policy);
[all …]
/external/autotest/server/control_segments/
Dreset20 def reset(machine):
21 print 'Starting to reset host %s' % machine
23 job.record('START', None, 'reset')
38 job.record('END FAIL', None, 'reset')
44 job.record('END GOOD', None, 'reset',
45 '%s reset successfully' % hostname)
48 job.parallel_simple(reset, machines)
/external/v8/src/
Dbackground-parsing-task.cc14 parser.reset(); in Release()
15 info.reset(); in Release()
16 zone.reset(); in Release()
35 source->zone.reset(zone); in BackgroundParsingTask()
36 source->info.reset(info); in BackgroundParsingTask()
48 source_->parser.reset(new Parser(source_->info.get())); in BackgroundParsingTask()
72 source_->cached_data.reset(new ScriptCompiler::CachedData( in Run()
/external/replicaisland/src/com/replica/replicaisland/
DDrawableFactory.java41 public void reset() { in reset() method in DrawableFactory
71 public void reset() { in reset() method in DrawableFactory.DrawableBitmapPool
86 ((DrawableBitmap)entry).reset(); in release()
108 public void reset() { in reset() method in DrawableFactory.ScrollableBitmapPool
123 ((ScrollableBitmap)entry).reset(); in release()
137 public void reset() { in reset() method in DrawableFactory.TiledBackgroundVertexGridPool
153 bg.reset(); in release()
/external/skia/include/gpu/
DGrCoordTransform.h41 this->reset(SkMatrix::I(), texture, filter); in GrCoordTransform()
48 this->reset(resourceProvider, SkMatrix::I(), proxy, filter); in GrCoordTransform()
59 this->reset(m, texture, filter); in GrCoordTransform()
66 this->reset(resourceProvider, m, proxy, filter); in GrCoordTransform()
74 this->reset(m, precision);
78 void reset(const SkMatrix&, const GrTexture*, GrSamplerParams::FilterMode filter,
81 void reset(GrResourceProvider*, const SkMatrix&, GrTextureProxy*,
84 void reset(const SkMatrix& m, GrSLPrecision precision = kDefault_GrSLPrecision) {
DGrSamplerParams.h29 this->reset(); in GrSamplerParams()
39 this->reset(tileXAndY, filterMode); in GrSamplerParams()
43 this->reset(tileModes, filterMode); in GrSamplerParams()
57 void reset() { in reset() function
58 this->reset(SkShader::kClamp_TileMode, kNone_FilterMode); in reset()
61 void reset(SkShader::TileMode tileXAndY, FilterMode filterMode) { in reset() function
66 void reset(const SkShader::TileMode tileModes[2], FilterMode filterMode) { in reset() function
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
DTcpConnection.java80 public void writeExecutionData(final boolean reset) throws IOException { in writeExecutionData() argument
82 visitDumpCommand(true, reset); in writeExecutionData()
99 public void visitDumpCommand(final boolean dump, final boolean reset) in visitDumpCommand() argument
102 data.collect(writer, writer, reset); in visitDumpCommand()
104 if (reset) { in visitDumpCommand()
105 data.reset(); in visitDumpCommand()

12345678910>>...137