Home
last modified time | relevance | path

Searched refs:assignment (Results 1 – 25 of 89) sorted by relevance

1234

/aosp12/build/blueprint/parser/
H A Dparser.go208 assignment = new(Assignment)
216 assignment.Name = name
217 assignment.NamePos = namePos
218 assignment.Value = value
219 assignment.OrigValue = value
220 assignment.EqualsPos = pos
221 assignment.Assigner = assigner
232 val, err := p.evaluateOperator(old.Value, assignment.Value, '+', assignment.EqualsPos)
479 if assignment, local := p.scope.Get(text); assignment == nil {
485 value = assignment.Value
[all …]
H A Dprinter.go88 if assignment, ok := def.(*Assignment); ok {
89 p.printAssignment(assignment)
97 func (p *printer) printAssignment(assignment *Assignment) {
98 p.printToken(assignment.Name, assignment.NamePos)
100 p.printToken(assignment.Assigner, assignment.EqualsPos)
102 p.printExpression(assignment.OrigValue)
H A Dsort.go119 if assignment, ok := def.(*Assignment); ok {
120 sortListsInValue(assignment.Value, file)
/aosp12/build/soong/androidmk/androidmk/
H A Dandroidmk.go276 if !assignment.Name.Const() {
277 file.errorf(assignment, "unsupported non-const variable name")
281 if assignment.Target != nil {
282 file.errorf(assignment, "unsupported target assignment")
286 name := assignment.Name.Value(nil)
320 file.errorf(assignment, "conditional %s %s on global assignment", eq, c.cond)
324 appendVariable := assignment.Type == "+="
334 armModeAssign := assignment
338 file.errorf(assignment, "unsupported assignment to %s", name)
342 val, err = makeVariableToBlueprint(file, assignment.Value, bpparser.ListType)
[all …]
/aosp12/build/make/tools/
H A Dpost_process_props.py194 assignment = str(self).rsplit("\n", 1)[-1]
195 self.comments.append("#" + assignment)
204 assignment = []
207 assignment.append(self.name + operator + self.value)
208 return "\n".join(self.comments + assignment)
/aosp12/system/sepolicy/prebuilts/api/26.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
H A Duntrusted_app_25.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/27.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
H A Duntrusted_app_25.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/28.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/29.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/28.0/private/
H A Duntrusted_app.te8 ### directory). The untrusted_app domain is the default assignment in
H A Duntrusted_app_27.te11 ### directory). The untrusted_app_27 domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/29.0/private/
H A Duntrusted_app.te8 ### directory). The untrusted_app domain is the default assignment in
/aosp12/frameworks/base/packages/SettingsLib/
H A DAndroid.bp25 // ANDROIDMK TRANSLATION ERROR: unsupported assignment to LOCAL_SHARED_JAVA_LIBRARIES
/aosp12/system/sepolicy/prebuilts/api/26.0/private/
H A Duntrusted_app.te8 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/30.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/31.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/prebuilts/api/32.0/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/sepolicy/public/
H A Duntrusted_app.te7 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/incremental_delivery/libdataloader/
H A DAndroid.bp62 // operator=() does not handle self-assignment properly - all protobuf-generated classes
/aosp12/system/sepolicy/prebuilts/api/27.0/private/
H A Duntrusted_app.te8 ### directory). The untrusted_app domain is the default assignment in
/aosp12/system/netd/
H A DAndroid.bp64 "-bugprone-unhandled-self-assignment", // found in DnsResolver/stats.pb.h
/aosp12/hardware/google/pixel/pwrstats_util/
H A DAndroid.bp73 + ",-bugprone-unhandled-self-assignment" // in powerstats_util.pb.h
/aosp12/build/blueprint/
H A Dcontext.go1239 if assignment, local := scope.Get(v); assignment == nil || !local {
1242 switch value := assignment.Value.Eval().(type) {
1256 return ret, assignment.EqualsPos, nil
1260 Pos: assignment.EqualsPos,
1263 panic(fmt.Errorf("unknown value type: %d", assignment.Value.Type()))
1269 if assignment, _ := scope.Get(v); assignment == nil {
1272 switch value := assignment.Value.Eval().(type) {
1274 return value.Value, assignment.EqualsPos, nil
1278 Pos: assignment.EqualsPos,
1281 panic(fmt.Errorf("unknown value type: %d", assignment.Value.Type()))

1234