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

1 2 3 4 5

  /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 46 static struct assignment *new_assignment (const char *variable,
72 struct assignment *assignment;
121 %type <assignment> assignment
204 outputsection: assignment ';'
207 $$->val.assignment = $1;
245 assignment: kID '=' expr label
272 | assignment ';'
275 $$->val.assignment = $1
    [all...]
ld.h 542 struct assignment struct
562 struct assignment *assignment; member in union:input_rule::__anon11736
591 struct assignment *assignment; member in union:output_rule::__anon11738
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
CommandAction.h 158 const std::string& assignment() const { return m_Assignment; } function in class:mcld::DefSymAction
  /external/v8/test/unittests/compiler/
move-optimizer-unittest.cc 234 int assignment = 0; local
239 ++assignment;
245 CHECK_EQ(1, assignment);
  /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;
  /external/v8/src/parsing/
pattern-rewriter.cc 44 rewriter.context_ = ASSIGNMENT;
58 Parser* parser, Assignment* assignment, Scope* scope) {
59 DCHECK_NOT_NULL(assignment);
60 DCHECK_EQ(Token::ASSIGN, assignment->op());
62 parser->factory()->NewRewritableAssignmentExpression(assignment);
69 return c == ASSIGNMENT || c == ASSIGNMENT_INITIALIZER;
82 set_context(ASSIGNMENT);
103 case ASSIGNMENT:
118 // In an assignment context, simply perform the assignmen
119 Assignment* assignment = factory()->NewAssignment( local
287 Assignment* assignment = local
304 Assignment* assignment = local
315 auto assignment = factory()->NewAssignment( local
563 Assignment* assignment = local
    [all...]
rewriter.cc 65 // there was ever an assignment to result_.
96 Expression* assignment = factory()->NewAssignment( local
100 factory()->NewExpressionStatement(assignment, RelocInfo::kNoPosition),
357 // Set the position of the assignment statement one character past the
parser-base.h 182 : assignment(expression), scope(scope) {}
184 ExpressionT assignment; member in struct:v8::internal::ParserBase::DestructuringAssignment
    [all...]
parser.cc 2204 Assignment* assignment = local
3351 Assignment* assignment = factory()->NewAssignment( local
3365 Assignment* assignment = factory()->NewAssignment( local
3406 Assignment* assignment = factory()->NewAssignment( local
3431 Assignment* assignment = factory()->NewAssignment( local
3446 Assignment* assignment = factory()->NewAssignment( local
3490 Assignment* assignment = factory()->NewAssignment( local
3991 Assignment* assignment = expr->AsAssignment(); local
4608 Assignment* assignment = factory()->NewAssignment( local
4935 Expression* assignment = factory()->NewAssignment( local
4968 Expression* assignment = factory()->NewAssignment( local
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
yyscript.y 292 | assignment end
357 | assignment end
535 assignment end
810 assignment: label
  /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 35 #include "mcld/Script/Assignment.h"
545 case Assignment::HIDDEN:
548 case Assignment::DEFAULT:
559 case Assignment::PROVIDE_HIDDEN:
562 case Assignment::PROVIDE:
575 // Set symbol of this assignment.
749 Assignment& assignment = (*assign).second; local
754 scriptSymsFinalized &= assignment.assign(evaluator);
758 symbol->setValue(assignment.symbol().value())
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
ldgram.y 421 | assignment end
667 assignment end
762 assignment: label
  /external/icu/icu4c/source/common/
locid.cpp 1011 const char* assignment = uprv_strchr(fullName, '='); local
1013 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/libxml2/
trio.c 6061 int assignment; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/beust/jcommander/1.27/
jcommander-1.27.jar 

Completed in 369 milliseconds

1 2 3 4 5