/aosp_15_r20/dalvik/dx/src/com/android/dx/cf/code/ |
H A D | Frame.java | 39 private final IntList subroutines; field in Frame 60 ExecutionStack stack, IntList subroutines) { in Frame() argument 69 subroutines.throwIfMutable(); in Frame() 73 this.subroutines = subroutines; in Frame() 98 return new Frame(locals.copy(), stack.copy(), subroutines); in copy() 149 return subroutines; in getSubroutines() 189 newSubroutines = subroutines.mutableCopy(); in subFrameForLabel() 219 resultSubroutines = mergeSubroutineLists(other.subroutines); in mergeWith() 226 && subroutines == resultSubroutines) { in mergeWith() 243 if (subroutines.equals(otherSubroutines)) { in mergeSubroutineLists() [all …]
|
H A D | Ropper.java | 136 private final Subroutine[] subroutines; field in Ropper 385 this.subroutines = new Subroutine[maxLabel]; in Ropper() 587 private void addBlock(BasicBlock block, IntList subroutines) { in addBlock() argument 593 subroutines.throwIfMutable(); in addBlock() 594 resultSubroutines.add(subroutines); in addBlock() 608 private boolean addOrReplaceBlock(BasicBlock block, IntList subroutines) { in addOrReplaceBlock() argument 631 subroutines.throwIfMutable(); in addOrReplaceBlock() 632 resultSubroutines.add(subroutines); in addOrReplaceBlock() 647 IntList subroutines) { in addOrReplaceBlockNoDelete() argument 664 subroutines.throwIfMutable(); in addOrReplaceBlockNoDelete() [all …]
|
/aosp_15_r20/external/ow2-asm/asm-analysis/src/main/java/org/objectweb/asm/tree/analysis/ |
H A D | Analyzer.java | 72 private Subroutine[] subroutines; field in Analyzer 115 subroutines = new Subroutine[insnListSize]; in analyze() 155 Subroutine subroutine = subroutines[insnIndex]; in analyze() 230 subroutines[jsrInsnIndex], in analyze() 388 if (subroutines[i] != null && subroutines[i].start == null) { in findSubroutines() 389 subroutines[i] = null; in findSubroutines() 416 if (subroutines[currentInsnIndex] != null) { in findSubroutine() 419 subroutines[currentInsnIndex] = new Subroutine(subroutine); in findSubroutine() 637 Subroutine oldSubroutine = subroutines[insnIndex]; in merge() 640 subroutines[insnIndex] = new Subroutine(subroutine); in merge() [all …]
|
/aosp_15_r20/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/ |
H A D | ControlFlowGraph.java | 173 …if ( (lastExecutionJSR() == null) && (subroutines.subroutineOf(getInstruction()) != subroutines.ge… in execute() 176 …if ( (lastExecutionJSR() != null) && (subroutines.subroutineOf(getInstruction()) == subroutines.ge… in execute() 336 final Subroutine s = subroutines.subroutineOf(getInstruction()); in _getSuccessors() 403 private final Subroutines subroutines; field in ControlFlowGraph 426 subroutines = new Subroutines(method_gen, enableJustIceCheck); in ControlFlowGraph() 475 return subroutines.subroutineOf(i) == null; in isDead()
|
H A D | Subroutines.java | 364 private final Map<InstructionHandle, Subroutine> subroutines = new HashMap<>(); field in Subroutines 413 subroutines.put(astore, sr); in Subroutines() 417 subroutines.put(all[0], TOPLEVEL); in Subroutines() 503 for (final Subroutine sub : subroutines.values()) { in Subroutines() 504 … if (sub != subroutines.get(all[0])) { // We don't want to forbid top-level exception handlers. in Subroutines() 568 final Subroutine ret = subroutines.get(leader); in getSubroutine() 594 for (final Subroutine s : subroutines.values()) { in subroutineOf() 681 return "---\n"+subroutines+"\n---\n"; in toString()
|
/aosp_15_r20/external/javassist/src/main/javassist/bytecode/analysis/ |
H A D | SubroutineScanner.java | 37 private Subroutine[] subroutines; field in SubroutineScanner 46 subroutines = new Subroutine[code.getCodeLength()]; in scan() 57 scan(handler, iter, subroutines[exceptions.startPc(i)]); in scan() 60 return subroutines; in scan() 83 subroutines[pos] = sub; in scanOp()
|
H A D | Analyzer.java | 89 private Subroutine[] subroutines; field in Analyzer 135 subroutines = scanner.scan(method); in analyze() 173 Subroutine subroutine = subroutines[pos]; in analyzeNextEntry() 194 mergeJsr(queue, frames[pos], subroutines[target], pos, lookAhead(iter, pos)); in analyzeNextEntry()
|
/aosp_15_r20/external/llvm/test/DebugInfo/Inputs/ |
H A D | gmlt.ll | 11 ; subroutines. 19 ; Omitting the subprograms without inlined subroutines is not possible 21 ; (which happens with this optimization if there are no inlined subroutines). 72 ; inlined subroutines are omitted by design to save space)
|
/aosp_15_r20/external/licenseclassifier/licenses/ |
H A D | Artistic-1.0-Perl.txt | 76 …subroutines (or comparably compiled subroutines in other languages) supplied by you and linked int…
|
/aosp_15_r20/external/licenseclassifier/v2/assets/License/Artistic-1.0-Perl/ |
H A D | license.txt | 76 …subroutines (or comparably compiled subroutines in other languages) supplied by you and linked int…
|
/aosp_15_r20/external/google-breakpad/src/third_party/libdisasm/ |
H A D | LICENSE | 116 7. C subroutines (or comparably compiled subroutines in other 118 emulate subroutines and variables of the language defined by this 120 equivalent of input as in Paragraph 6, provided these subroutines do
|
/aosp_15_r20/external/mesa3d/src/compiler/glsl/ |
H A D | lower_subroutine.cpp | 90 ir_function *fn = this->state->subroutines[s]; in visit_leave()
|
H A D | glsl_parser_extras.cpp | 212 this->subroutines = NULL; in _mesa_glsl_parse_state() 2204 while (state->subroutines[j]->subroutine_index == -1) { in assign_subroutine_indexes() 2206 if (state->subroutines[k]->subroutine_index == index) in assign_subroutine_indexes() 2209 state->subroutines[j]->subroutine_index = index; in assign_subroutine_indexes()
|
/aosp_15_r20/external/cronet/third_party/googletest/src/docs/ |
H A D | primer.md | 20 and subroutines. This common pattern is easy to recognize and makes tests 91 test suite need to share common objects and subroutines, you can put them into a 224 5. If needed, define subroutines for your tests to share. 227 access objects and subroutines in the test fixture:
|
/aosp_15_r20/external/googletest/docs/ |
H A D | primer.md | 20 and subroutines. This common pattern is easy to recognize and makes tests 91 test suite need to share common objects and subroutines, you can put them into a 224 5. If needed, define subroutines for your tests to share. 227 access objects and subroutines in the test fixture:
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/third_party/googletest/docs/ |
H A D | primer.md | 20 and subroutines. This common pattern is easy to recognize and makes tests 91 test suite need to share common objects and subroutines, you can put them into a 224 5. If needed, define subroutines for your tests to share. 227 access objects and subroutines in the test fixture:
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/ |
D | FortranCInterface.cmake | 19 Global subroutines and functions. 22 Module subroutines and functions (declared by "MODULE PROCEDURE").
|
/aosp_15_r20/external/llvm/test/DebugInfo/X86/ |
H A D | inlined-formal-parameter.ll | 12 ; Check that we have formal parameters for 'a' in both inlined subroutines.
|
H A D | inline-member-function.ll | 26 ; Ensure we omit DW_AT_object_pointer on inlined subroutines.
|
/aosp_15_r20/external/ply/ply/example/BASIC/ |
H A D | README | 17 and no facilities for interactive input. Moreover, subroutines and functions
|
/aosp_15_r20/external/kotlinc/bin/ |
H A D | kotlinc.bat | 77 rem # subroutines
|
/aosp_15_r20/external/one-true-awk/testdir/ |
H A D | funstack.in | 519 keywords = "Laplace transforms; subroutines", 537 keywords = "random number generation; subroutines", 555 keywords = "random number generation; subroutines", 573 keywords = "number theory; subroutines", 591 keywords = "number theory; subroutines", 737 keywords = "program debugging; subroutines", 867 keywords = "combinatorial mathematics; subroutines", 885 keywords = "combinatorial mathematics; subroutines", 917 keywords = "least squares approximations; nonlinear equations; subroutines", 935 keywords = "least squares approximations; nonlinear equations; subroutines", [all …]
|
/aosp_15_r20/external/llvm/test/DebugInfo/Generic/ |
H A D | inline-scopes.ll | 32 ; Ensure that file changes don't interfere with creating inlined subroutines.
|
/aosp_15_r20/external/mesa3d/docs/relnotes/ |
H A D | 17.2.6.rst | 117 - glsl: Catch subscripted calls to undeclared subroutines
|
/aosp_15_r20/external/licenseclassifier/v2/assets/License/Artistic-1.0/ |
H A D | license.txt | 76 7. C or perl subroutines supplied by you and linked into this Package shall not be considered part …
|