Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:_paused
(Results
1 - 13
of
13
) sorted by relevance
/third_party/python/Lib/asyncio/
H
A
D
streams.py
132
self.
_paused
= False
137
assert not self.
_paused
138
self.
_paused
= True
143
assert self.
_paused
144
self.
_paused
= False
155
if not self.
_paused
:
168
if not self.
_paused
:
416
self.
_paused
= False
435
if self.
_paused
:
464
if self.
_paused
an
[all...]
H
A
D
proactor_events.py
188
self.
_paused
= True
193
self.
_paused
= False
196
return not self.
_paused
and not self._closing
199
if self._closing or self.
_paused
:
201
self.
_paused
= True
218
if self._closing or not self.
_paused
:
221
self.
_paused
= False
252
if self.
_paused
:
303
if not self.
_paused
:
320
if not self.
_paused
[all...]
H
A
D
unix_events.py
470
self.
_paused
= False
498
return not self.
_paused
and not self._closing
542
self.
_paused
= True
548
if self._closing or not self.
_paused
:
550
self.
_paused
= False
H
A
D
selector_events.py
786
self.
_paused
= False # Set when pause_reading() called
834
return not self.is_closing() and not self.
_paused
839
self.
_paused
= True
845
if self._closing or not self.
_paused
:
847
self.
_paused
= False
/third_party/lzma/CPP/7zip/UI/FileManager/
H
A
D
ProgressDialog.h
18
bool
_paused
;
member in CProgressSync
22
CProgressSync(): _stopped(false),
_paused
(false), _total(1), _completed(0) {}
in CProgressSync()
38
return
_paused
;
in GetPaused()
43
_paused
= value;
in SetPaused()
H
A
D
ProgressDialog2.h
35
bool
_paused
;
member in CProgressSync
73
_paused
= val;
in Set_Paused()
H
A
D
ProgressDialog2.cpp
80
_stopped(false),
_paused
(false),
in CProgressSync()
89
#define CHECK_STOP if (_stopped) return E_ABORT; if (!
_paused
) return S_OK;
95
return
_paused
;
in Get_Paused()
/third_party/node/deps/npm/node_modules/gauge/lib/
H
A
D
index.js
37
this.
_paused
= false // are we paused for back pressure?
251
if (this._disabled || this.
_paused
) {
283
this.
_paused
= true
285
this.
_paused
= false
/third_party/node/deps/npm/node_modules/npmlog/lib/
H
A
D
log.js
82
if (this.progressEnabled || this.
_paused
) {
185
this.
_paused
= true
192
if (!this.
_paused
) {
196
this.
_paused
= false
265
if (this.
_paused
) {
/third_party/node/lib/
H
A
D
_http_server.js
732
socket.
_paused
= false;
748
if (socket.
_paused
&& !needPause) {
749
socket.
_paused
= false;
806
assert(!socket.
_paused
);
949
if (socket.
_paused
&& socket.parser) {
1042
if (!socket.
_paused
) {
1045
socket.
_paused
= true;
1152
if (this.
_paused
) {
H
A
D
_http_incoming.js
43
if (socket && !socket.
_paused
&& socket.readable)
/third_party/python/Lib/test/test_asyncio/
H
A
D
test_proactor_events.py
413
self.assertFalse(tr.
_paused
)
422
self.assertTrue(tr.
_paused
)
430
self.assertFalse(tr.
_paused
)
H
A
D
test_selector_events.py
517
self.assertFalse(tr.
_paused
)
523
self.assertTrue(tr.
_paused
)
529
self.assertFalse(tr.
_paused
)
Completed in 13 milliseconds