HomeSort by relevance Sort by last modified time
    Searched full:assignments (Results 1 - 25 of 793) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/
opt_dead_code_local.cpp 27 * Eliminates local dead assignments from the code.
29 * This operates on basic blocks, tracking assignments and finding if
33 * for assignments to variables that are never read.
66 kill_for_derefs_visitor(exec_list *assignments)
68 this->assignments = assignments;
73 foreach_iter(exec_list_iterator, iter, *this->assignments) {
118 exec_list *assignments; member in class:__anon16832::kill_for_derefs_visitor
150 process_assignment(void *ctx, ir_assignment *ir, exec_list *assignments)
154 kill_for_derefs_visitor v(assignments);
283 exec_list assignments; local
    [all...]
opt_dead_code.cpp 27 * Eliminates dead assignments and variable declarations from the code.
41 * Note that this will remove assignments to globals, so it is not suitable
57 * then all of the references are assignments, and the variable is
91 /* If there are no assignments or references to the variable left,
126 * ignore variable declarations (and the assignments to them) for variables
ir_expression_flattening.h 29 * assignments of the leaves to temporaries, according to a predicate.
  /external/junit/src/org/junit/experimental/theories/internal/
Assignments.java 18 * A potentially incomplete list of value assignments for a method's formal
21 public class Assignments {
28 private Assignments(List<PotentialAssignment> assigned,
39 public static Assignments allUnassigned(Method testMethod,
45 return new Assignments(new ArrayList<PotentialAssignment>(),
57 public Assignments assignNext(PotentialAssignment source) {
62 return new Assignments(assigned, fUnassigned.subList(1, fUnassigned
  /external/junit/src/org/junit/experimental/theories/
Theories.java 14 import org.junit.experimental.theories.internal.Assignments;
89 runWithAssignment(Assignments.allUnassigned(
98 protected void runWithAssignment(Assignments parameterAssignment)
107 protected void runWithIncompleteAssignment(Assignments incomplete)
116 protected void runWithCompleteAssignment(final Assignments complete)
160 final FrameworkMethod method, final Assignments complete, final Object freshInstance) {
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 43 typedef std::vector<std::pair<LDSymbol*, Assignment> > Assignments;
63 const Assignments& assignments() const { return m_Assignments; } function in class:mcld::LinkerScript
64 Assignments& assignments() { return m_Assignments; } function in class:mcld::LinkerScript
101 Assignments m_Assignments;
  /frameworks/compile/mclinker/lib/Script/
OutputSectDesc.cpp 157 OutputSectCmds assignments; local
162 assignments.push_back(*it);
167 for (iterator assign = assignments.begin(),
168 assignEnd = assignments.end();
173 assignments.clear();
182 if (!assignments.empty()) {
190 for (iterator assign = assignments.begin(), assignEnd = assignments.end();
195 assignments.clear();
SectionsCmd.cpp 65 SectionCommands assignments; local
73 assignments.push_back(*it);
78 iterator assign, assignEnd = assignments.end();
79 for (assign = assignments.begin(); assign != assignEnd; ++assign)
81 assignments.clear();
  /external/llvm/lib/Target/SystemZ/
SystemZ.h 33 // Condition-code mask assignments for integer and floating-point
42 // Condition-code mask assignments for floating-point comparisons only.
50 // Condition-code mask assignments for CS.
55 // Condition-code mask assignments for a completed SRST loop.
60 // Condition-code mask assignments for TEST UNDER MASK.
71 // Condition-code mask assignments for TRANSACTION_BEGIN.
78 // Condition-code mask assignments for TRANSACTION_END.
86 // Mask assignments for PFD.
  /external/v8/test/mjsunit/compiler/
assignment.js 28 // Tests for compound assignments at the top level
49 // Test compound assignments in an anonymous function with local variables.
71 // Test compound assignments in an anonymous function with global variables.
93 // Test compound assignments in a named function with local variables.
117 // Test compound assignments in a named function with global variables.
143 // Tests for compound assignments in a loop at the top level
166 // Test compound assignments in an anonymous function with local variables.
190 // Test compound assignments in an anonymous function with global variables.
214 // Test compound assignments in a named function with local variables.
240 // Test compound assignments in a named function with global variables
    [all...]
  /external/bison/examples/calc++/
calc++-parser.yy 50 unit: assignments exp { driver.result = $2; };
52 assignments:
54 | assignments assignment {};
  /external/boringssl/src/util/
make_errors.go 36 var resetFlag *bool = flag.Bool("reset", false, "If true, ignore current assignments and reassign from scratch")
172 func outputAssignments(w io.Writer, assignments map[string]int) {
175 for key, value := range assignments {
267 func outputStrings(w io.Writer, lib string, ty int, assignments map[string]int) {
271 keys := make([]string, 0, len(assignments))
272 for key := range assignments {
282 fmt.Fprintf(w, "%s,%s,%d,%s\n", lib, typeString, assignments[key], key[prefixLen:])
286 func assignNewValues(assignments map[string]int, reserved int) {
291 for _, value := range assignments {
303 keys := make([]string, 0, len(assignments))
    [all...]
  /external/iproute2/include/linux/
atmapi.h 20 * the struct in order hide the array, so that we can make simple assignments
  /external/kernel-headers/original/uapi/linux/
atmapi.h 20 * the struct in order hide the array, so that we can make simple assignments
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atmapi.h 20 * the struct in order hide the array, so that we can make simple assignments
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmapi.h 20 * the struct in order hide the array, so that we can make simple assignments
  /external/v8/test/mjsunit/
this-property-assignment.js 28 // Tests the handling of multiple assignments to the same property in a
29 // constructor that only has simple this property assignments.
  /development/ndk/platforms/android-18/samples/gles3jni/
README 27 assignments.
  /external/clang/test/CodeGen/
compound-assign-overflow.c 1 // Verify proper type emitted for compound assignments
  /external/clang/test/CodeGenObjC/
2010-03-17-StructRef.m 33 // We're expecting these three bitfield assignments will generate i8 stores.
objc-assign-ivar.m 16 // assignments to any/all of these fields should generate objc_assign_ivar
  /external/iptables/extensions/
dscp_helper.c 5 * <http://www.iana.org/assignments/dscp-registry>
  /external/v8/src/ic/arm64/
access-compiler-arm64.cc 28 // we use the same assignments as ARM to remain on the safe side.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
syntax.py 4 assignments with invalid targets, are caught in the code generation
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
syntax.py 4 assignments with invalid targets, are caught in the code generation

Completed in 1098 milliseconds

1 2 3 4 5 6 7 8 91011>>