HomeSort by relevance Sort by last modified time
    Searched defs:assignment (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_constant_folding.cpp 103 * remove the never-executed assignment.
141 /* Next, see if the call can be replaced with an assignment of a constant */
145 ir_assignment *assignment = local
147 ir->replace_with(assignment);
lower_discard.cpp 156 ir_assignment *assignment = local
160 ir->replace_with(assignment);
lower_variable_index_to_cond_assign.cpp 42 * the RHS of the assignment is assigned to a temporary. The non-constant
213 /* Generate a conditional assignment to (or from) the constant indexed
217 ir_assignment *const assignment = (is_write) local
221 list->push_tail(assignment);
453 /* If the original assignment has a condition, respect that original
ast_function.cpp 251 ir_assignment *assignment local
253 post_call_conversions.push_tail(assignment);
664 ir_instruction *assignment = new(ctx) ir_assignment(lhs, rhs, NULL); local
665 instructions->push_tail(assignment);
788 /* Mask of fields to be written in the assignment.
826 /* Mask of fields to be written in the assignment.
854 * Generate assignment of a portion of a vector to a portion of a matrix column
856 * \param src_base First component of the source to be used in assignment
886 /* Mask of fields to be written in the assignment.
    [all...]
  /external/mesa3d/src/glsl/
opt_constant_folding.cpp 103 * remove the never-executed assignment.
141 /* Next, see if the call can be replaced with an assignment of a constant */
145 ir_assignment *assignment = local
147 ir->replace_with(assignment);
lower_discard.cpp 156 ir_assignment *assignment = local
160 ir->replace_with(assignment);
lower_variable_index_to_cond_assign.cpp 42 * the RHS of the assignment is assigned to a temporary. The non-constant
213 /* Generate a conditional assignment to (or from) the constant indexed
217 ir_assignment *const assignment = (is_write) local
221 list->push_tail(assignment);
453 /* If the original assignment has a condition, respect that original
ast_function.cpp 251 ir_assignment *assignment local
253 post_call_conversions.push_tail(assignment);
664 ir_instruction *assignment = new(ctx) ir_assignment(lhs, rhs, NULL); local
665 instructions->push_tail(assignment);
788 /* Mask of fields to be written in the assignment.
826 /* Mask of fields to be written in the assignment.
854 * Generate assignment of a portion of a vector to a portion of a matrix column
856 * \param src_base First component of the source to be used in assignment
886 /* Mask of fields to be written in the assignment.
    [all...]
  /external/elfutils/src/
ldscript.y 54 static struct assignment *new_assignment (const char *variable,
80 struct assignment *assignment;
129 %type <assignment> assignment
212 outputsection: assignment ';'
215 $$->val.assignment = $1;
253 assignment: kID '=' expr label
280 | assignment ';'
283 $$->val.assignment = $1
    [all...]
ldscript.h 115 struct assignment *assignment; member in union:YYSTYPE
ldscript.c 193 static struct assignment *new_assignment (const char *variable,
240 struct assignment *assignment; member in union:YYSTYPE
595 "outputsections", "outputsection", "assignment", "inputsections",
    [all...]
ld.h 550 struct assignment struct
570 struct assignment *assignment; member in union:input_rule::__anon20005
599 struct assignment *assignment; member in union:output_rule::__anon20007
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Insn.java 150 * Gets the spec of a local variable assignment that occurs at this
151 * instruction, or null if no local variable assignment occurs. This
158 RegisterSpec assignment; local
160 assignment = sources.get(0);
162 assignment = result;
165 if (assignment == null) {
169 LocalItem localItem = assignment.getLocalItem();
175 return assignment;
  /dalvik/dx/src/com/android/dx/rop/code/
Insn.java 148 * Gets the spec of a local variable assignment that occurs at this
149 * instruction, or null if no local variable assignment occurs. This
156 RegisterSpec assignment; local
158 assignment = sources.get(0);
160 assignment = result;
163 if (assignment == null) {
167 LocalItem localItem = assignment.getLocalItem();
173 return assignment;
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 146 RegisterSpec assignment; local
149 assignment = insn.getSources().get(0);
151 assignment = getResult();
154 if (assignment == null) {
158 LocalItem local = assignment.getLocalItem();
164 return assignment;
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Insn.java 148 * Gets the spec of a local variable assignment that occurs at this
149 * instruction, or null if no local variable assignment occurs. This
156 RegisterSpec assignment; local
158 assignment = sources.get(0);
160 assignment = result;
163 if (assignment == null) {
167 LocalItem localItem = assignment.getLocalItem();
173 return assignment;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
NormalSsaInsn.java 141 RegisterSpec assignment; local
144 assignment = insn.getSources().get(0);
146 assignment = getResult();
149 if (assignment == null) {
153 LocalItem local = assignment.getLocalItem();
159 return assignment;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 22 import org.eclipse.jdt.core.dom.Assignment;
135 * Examines if the StringLiteral is part of an assignment corresponding to the
168 * Examines if the StringLiteral is part of a assignment to a variable that
174 Assignment assignment = findParentClass(node, Assignment.class); local
175 if (assignment != null) {
176 Expression left = assignment.getLeftHandSide();
  /external/chromium_org/third_party/icu/source/common/
locid.cpp 164 gDefaultLocale = newFirstDefault; // Assignment to gDefaultLocale must happen inside mutex
237 gDefaultLocale = hashTableVal; // Assignment to gDefaultLocale must happen inside mutex
1046 const char* assignment = uprv_strchr(fullName, '='); local
1048 if(assignment > variantStart) {
  /external/icu4c/common/
locid.cpp 982 const char* assignment = uprv_strchr(fullName, '='); local
984 if(assignment > variantStart) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
TextGraphReader.java 310 KeyValueMap assignment = readKeyValueAssignments(scanner, semicolonPattern); local
311 mBoundReferences.putAll(assignment);
  /external/chromium_org/third_party/libxml/src/
trio.c 6041 int assignment; local
    [all...]
  /external/chromium_org/v8/src/
parser.cc 2097 Assignment* assignment = local
2113 Assignment* assignment = local
2794 Assignment* assignment = factory()->NewAssignment( local
4482 Assignment* assignment = factory()->NewAssignment( local
    [all...]
  /external/libxml2/
trio.c 6041 int assignment; local
    [all...]
  /external/v8/src/
parser.cc 810 static Assignment* AsAssignment(Statement* stat) {
841 Assignment* assignment = AsAssignment(stat);
843 if (BlockContinues(assignment)) {
844 UpdateBlock(assignment);
849 if (!InBlock() && (assignment != NULL) &&
850 (assignment->op() == Token::ASSIGN)) {
851 StartBlock(assignment);
856 // The minimum number of contiguous assignment that will
902 bool BlockContinues(Assignment* assignment)
961 Assignment* assignment = AsAssignment(stat); local
2329 Assignment* assignment = local
2344 Assignment* assignment = local
2909 Assignment* assignment = factory()->NewAssignment( local
    [all...]

Completed in 1454 milliseconds

1 2