Home
last modified time | relevance | path

Searched refs:caused_by (Results 1 – 25 of 38) sorted by relevance

12

/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Libraries.ocd/Flammable.ocd/
H A DScript.c20 public func Incineration(int caused_by) in Incineration() argument
22 _inherited(caused_by); in Incineration()
26 …CreateEffect(LibraryFlammable, 1, 1, caused_by); // The effect will not last long, so timer 1 shou… in Incineration()
41 Construction = func (int caused_by) in func() argument
43 this.caused_by = caused_by; in func()
51 this.Target->BurnDown(this.caused_by);
57 public func BurnDown(int caused_by) in BurnDown() argument
68 burned->Incinerate(100, caused_by); in BurnDown()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Rules.ocd/NoFriendlyFire.ocd/
H A DScript.c130 public func NoFF_BlastObject(int level, int caused_by, ...) in NoFF_BlastObject() argument
132 var w_controller = caused_by; in NoFF_BlastObject()
136 return this->Backup_BlastObject(level, caused_by, ...); in NoFF_BlastObject()
139 public func NoFF_DoShockwaveCheck(int x, int y, int caused_by, ...) in NoFF_DoShockwaveCheck() argument
141 var w_controller = caused_by; in NoFF_DoShockwaveCheck()
145 return this->Backup_DoShockwaveCheck(x, y, caused_by, ...); in NoFF_DoShockwaveCheck()
/dports/games/openclonk/openclonk-release-8.1-src/planet/System.ocg/
H A DFire.c54 , int caused_by /* the player that caused the incineration */ in Incinerate() argument
73 …effect = AddEffect("Fire", this, 100, 4, this, nil, caused_by, !!blasted, incinerating_object, str… in Incinerate()
121 global func FxFireStart(object target, proplist effect, int temp, int caused_by, bool blasted, obje… in FxFireStart() argument
177 target->~IncinerationEx(caused_by); in FxFireStart()
201 effect.caused_by = caused_by; // used in C4Object::GetFireCause and timer! <- fixme? in FxFireStart()
293 target->~Incineration(effect.caused_by); in FxFireStart()
390 target->IncinerateLandscape(0, 0, effect.caused_by); in FxFireTimer()
430 obj->Incinerate(Max(10, amount), effect.caused_by, false, effect.incinerating_obj); in FxFireTimer()
446 target->DoEnergy(-effect.strength*4, true, FX_Call_EngFire, effect.caused_by); in FxFireTimer()
452 target->DoDamage(2, FX_Call_DmgFire, effect.caused_by); in FxFireTimer()
H A DExplode.c256 global func BlastObject(int level, int caused_by) in BlastObject() argument
259 if (caused_by == nil) in BlastObject()
260 caused_by = GetController(); in BlastObject()
262 DoDamage(level, FX_Call_DmgBlast, caused_by); in BlastObject()
266 DoEnergy(-level, false, FX_Call_EngBlast, caused_by); in BlastObject()
270 Incinerate(level, caused_by); in BlastObject()
/dports/security/py-volatility3/volatility3-94426ad/volatility/cli/
H A D__init__.py311 caused_by = [
317 caused_by = [
324 caused_by = [
333 caused_by = [
341 caused_by = [
348 caused_by = ["A faulty layer implementation (re-run with -vvv and file a bug)"]
352caused_by = ["A required python module is not installed (install the module and re-run)"]
356 caused_by = [
364 for cause in caused_by:
/dports/devel/monotone/monotone-1.1/src/
H A Dpcrewrap.cc31 origin::type caused_by));
33 origin::type caused_by));
251 origin::type caused_by) in pcre_compile_error() argument
281 E(false, caused_by, (erroff == -1 in pcre_compile_error()
292 origin::type caused_by) in pcre_study_error() argument
H A Dsanity.cc335 origin::type caused_by, in generic_failure() argument
347 % file % line % origin::type_to_string(caused_by) % expr, in generic_failure()
351 if (caused_by == origin::user) in generic_failure()
361 switch (caused_by) in generic_failure()
365 throw unrecoverable_failure(caused_by, message); in generic_failure()
367 throw recoverable_failure(caused_by, message); in generic_failure()
H A Dsanity.hh40 origin::type caused_by() const { return _caused_by; } in caused_by() function in recoverable_failure
51 origin::type caused_by() const { return _caused_by; } in caused_by() function in unrecoverable_failure
93 origin::type caused_by,
H A Dtransforms.cc59 error_in_transform(std::exception & e, origin::type caused_by) in error_in_transform() argument
83 E(false, caused_by, in error_in_transform()
/dports/misc/vifm/vifm-0.11/src/
H A Dfops_put.c64 static void prompt_what_to_do(const char fname[], const char caused_by[]);
65 static void handle_prompt_response(const char fname[], const char caused_by[],
938 prompt_what_to_do(const char fname[], const char caused_by[]) in prompt_what_to_do() argument
960 const int same_file = paths_are_equal(dst_buf, caused_by); in prompt_what_to_do()
969 is_regular_file_noderef(caused_by)) in prompt_what_to_do()
993 replace_home_part(caused_by)); in prompt_what_to_do()
999 replace_home_part(caused_by)); in prompt_what_to_do()
1002 handle_prompt_response(fname, caused_by, response); in prompt_what_to_do()
1007 handle_prompt_response(const char fname[], const char caused_by[], in handle_prompt_response() argument
1067 prompt_what_to_do(fname, caused_by); in handle_prompt_response()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Libraries.ocd/HUDAdapter.ocd/
H A DScript.c104 private func OnEnergyChange(int change, int cause, int caused_by) in OnEnergyChange() argument
107 HUDcontroller->~OnCrewHealthChange(this, change, cause, caused_by); in OnEnergyChange()
108 return _inherited(change, cause, caused_by, ...); in OnEnergyChange()
/dports/games/freeciv-nox11/freeciv-2.6.6/common/
H A Dextras.c32 static struct extra_type_list *caused_by[EC_LAST]; variable
43 caused_by[i] = extra_type_list_new(); in extras_init()
85 extra_type_list_destroy(caused_by[i]); in extras_free()
86 caused_by[i] = NULL; in extras_free()
229 return caused_by[cause]; in extra_type_list_by_cause()
266 extra_type_list_append(caused_by[cause], pextra); in extra_to_caused_by_list()
/dports/games/freeciv/freeciv-2.6.6/common/
H A Dextras.c32 static struct extra_type_list *caused_by[EC_LAST]; variable
43 caused_by[i] = extra_type_list_new(); in extras_init()
85 extra_type_list_destroy(caused_by[i]); in extras_free()
86 caused_by[i] = NULL; in extras_free()
229 return caused_by[cause]; in extra_type_list_by_cause()
266 extra_type_list_append(caused_by[cause], pextra); in extra_to_caused_by_list()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Structures.ocd/Compensator.ocd/
H A DScript.c44 protected func Incineration(int caused_by) in Incineration() argument
50 SetController(caused_by); in Incineration()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Items.ocd/Weapons.ocd/IronBomb.ocd/
H A DScript.c100 protected func Incineration(int caused_by) in Incineration() argument
104 SetController(caused_by); in Incineration()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Items.ocd/Tools.ocd/PowderKeg.ocd/
H A DScript.c92 public func Incineration(int caused_by) in Incineration() argument
94 SetController(caused_by); in Incineration()
/dports/devel/py-installer/installer-0.4.0/tests/
H A Dtest_records.py88 def test_invalid_elements(self, path, hash_, size, caused_by): argument
93 for word in caused_by:
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Items.ocd/Tools.ocd/Dynamite.ocd/
H A DScript.c18 func Incineration(int caused_by) in Incineration() argument
22 SetController(caused_by); in Incineration()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Items.ocd/Tools.ocd/DynamiteBox.ocd/
H A DScript.c163 public func Incineration(int caused_by) in Incineration() argument
168 SetController(caused_by); in Incineration()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Items.ocd/Tools.ocd/Boompack.ocd/
H A DScript.c33 func Incineration(int caused_by) in Incineration() argument
35 SetController(caused_by); in Incineration()
/dports/games/openclonk/openclonk-release-8.1-src/planet/Objects.ocd/Goals.ocd/Defense.ocd/DefenseBoomAttack.ocd/
H A DScript.c302 public func Incineration(int caused_by) in Incineration() argument
305 return DoFireworks(caused_by); in Incineration()
/dports/devel/monotone/monotone-1.1/src/network/
H A Dreactor.cc60 % origin::type_to_string(rf.caused_by()) in ready_for_io()
/dports/devel/py-taskflow/taskflow-4.6.3/taskflow/
H A Dretry.py117 def caused_by(self, exception_cls, index=None, include_retry=False): member in History
/dports/devel/efl/efl-1.25.1/src/lib/elementary/
H A Defl_ui_selection.eo14caused_by : Efl.Ui.Selection; [[The EFL widget that triggered the change. $NULL if it is not an EF…
H A Delm_cnp.c210 if (ldata->obj == changed->caused_by) in _selection_changed_cb()

12