Searched defs:Init (Results 451 - 475 of 1406) sorted by last modified time

<<11121314151617181920>>

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dpeerconnection_unittest.cc477 bool Init(const MediaConstraintsInterface* constraints) { function in class:PeerConnectionTestClientBase
597 if (!client->Init(constraints)) {
H A Dwebrtcsession_unittest.cc327 EXPECT_TRUE(channel_manager_->Init());
348 void Init(DTLSIdentityServiceInterface* identity_service) { function in class:WebRtcSessionTest
373 Init(NULL);
379 Init(identity_service);
550 Init(NULL);
869 Init(NULL);
921 Init(NULL);
943 Init(NULL);
1133 Init(NULL);
1155 Init(NUL
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakeaudiocapturemodule.cc145 int32_t FakeAudioCaptureModule::Init() { function in class:FakeAudioCaptureModule
146 // Initialize is called by the factory method. Safe to ignore this Init call.
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dtable_test.cc441 void Init(const TestArgs& args) { function in class:leveldb::Harness
650 Init(kTestArgList[i]);
680 Init(kTestArgList[i]);
689 Init(kTestArgList[i]);
698 Init(kTestArgList[i]);
709 Init(kTestArgList[i]);
718 Init(kTestArgList[i]);
739 Init(args);
/external/chromium_org/third_party/icu/source/i18n/
H A Dcompactdecimalformat.cpp101 // Init initializes this object.
102 void Init(UErrorCode& status);
118 // Init initializes this object.
119 void Init(UErrorCode& status);
351 void CDFLocaleStyleData::Init(UErrorCode& status) { function in class:CDFLocaleStyleData
374 void CDFLocaleData::Init(UErrorCode& status) { function in class:CDFLocaleData
375 shortData.Init(status);
379 longData.Init(status);
469 result->Init(status);
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dhash.h423 void Init(Type type) { function in struct:brotli::Hashers
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DCompiler.cpp116 bool TCompiler::Init(const ShBuiltInResources& resources) function in class:TCompiler
/external/chromium_org/sdch/open-vcdiff/src/
H A Drolling_hash.h104 static void Init();
112 " before calling RollingHash::Init()" << VCD_ENDL;
149 // Init(), below, for a description of how the contents of remove_table_ are
166 // See the comments in Init(), below, for a description of how the contents of
171 // Init() checks to make sure that the static object remove_table_ has been
177 void RollingHash<window_size>::Init() { function in class:open_vcdiff::RollingHash
187 // partially-initialized table. If two threads happen to call Init()
H A Dvcdecoder.cc75 // delta_window_.Init(parent);
96 // Init() should be called immediately after constructing the
99 void Init(VCDiffStreamingDecoderImpl* parent);
215 instructions_and_sizes_.Init(data_pos, interleaved_bytes_expected_);
217 instructions_and_sizes_.Init(data_pos, available_data);
219 data_for_add_and_run_.Init(&instructions_and_sizes_);
220 addresses_for_copy_.Init(&instructions_and_sizes_);
248 // The parent object which was passed to Init().
305 inline void VCDiffDeltaFileWindow::Init(VCDiffStreamingDecoderImpl* parent) { function in class:open_vcdiff::VCDiffDeltaFileWindow
618 delta_window_.Init(thi
[all...]
H A Dvcdiffengine.cc45 bool VCDiffEngine::Init() { function in class:open_vcdiff::VCDiffEngine
47 VCD_DFATAL << "Init() called twice for same VCDiffEngine object"
57 RollingHash<BlockHash::kBlockSize>::Init();
155 "called before VCDiffEngine::Init()" << VCD_ENDL;
H A Dvcencoder.cc48 bool HashedDictionary::Init() { function in class:open_vcdiff::HashedDictionary
49 return const_cast<VCDiffEngine*>(engine_)->Init();
111 if (!coder_->Init(engine_->dictionary_size())) {
179 if (!dictionary_.Init()) {
H A Daddrcache.cc38 // Therefore, Init() must be called before any other method can be used.
64 // initialized and used, Init() can be called again to reset it to its initial
72 bool VCDiffAddressCache::Init() { function in class:open_vcdiff::VCDiffAddressCache
101 next_slot_ = 0; // in case Init() is called a second time to reinit
132 // The Init() function must already have been called.
241 // The Init() function must already have been called.
H A Dblockhash.cc56 bool BlockHash::Init(bool populate_hash_table) { function in class:open_vcdiff::BlockHash
60 VCD_DFATAL << "Init() called twice for same BlockHash object" << VCD_ENDL;
86 if (!new_dictionary_hash->Init(/* populate_hash_table = */ true)) {
100 if (!new_target_hash->Init(/* populate_hash_table = */ false)) {
155 VCD_DFATAL << "BlockHash::AddBlock() called before BlockHash::Init()"
312 // Init() must have been called and returned true before using
H A Ddecodetable.h39 // In any case, the Init() method must be called before GetNextInstruction()
48 // UseCodeTable() may be called either before or after calling Init().
57 // Init() may be called any number of times to reset the state of
60 void Init(const char** instructions_and_sizes, function in class:open_vcdiff::VCDiffCodeTableReader
97 // If Init() was not called before calling this method, then
H A Dencodetable.cc103 bool VCDiffCodeTableWriter::Init(size_t dictionary_size) { function in class:open_vcdiff::VCDiffCodeTableWriter
115 if (!address_cache_.Init()) {
176 VCD_DFATAL << "EncodeInstruction() called without calling Init()"
250 VCD_DFATAL << "VCDiffCodeTableWriter::Copy() called without calling Init()"
381 // and dictionary. The caller will have to invoke Init() if a different
384 // Notably, Init() calls address_cache_.Init(). This resets the address
386 if (!Init(dictionary_size_)) {
387 VCD_DFATAL << "Internal error: calling Init() to reset "
H A Dheaderparser.h117 void Init(const char* data_start, size_t data_size) { function in class:open_vcdiff::DeltaWindowSection
127 void Init(DeltaWindowSection* original) { function in class:open_vcdiff::DeltaWindowSection
175 // Will be NULL until Init() has been called. If owned_ is true, this will
H A Djsonwriter.cc30 bool JSONCodeTableWriter::Init(size_t /*dictionary_size*/) { function in class:open_vcdiff::JSONCodeTableWriter
/external/chromium_org/testing/gtest/src/
H A Dgtest-port.cc554 void RE::Init(const char* regex) { function in class:testing::internal::RE
801 void RE::Init(const char* regex) { function in class:testing::internal::RE
H A Dgtest.cc549 Init();
559 Init();
562 void ScopedFakeTestPartResultReporter::Init() { function in class:testing::ScopedFakeTestPartResultReporter
/external/chromium_org/testing/gtest/test/
H A Dgtest_output_test_.cc380 Init();
400 void Init() { function in class:FatalFailureInFixtureConstructorTest
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A D3d-cube.js251 function Init(CubeSize) { function
261 Testing.Init = false;
322 Testing.Init = true;
327 Init(i);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A D3d-cube.js251 function Init(CubeSize) { function
261 Testing.Init = false;
322 Testing.Init = true;
327 Init(i);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A D3d-cube.js251 function Init(CubeSize) { function
261 Testing.Init = false;
322 Testing.Init = true;
327 Init(i);
/external/chromium_org/tools/cr/cr/
H A Dplugin.py138 def Init(self): member in class:Plugin
212 plugin.Init()
/external/chromium_org/ui/accessibility/platform/
H A Dax_platform_node_base.cc18 void AXPlatformNodeBase::Init(AXPlatformNodeDelegate* delegate) { function in class:ui::AXPlatformNodeBase

Completed in 686 milliseconds

<<11121314151617181920>>