Searched refs:return_flag (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_jumps.cpp211 ir_variable* return_flag; /* used to break out of all loops and then jump to the return instruction */ member in struct:function_record
220 this->return_flag = 0;
228 if(!this->return_flag) {
229 this->return_flag = new(this->signature) ir_variable(glsl_type::bool_type, "return_flag", ir_var_temporary);
230 this->signature->body.push_head(new(this->signature) ir_assignment(new(this->signature) ir_dereference_variable(return_flag), new(this->signature) ir_constant(false), 0));
231 this->signature->body.push_head(this->return_flag);
233 return this->return_flag;
313 ir_variable* return_flag = this->function.get_return_flag(); local
323 new (ir) ir_dereference_variable(return_flag),
[all...]
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp211 ir_variable* return_flag; /* used to break out of all loops and then jump to the return instruction */ member in struct:function_record
220 this->return_flag = 0;
228 if(!this->return_flag) {
229 this->return_flag = new(this->signature) ir_variable(glsl_type::bool_type, "return_flag", ir_var_temporary);
230 this->signature->body.push_head(new(this->signature) ir_assignment(new(this->signature) ir_dereference_variable(return_flag), new(this->signature) ir_constant(false), 0));
231 this->signature->body.push_head(this->return_flag);
233 return this->return_flag;
313 ir_variable* return_flag = this->function.get_return_flag(); local
323 new (ir) ir_dereference_variable(return_flag),
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Djavascriptlintrules.py278 return_flag = function.doc.GetFlag('return')
279 if (return_flag.type is None or (
280 'undefined' not in return_flag.type and
281 'void' not in return_flag.type and
282 '*' not in return_flag.type)):
286 return_flag.flag_token, Position.AtBeginning())
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Djavascriptlintrules.py322 return_flag = function.doc.GetFlag('return')
323 if (return_flag.type is None or (
324 'undefined' not in return_flag.type and
325 'void' not in return_flag.type and
326 '*' not in return_flag.type)):
330 return_flag.flag_token, position=Position.AtBeginning())

Completed in 270 milliseconds