HomeSort by relevance Sort by last modified time
    Searched refs:assignment (Results 51 - 75 of 540) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug144.go 18 bug144.go:8: operation LITERAL not allowed in assignment context
bug389.go 12 var f func(arg int) = fn // ERROR "cannot use fn .type func.float32.. as type func.int. in assignment|different parameter types"
bug498.go 7 // Gccgo incorrectly rejected an assignment to multiple instances of
issue4620.go 7 // Issue 4620: map indexes are not evaluated before assignment of other elements
bug096.go 24 It appears that the first assignment changes the size of A from open
bug143.go 41 * bug143.go:19: assignment count mismatch: 2 = 1
bug450.go 8 // "set but not used" and elides an assignment, causing
issue17645.go 15 var _ string = append(s, Foo{""}) // ERROR "cannot use .. \(type string\) as type int in field value" "cannot use Foo literal \(type Foo\) as type int in append" "cannot use append\(s\, Foo literal\) \(type \[\]int\) as type string in assignment"
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
alias_analysis.cc 126 const BufferAssignment& assignment, const HloInstruction& hlo) {
145 [&worklist, &assignment](const HloInstruction* instruction) {
147 assignment.GetSourceBuffers(instruction, /*index=*/{})) {
169 if (!assignment.HasAllocation(*buffer) ||
174 assignment.GetAssignedAllocation(*buffer).GetSlice(*buffer);
  /external/mesa3d/src/compiler/glsl/
lower_discard.cpp 159 ir_assignment *assignment = local
163 ir->replace_with(assignment);
opt_constant_folding.cpp 127 * remove the never-executed assignment.
153 * remove the never-executed assignment.
191 /* Next, see if the call can be replaced with an assignment of a constant */
195 ir_assignment *assignment = local
197 ir->replace_with(assignment);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
config.hpp 48 // Support move construction and assignment on compilers known to allow it.
255 # define ASIO_STATIC_CONSTANT(type, assignment) static const type assignment
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug096.go 24 It appears that the first assignment changes the size of A from open
bug143.go 41 * bug143.go:19: assignment count mismatch: 2 = 1
bug450.go 8 // "set but not used" and elides an assignment, causing
issue17645.go 15 var _ string = append(s, Foo{""}) // ERROR "cannot use .. \(type string\) as type int in field value" "cannot use Foo literal \(type Foo\) as type int in append" "cannot use append\(s\, Foo literal\) \(type \[\]int\) as type string in 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 149 * Gets the spec of a local variable assignment that occurs at this
150 * instruction, or null if no local variable assignment occurs. This
157 RegisterSpec assignment; local
159 assignment = sources.get(0);
161 assignment = result;
164 if (assignment == null) {
168 LocalItem localItem = assignment.getLocalItem();
174 return assignment;
  /build/soong/androidmk/cmd/androidmk/
androidmk.go 168 case *mkparser.Assignment:
256 func handleAssignment(file *bpFile, assignment *mkparser.Assignment, c *conditional) {
257 if !assignment.Name.Const() {
258 file.errorf(assignment, "unsupported non-const variable name")
262 if assignment.Target != nil {
263 file.errorf(assignment, "unsupported target assignment")
267 name := assignment.Name.Value(nil)
281 file.errorf(assignment, "prefix assignment inside conditional, skipping conditional"
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
assignments.go 5 // This file implements initialization and assignment checks.
14 // assignment reports whether x can be assigned to a variable of type T,
16 // type. context describes the context in which the assignment takes place.
17 // Use T == nil to indicate assignment to an untyped blank identifier.
18 // x.mode is set to invalid if the assignment failed.
19 func (check *Checker) assignment(x *operand, T Type, context string) { func
93 check.assignment(x, lhs.typ, "constant declaration")
124 check.assignment(x, lhs.typ, context)
143 check.assignment(x, nil, "assignment to _ identifier"
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
assignments.go 5 // This file implements initialization and assignment checks.
14 // assignment reports whether x can be assigned to a variable of type T,
16 // type. context describes the context in which the assignment takes place.
17 // Use T == nil to indicate assignment to an untyped blank identifier.
18 // x.mode is set to invalid if the assignment failed.
19 func (check *Checker) assignment(x *operand, T Type, context string) { func
93 check.assignment(x, lhs.typ, "constant declaration")
124 check.assignment(x, lhs.typ, context)
143 check.assignment(x, nil, "assignment to _ identifier"
    [all...]
  /prebuilts/go/darwin-x86/test/
alias2.go 49 var _ N0 = T0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
50 var _ N0 = A0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
85 var _ N0 = T0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
86 var _ N0 = A0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
88 var _ A5 = Value{} // ERROR "cannot use reflect\.Value literal \(type reflect.Value\) as type A5 in assignment|incompatible type"
  /prebuilts/go/linux-x86/test/
alias2.go 49 var _ N0 = T0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
50 var _ N0 = A0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
85 var _ N0 = T0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
86 var _ N0 = A0{} // ERROR "cannot use T0 literal \(type T0\) as type N0 in assignment|incompatible type"
88 var _ A5 = Value{} // ERROR "cannot use reflect\.Value literal \(type reflect.Value\) as type A5 in assignment|incompatible type"
  /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...]
  /external/jcommander/src/main/java/com/beust/jcommander/
WrappedParameter.java 71 String a = m_dynamicParameter.assignment();
105 return m_dynamicParameter != null ? m_dynamicParameter.assignment() : "";

Completed in 1396 milliseconds

1 23 4 5 6 7 8 91011>>