| /frameworks/compile/mclinker/lib/Script/ |
| SectionsCmd.cpp | 69 SectionCommands assignments; local 77 assignments.push_back(*it); 82 iterator assign, assignEnd = assignments.end(); 83 for (assign = assignments.begin(); assign != assignEnd; ++assign) 85 assignments.clear();
|
| OutputSectDesc.cpp | 159 OutputSectCmds assignments; local 164 assignments.push_back(*it); 169 for (iterator assign = assignments.begin(), assignEnd = assignments.end(); 173 assignments.clear(); 182 if (!assignments.empty()) { 190 for (iterator assign = assignments.begin(), assignEnd = assignments.end(); 194 assignments.clear();
|
| Assignment.cpp | 85 script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this)); 123 script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this)); 159 script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this));
|
| /external/chromium_org/third_party/mesa/src/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:__anon17887::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/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:__anon31446::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/chromium_org/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...] |
| regress-const.js | 30 // Test const initialization and assignments.
|
| globals.js | 28 // Test references and assignments to global variables.
|
| literals-assignment.js | 28 // Tests for simple assignments and literals inside an anonymous function
|
| loops.js | 37 // Test assignments in the loop condition.
|
| simple-deopt.js | 71 // Test deopt with assignments to parameters.
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
| GlobalLintConfiguration.java | 63 String assignments = store.getString(AdtPrefs.PREFS_LINT_SEVERITIES); local 64 if (assignments != null && assignments.length() > 0) { 65 for (String assignment : assignments.split(",")) { //$NON-NLS-1$
|
| /frameworks/compile/mclinker/include/mcld/ |
| LinkerScript.h | 40 typedef std::vector<std::pair<LDSymbol*, Assignment> > Assignments; 58 const Assignments& assignments() const { return m_Assignments; } function in class:mcld::LinkerScript 59 Assignments& assignments() { return m_Assignments; } function in class:mcld::LinkerScript 93 Assignments m_Assignments;
|
| /external/chromium_org/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.
|
| readonly.js | 173 // Make sure that the assignments are monomorphic.
|
| /frameworks/base/media/mca/filterfw/java/android/filterfw/io/ |
| GraphReader.java | 39 public abstract KeyValueMap readKeyValueAssignments(String assignments) throws GraphIOException;
|
| TextGraphReader.java | 344 public KeyValueMap readKeyValueAssignments(String assignments) throws GraphIOException { 346 PatternScanner scanner = new PatternScanner(assignments, ignorePattern); 419 "Unexpected end of assignments on line " + scanner.lineNo() + "!");
|
| /external/chromium_org/v8/test/webkit/ |
| resize-array-assign.js | 24 description("Tests that assignments into arrays behave properly after the array is resized.")
|
| rehash-assign.js | 24 description("Tests that assignments to global variables behave properly when the property table is rehashed.");
|
| /external/chromium_org/third_party/jinja2/ |
| ext.py | 419 assignments = [] 422 if assignments: 427 assignments.append(nodes.Assign(target, expr, lineno=lineno)) 428 node.body = assignments + \
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-969.js | 28 // Regression test for bugs when deoptimizing after assignments in effect 36 // This test uses comma expressions to put assignments in effect contexts,
|
| regress-1563.js | 33 // assignments.
|
| /system/media/camera/docs/ |
| camera_metadata_tag_info.mako | 24 * Array assignments are done using specified-index syntax to keep things in
|
| /frameworks/compile/mclinker/lib/Object/ |
| ObjectLinker.cpp | 484 LinkerScript::Assignments::iterator it, ie = script.assignments().end(); 485 // go through the entire symbol assignments 486 for (it = script.assignments().begin(); it != ie; ++it) { 703 LinkerScript::Assignments::iterator assign, assignEnd; 704 assignEnd = script.assignments().end(); 705 for (assign = script.assignments().begin(); assign != assignEnd; ++assign) { [all...] |
| /frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
| Filter.java | 113 public final void initWithAssignmentString(String assignments) { 115 KeyValueMap valueMap = new TextGraphReader().readKeyValueAssignments(assignments);
|