Home
last modified time | relevance | path

Searched refs:walkDepth (Results 1 - 4 of 4) sorted by relevance

/drivers/hdf_core/framework/tools/hc-gen/src/
H A Ddecompile_gen.cpp126 uint32_t DecompileGen::OutPutWalk(const std::shared_ptr<AstObject> &astObj, int32_t walkDepth) in OutPutWalk() argument
131 std::string tabStr = std::string(TAB_SIZE * walkDepth, ' '); in OutPutWalk()
132 if (walkDepth != 0) { in OutPutWalk()
161 uint32_t DecompileGen::CloseBrace(const std::shared_ptr<AstObject> &astObj, int32_t walkDepth) in CloseBrace() argument
166 std::string tabStr = std::string(TAB_SIZE * walkDepth, ' '); in CloseBrace()
182 [this](std::shared_ptr<AstObject> &current, int32_t walkDepth) -> int32_t { in OutPut()
183 return OutPutWalk(current, walkDepth); in OutPut()
185 [this](std::shared_ptr<AstObject> &current, int32_t walkDepth) -> int32_t { in OutPut()
186 return CloseBrace(current, walkDepth); in OutPut()
H A Dast.h300 int32_t walkDepth = 0; in WalkForward() local
305 int32_t ret = static_cast<int32_t>(callback(forwardWalkObj, walkDepth)); in WalkForward()
310 walkDepth++; in WalkForward()
325 walkDepth--; in WalkForward()
338 int32_t walkDepth = 0; in WalkBackward() local
346 if (callback(backWalkObj, walkDepth) != NOERR) { in WalkBackward()
351 walkDepth++; in WalkBackward()
366 walkDepth--; in WalkBackward()
377 int32_t walkDepth = 0; in WalkRound() local
382 if (backwardCallback(roundWalkObj, walkDepth) ! in WalkRound()
[all...]
H A Ddecompile_gen.h38 uint32_t OutPutWalk(const std::shared_ptr<AstObject> &astObj, int32_t walkDepth);
40 uint32_t CloseBrace(const std::shared_ptr<AstObject> &astObj, int32_t walkDepth);
/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A Dast.js783 this.walkForward(this.astRoot_, (current, walkDepth) => {
790 this.setw(walkDepth * 4) + '[' + current.integerValue_ + ']'
794 NapiLog.logInfo(this.setw(walkDepth * 4) + current.stringValue_);
800 NapiLog.logInfo(this.setw(walkDepth * 4) + current.name_ + ' :');
806 NapiLog.logInfo(this.setw(walkDepth * 4) + current.name_ + ' = ');
809 NapiLog.logInfo(this.setw(walkDepth * 4) + current.name_);
812 NapiLog.logInfo(this.setw(walkDepth * 4) + current.name_);
815 NapiLog.logInfo(this.setw(walkDepth * 4) + current.name_);
891 return this.walkBackward(this.astRoot_, (current, walkDepth) => {
931 let walkDepth
[all...]

Completed in 3 milliseconds