/prebuilts/go/darwin-x86/src/cmd/vet/ |
assign.go | 6 This file contains the code to check for useless assignments. 19 "check for useless assignments", 24 // TODO: should also check for assignments to struct fields inside methods 27 // checkAssignStmt checks for assignments of the form "<expr> = <expr>".
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
assign.go | 6 This file contains the code to check for useless assignments. 19 "check for useless assignments", 24 // TODO: should also check for assignments to struct fields inside methods 27 // checkAssignStmt checks for assignments of the form "<expr> = <expr>".
|
/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:__anon20122::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...] |
/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mturk/ |
qualification.py | 66 The percentage of assignments the Worker has submitted, over all assignments the Worker has accepted. The value is an integer between 0 and 100. 74 The percentage of assignments the Worker has abandoned (allowed the deadline to elapse), over all assignments the Worker has accepted. The value is an integer between 0 and 100. 82 The percentage of assignments the Worker has returned, over all assignments the Worker has accepted. The value is an integer between 0 and 100. 90 The percentage of assignments the Worker has submitted that were subsequently approved by the Requester, over all assignments the Worker has submitted. The value is an integer between 0 and 100. 98 The percentage of assignments the Worker has submitted that were subsequently rejected by the Requester, over all assignments the Worker has submitted. The value is an integer between 0 and 100 [all...] |
/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;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/ |
mturk | 73 "assignments": 10, 200 'Assignments: {} -- {} avail, {} pending, {} reviewable, {} reviewed'.format( 207 else 'Assignments: {} total'.format(hit.MaxAssignments), 240 def make_hit(title, description, keywords, reward, question_url, question_frame_height, duration, assignments, approval_delay, lifetime, qualifications = []): 252 max_assignments = assignments, 276 Unreviewed assignments get automatically approved. Unsubmitted 277 assignments get automatically approved upon submission. 286 # Accumulate all relevant assignments, one page of results at 288 assignments = [] 296 assignments += map(digest_assignment, rs [all...] |
/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. 83 // Condition-code mask assignments for vector comparisons (and similar 93 // Mask assignments for PFD.
|
/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();
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue5244.go | 8 // order for top-level blank identifier assignments.
|
issue8475.go | 7 // Issue 8745: comma-ok assignments should produce untyped bool as 2nd result.
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue5244.go | 8 // order for top-level blank identifier assignments.
|
issue8475.go | 7 // Issue 8745: comma-ok assignments should produce untyped bool as 2nd result.
|
/external/v8/src/compiler/ |
ast-loop-assignment-analyzer.h | 20 // The result of analyzing loop assignments. 25 // TODO(turbofan): hashmap or binary search for loop assignments.
|
/external/v8/test/mjsunit/regress/ |
regress-4388.js | 8 // a non-initializing assignments to a {let} variable. 23 // a non-initializing assignments to a {const} variable.
|
/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 | 35 var resetFlag *bool = flag.Bool("reset", false, "If true, ignore current assignments and reassign from scratch") 168 func outputAssignments(w io.Writer, assignments map[string]int) { 171 for key, value := range assignments { 249 func outputStrings(w io.Writer, lib string, assignments map[string]int) { 253 keys := make([]string, 0, len(assignments)) 254 for key := range assignments { 260 fmt.Fprintf(w, "%s,%d,%s\n", lib, assignments[key], key[prefixLen:]) 264 func assignNewValues(assignments map[string]int, reserved int) { 269 for _, value := range assignments { 281 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
|
/frameworks/base/tools/aapt2/compile/ |
IdAssigner.h | 26 * in between fixed ID 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
|