/frameworks/base/services/core/java/com/android/server/am/ |
UserStartedState.java | 30 // User is in the initial process of being stopped. 43 public UserStartedState(UserHandle handle, boolean initial) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 441 token, initial = line[start:end], line[start] 443 if initial in numchars or \ 444 (initial == '.' and token != '.'): # ordinary number 446 elif initial in '\r\n': 451 elif initial == '#': 466 elif initial in single_quoted or \ 471 endprog = (endprogs[initial] or endprogs[token[1]] or 478 elif initial in namechars: # ordinary name 480 elif initial == '\\': # continued stmt 485 if initial in '([{': parenlev = parenlev + [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tokenize.py | 367 token, initial = line[start:end], line[start] 369 if initial in numchars or \ 370 (initial == '.' and token != '.'): # ordinary number 372 elif initial in '\r\n': 375 elif initial == '#': 390 elif initial in single_quoted or \ 395 endprog = (endprogs[initial] or endprogs[token[1]] or 402 elif initial in namechars: # ordinary name 404 elif initial == '\\': # continued stmt 407 if initial in '([{' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 441 token, initial = line[start:end], line[start] 443 if initial in numchars or \ 444 (initial == '.' and token != '.'): # ordinary number 446 elif initial in '\r\n': 451 elif initial == '#': 466 elif initial in single_quoted or \ 471 endprog = (endprogs[initial] or endprogs[token[1]] or 478 elif initial in namechars: # ordinary name 480 elif initial == '\\': # continued stmt 485 if initial in '([{': parenlev = parenlev + [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tokenize.py | 367 token, initial = line[start:end], line[start] 369 if initial in numchars or \ 370 (initial == '.' and token != '.'): # ordinary number 372 elif initial in '\r\n': 375 elif initial == '#': 390 elif initial in single_quoted or \ 395 endprog = (endprogs[initial] or endprogs[token[1]] or 402 elif initial in namechars: # ordinary name 404 elif initial == '\\': # continued stmt 407 if initial in '([{' [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
themeChromiumAndroid.css | 40 border-radius: initial;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
signals.py | 47 initial = signal.getsignal(signal.SIGINT) 52 signal.signal(signal.SIGINT, initial)
|
/external/chromium_org/third_party/ots/include/ |
ots-memory-stream.h | 50 ExpandingMemoryStream(size_t initial, size_t limit) 51 : length_(initial), limit_(limit), off_(0) {
|
/external/deqp/framework/common/ |
tcuCPUWarmup.cpp | 67 static inline float dummyComputation (float initial, int numIterations) 69 float a = initial;
|
/external/lldb/test/unittest2/ |
signals.py | 47 initial = signal.getsignal(signal.SIGINT) 52 signal.signal(signal.SIGINT, initial)
|
/external/valgrind/main/none/tests/s390x/ |
dfpext.c | 7 #define L2D(insn, initial, target,round) \ 9 register unsigned long source asm("2") = initial; \ 15 #define I2D(insn, initial, target,round) \ 17 register int source asm("2") = initial; \ 23 #define D2L(insn, initial, type, round, cc) \ 25 register type source asm("f0") = initial; \ 34 #define D2I(insn, initial, type, round, cc) \ 36 register type source asm("f0") = initial; \
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
signals.py | 61 initial = signal.getsignal(signal.SIGINT) 66 signal.signal(signal.SIGINT, initial)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
signals.py | 61 initial = signal.getsignal(signal.SIGINT) 66 signal.signal(signal.SIGINT, initial)
|
/external/chromium_org/remoting/host/ |
resizing_host_observer_unittest.cc | 146 ScreenResolution initial = MakeResolution(640, 480); local 148 new FakeDesktopResizer(initial, false, NULL, 0, 160 ScreenResolution initial = MakeResolution(640, 480); local 162 new FakeDesktopResizer(initial, false, NULL, 0, 168 ScreenResolution expected_sizes[] = { initial, initial };
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/ |
model.js | 53 var initial = (this.operand || '0')[0]; 54 return (initial === '-') ? this.set_({operand: this.operand.slice(1)}) : 55 (initial !== '0') ? this.set_({operand: '-' + this.operand}) :
|
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
PatternSyntaxExceptionTest.java | 128 public void assertDeserialized(Serializable initial, Serializable deserialized) { 131 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial, deserialized); 133 PatternSyntaxException initPatternSyntaxException = (PatternSyntaxException) initial;
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertificateRevocationExceptionTest.java | 151 public void assertDeserialized(Serializable initial, Serializable deserialized) { 152 assertTrue(initial instanceof CertificateRevokedException); 155 CertificateRevokedException expected = (CertificateRevokedException) initial;
|
/external/chromium_org/v8/test/mjsunit/ |
array-reduce.js | 444 "reduce no initial value not throwing TypeError"); 445 assertEquals("Reduce of empty array with no initial value", e.message, 446 "reduce no initial TypeError type"); 456 "reduceRight no initial value not throwing TypeError"); 457 assertEquals("Reduce of empty array with no initial value", e.message, 458 "reduceRight no initial TypeError type"); 468 "reduce sparse no initial value not throwing TypeError"); 469 assertEquals("Reduce of empty array with no initial value", e.message, 470 "reduce no initial TypeError type"); 480 "reduceRight sparse no initial value not throwing TypeError") [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
ConnectionEventTest.java | 93 public void assertDeserialized(Serializable initial, 95 ConnectionEvent ceInitial = (ConnectionEvent) initial;
|
/external/chromium_org/tools/relocation_packer/src/ |
run_length_encoder.cc | 64 // The initial address for uncondensing, the start index for the first 71 // The first relocation is just one created from the initial address. 72 const Elf32_Rel initial = {addr, R_ARM_RELATIVE}; local 73 relocations->push_back(initial); 132 // initial address. Start uncondensing pairs at the third, and finish
|
/external/stlport/src/ |
cxa.c | 108 static struct exit_function_list initial; variable in typeref:struct:exit_function_list 109 struct exit_function_list *__exit_funcs = &initial;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
InetSocketAddressTest.java | 96 public void assertDeserialized(Serializable initial, 99 InetSocketAddress init = (InetSocketAddress) initial;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/callback/ |
PasswordCallbackTest.java | 128 public void assertDeserialized(Serializable initial, Serializable deserialized) { 129 final PasswordCallback callback1 = (PasswordCallback) initial;
|
/ndk/sources/cxx-stl/stlport/src/ |
cxa.c | 108 static struct exit_function_list initial; variable in typeref:struct:exit_function_list 109 struct exit_function_list *__exit_funcs = &initial;
|
/external/chromium_org/components/nacl/browser/ |
pnacl_translation_cache.h | 75 // Doom all entries between |initial| and |end|. If the return value is 78 int DoomEntriesBetween(base::Time initial, base::Time end,
|