ecore: Replace TABs with spaces

This commit is contained in:
Jean-Philippe Andre 2016-06-27 17:26:32 +09:00
parent 6250cfc39d
commit 4d6216c7f6
1 changed files with 24 additions and 24 deletions

View File

@ -20,8 +20,8 @@ class Efl.Loop (Eo.Base)
queue.]] queue.]]
} }
iterate_may_block { iterate_may_block {
[[Runs a single iteration of the main loop to process everything on the [[Runs a single iteration of the main loop to process everything on the
queue with block/non-blocking status.]] queue with block/non-blocking status.]]
return: int; return: int;
params { params {
may_block: int; [[A flag if the main loop has a possibility of blocking.]] may_block: int; [[A flag if the main loop has a possibility of blocking.]]
@ -29,45 +29,45 @@ class Efl.Loop (Eo.Base)
} }
begin { begin {
[[Runs the application main loop.]] [[Runs the application main loop.]]
return: ubyte; [[Value set by quit()]] return: ubyte; [[Value set by quit()]]
} }
quit { quit {
[[Quits the main loop once all the events currently on the queue have [[Quits the main loop once all the events currently on the queue have
been processed.]] been processed.]]
params { params {
@in exit_code: ubyte; [[Returned value by begin()]] @in exit_code: ubyte; [[Returned value by begin()]]
} }
} }
job { job {
[[Will execute that promise in the near future.]] [[Will execute that promise in the near future.]]
params { params {
@in data: const(void_ptr) @optional; [[The data to be given when the promise is done.]] @in data: const(void_ptr) @optional; [[The data to be given when the promise is done.]]
} }
return: promise<void_ptr>; [[The promise that will be triggered.]] return: promise<void_ptr>; [[The promise that will be triggered.]]
} }
timeout { timeout {
[[Will trigger this promise when the specified timeout occur.]] [[Will trigger this promise when the specified timeout occur.]]
params { params {
@in time: double; [[The time from now in second that the main loop will wait before triggering it.]] @in time: double; [[The time from now in second that the main loop will wait before triggering it.]]
@in data: const(void_ptr) @optional; [[The data to be given when the promise is done.]] @in data: const(void_ptr) @optional; [[The data to be given when the promise is done.]]
} }
return: promise<void_ptr>; [[The promise that will be triggered.]] return: promise<void_ptr>; [[The promise that will be triggered.]]
} }
register { register {
[[Will register a manager of a specific class to be answered by eo.provider_find.]] [[Will register a manager of a specific class to be answered by eo.provider_find.]]
params { params {
@in klass: const(Eo.Class); [[The class provided by the registered provider.]] @in klass: const(Eo.Class); [[The class provided by the registered provider.]]
@in provider: const(Eo.Base); [[The provider for the newly registered class that has to provide that said Eo.Class.]] @in provider: const(Eo.Base); [[The provider for the newly registered class that has to provide that said Eo.Class.]]
} }
return: bool; [[true if successfully register, false otherwise.]] return: bool; [[true if successfully register, false otherwise.]]
} }
unregister { unregister {
[[Will unregister a manager of a specific class that was previously registered and answered by eo.provider_find.]] [[Will unregister a manager of a specific class that was previously registered and answered by eo.provider_find.]]
params { params {
@in klass: const(Eo.Class); [[The class provided by the provider to unregister for.]] @in klass: const(Eo.Class); [[The class provided by the provider to unregister for.]]
@in provider: const(Eo.Base); [[The provider for the registered class to unregister.]] @in provider: const(Eo.Base); [[The provider for the registered class to unregister.]]
} }
return: bool; [[true if successfully unregistered, false otherwise.]] return: bool; [[true if successfully unregistered, false otherwise.]]
} }
} }
events { events {