HomeSort by relevance Sort by last modified time
    Searched defs:assignment (Results 1 - 25 of 49) 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/chromium_org/tools/gn/
scope_unittest.cc 34 LiteralNode assignment; local
35 assignment.set_value(assignment_token);
37 Value old_value(&assignment, "hello");
38 setup.scope()->SetValue("v", old_value, &assignment);
40 setup.scope()->SetValue(private_var_name, old_value, &assignment);
45 Value new_value(&assignment, "goodbye");
46 new_scope.SetValue("v", new_value, &assignment);
51 &assignment, "error", &err));
58 Value new_value(&assignment, "goodbye");
59 new_scope.SetValue("v", new_value, &assignment);
148 LiteralNode assignment; local
183 LiteralNode assignment; local
    [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/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
AstUtil.java 4 import com.google.javascript.rhino.head.ast.Assignment;
32 Assignment assignment = (Assignment) parentNode; local
33 if (assignment.getRight() == functionNode &&
34 assignment.getLeft().getType() == Token.NAME) {
35 return assignment.getLeft();
37 parentNode = assignment.getParent();
57 static AstNode getAssignedTypeNameNode(Assignment assignment) {
86 Assignment assignment = (Assignment) parentNode; local
    [all...]
  /external/elfutils/0.153/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 116 struct assignment *assignment; member in union:YYSTYPE
ldscript.c 131 static struct assignment *new_assignment (const char *variable,
252 struct assignment *assignment; member in union:YYSTYPE
612 "outputsections", "outputsection", "assignment", "inputsections",
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
CommandAction.h 169 const std::string& assignment() const { return m_Assignment; } function in class:mcld::DefSymAction
  /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();
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 34 #include <mcld/Script/Assignment.h>
507 case Assignment::HIDDEN:
510 case Assignment::DEFAULT:
522 case Assignment::PROVIDE_HIDDEN:
525 case Assignment::PROVIDE:
538 // Set symbol of this assignment.
707 Assignment& assignment = (*assign).second; local
712 scriptSymsFinalized &= assignment.assign(evaluator);
716 symbol->setValue(assignment.symbol().value())
    [all...]
  /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/icu/icu4c/source/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/skia/third_party/lua/src/
lparser.c 1094 ** assignment
1103 ** check whether, in an assignment to an upvalue/local variable, the
1104 ** upvalue/local variable is begin used in a previous assignment to a
1106 ** use this safe copy in the previous assignment.
1118 lh->v.u.ind.t = extra; /* previous assignment will use safe copy */
1123 lh->v.u.ind.idx = extra; /* previous assignment will use safe copy */
1136 static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) { function
1139 if (testnext(ls, ',')) { /* assignment -> ',' suffixedexp assignment */
1147 assignment(ls, &nv, nvars+1)
    [all...]

Completed in 714 milliseconds

1 2