Searched refs:currentLabel (Results 1 – 8 of 8) sorted by relevance
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/ |
D | InstructionsBuilder.java | 52 private final List<Label> currentLabel; field in InstructionsBuilder 73 this.currentLabel = new ArrayList<Label>(2); in InstructionsBuilder() 92 currentLabel.add(label); in addLabel() 104 final int labelCount = currentLabel.size(); in addInstruction() 107 LabelInfo.setInstruction(currentLabel.get(i), insn); in addInstruction() 109 currentLabel.clear(); in addInstruction()
|
/external/dexmaker/dexmaker/src/main/java/com/android/dx/ |
D | Code.java | 192 private Label currentLabel; field in Code 221 this.currentLabel = new Label(); in Code() 222 adopt(this.currentLabel); in Code() 223 this.currentLabel.marked = true; in Code() 339 if (currentLabel != null) { in mark() 342 currentLabel = label; in mark() 411 if (currentLabel == null || !currentLabel.marked) { in addInstruction() 414 currentLabel.instructions.add(insn); in addInstruction() 427 currentLabel = null; in addInstruction() 434 currentLabel.primarySuccessor = branch; in addInstruction() [all …]
|
/external/webrtc/sdk/objc/helpers/ |
D | RTCDispatcher.m | 39 const char* currentLabel = dispatch_queue_get_label(DISPATCH_CURRENT_QUEUE_LABEL); 42 NSAssert(strlen(currentLabel) > 0, @"Label is required for the current queue."); 44 return strcmp(targetLabel, currentLabel) == 0;
|
/external/llvm-project/flang/lib/Semantics/ |
D | canonicalize-do.cpp | 102 auto currentLabel{stack.back().label}; in CanonicalizeIfMatch() local 105 std::optional<Label>{currentLabel}, ContinueStmt{}}; in CanonicalizeIfMatch() 131 } while (!stack.empty() && stack.back().label == currentLabel); in CanonicalizeIfMatch()
|
/external/swiftshader/src/Shader/ |
D | VertexProgram.cpp | 614 if(currentLabel != -1) in program() 1419 currentLabel = labelIndex; in LABEL() 1539 if(currentLabel == -1) in RET() 1548 if(callRetBlock[currentLabel].size() > 1) // Pop the return destination from the call stack in RET() 1554 …itchCases = Nucleus::createSwitch(value, unreachableBlock, (int)callRetBlock[currentLabel].size()); in RET() 1556 for(unsigned int i = 0; i < callRetBlock[currentLabel].size(); i++) in RET() 1558 Nucleus::addSwitchCase(switchCases, i, callRetBlock[currentLabel][i]); in RET() 1561 …else if(callRetBlock[currentLabel].size() == 1) // Jump directly to the unique return destination in RET() 1563 Nucleus::createBr(callRetBlock[currentLabel][0]); in RET()
|
D | VertexProgram.hpp | 129 int currentLabel = -1; member in sw::VertexProgram
|
D | PixelProgram.cpp | 580 if(currentLabel != -1) in applyShader() 1735 currentLabel = labelIndex; in LABEL() 1854 if(currentLabel == -1) in RET() 1863 if(callRetBlock[currentLabel].size() > 1) // Pop the return destination from the call stack in RET() 1869 …itchCases = Nucleus::createSwitch(value, unreachableBlock, (int)callRetBlock[currentLabel].size()); in RET() 1871 for(unsigned int i = 0; i < callRetBlock[currentLabel].size(); i++) in RET() 1873 Nucleus::addSwitchCase(switchCases, i, callRetBlock[currentLabel][i]); in RET() 1876 …else if(callRetBlock[currentLabel].size() == 1) // Jump directly to the unique return destination in RET() 1878 Nucleus::createBr(callRetBlock[currentLabel][0]); in RET()
|
D | PixelProgram.hpp | 139 int currentLabel = -1; member in sw::PixelProgram
|