Searched defs:system (Results 1 - 25 of 100) sorted by relevance

1234

/external/clang/test/Analysis/
H A Dvirtualcall.h4 namespace system { namespace
/external/conscrypt/android-stub/src/main/java/dalvik/system/
H A DBlockGuard.java17 package dalvik.system;
H A DCloseGuard.java17 package dalvik.system;
/external/libbrillo/brillo/errors/
H A Derror_codes.h30 namespace system { namespace in namespace:brillo::errors
34 // the system error code (see "errno").
38 } // namespace system
H A Derror_codes.cc26 namespace system { namespace in namespace:brillo::errors
27 const char kDomain[] = "system";
38 ERROR_ENTRY(EINTR), // Interrupted system call
64 ERROR_ENTRY(EROFS), // Read-only file system
128 ERROR_ENTRY(ERESTART), // Interrupted system call should be restarted
187 // This list comes from <errno.h> system header. The elements are ordered
193 // Gets the error code string from system error code. If unknown system error
222 } // namespace system
/external/python/cpython2/Lib/curses/
H A Dhas_key.py185 system = key in _curses variable
187 if system != python:
188 L.append( 'Mismatch for key %s, system=%i, Python=%i'
189 % (_curses.keyname( key ), system, python) )
/external/python/cpython3/Lib/curses/
H A Dhas_key.py185 system = _curses.has_key(key) variable
187 if system != python:
188 L.append( 'Mismatch for key %s, system=%i, Python=%i'
189 % (_curses.keyname( key ), system, python) )
/external/autotest/client/tools/
H A Davgtime23 (user, system, elapsed, cpu) = line.split()[0:4]
25 system = float(re.match(r'([\d\.]+)', system).group(0)) variable
30 list.append((user, system, elapsed, cpu))
33 print " system: %0.2fs (%0.2f%%)" % avg_deviation([x[1] for x in list])
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DOutputModule.java29 public static OutputModule system() { method in class:OutputModule
/external/conscrypt/libcore-stub/src/main/java/android/system/
H A DStructTimeval.java17 package android.system;
/external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
H A DMojoException.java5 package org.chromium.mojo.system;
H A DUntypedHandle.java5 package org.chromium.mojo.system;
7 import org.chromium.mojo.system.DataPipe.ConsumerHandle;
8 import org.chromium.mojo.system.DataPipe.ProducerHandle;
18 * @see org.chromium.mojo.system.Handle#pass()
H A DFlags.java5 package org.chromium.mojo.system;
H A DHandle.java5 package org.chromium.mojo.system;
7 import org.chromium.mojo.system.Core.WaitResult;
H A DPair.java5 package org.chromium.mojo.system;
H A DResultAnd.java5 package org.chromium.mojo.system;
H A DRunLoop.java5 package org.chromium.mojo.system;
H A DWatcher.java5 package org.chromium.mojo.system;
7 import org.chromium.mojo.system.Core.HandleSignals;
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
H A DConfigLoader.java23 * from system properties. System property keys are prefixed with
24 * <code>jacoco.</code>. If the same property is defined twice the system
34 static Properties load(final String resource, final Properties system) { argument
37 loadSystemProperties(system, result);
38 substSystemProperties(result, system);
54 private static void loadSystemProperties(final Properties system, argument
56 for (final Map.Entry<Object, Object> entry : system.entrySet()) {
66 final Properties system) {
74 final String sub = system.getProperty(m.group(1));
65 substSystemProperties(final Properties result, final Properties system) argument
/external/libmojo/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DMessagePipeHandleImpl.java5 package org.chromium.mojo.system.impl;
7 import org.chromium.mojo.system.Handle;
8 import org.chromium.mojo.system.MessagePipeHandle;
9 import org.chromium.mojo.system.ResultAnd;
34 * @see org.chromium.mojo.system.MessagePipeHandle#pass()
H A DUntypedHandleImpl.java5 package org.chromium.mojo.system.impl;
7 import org.chromium.mojo.system.DataPipe.ConsumerHandle;
8 import org.chromium.mojo.system.DataPipe.ProducerHandle;
9 import org.chromium.mojo.system.MessagePipeHandle;
10 import org.chromium.mojo.system.SharedBufferHandle;
11 import org.chromium.mojo.system.UntypedHandle;
33 * @see org.chromium.mojo.system.UntypedHandle#pass()
41 * @see org.chromium.mojo.system.UntypedHandle#toMessagePipeHandle()
49 * @see org.chromium.mojo.system.UntypedHandle#toDataPipeConsumerHandle()
57 * @see org.chromium.mojo.system
[all...]
/external/mockito/src/test/java/org/mockito/internal/runners/
H A DDefaultInternalRunnerTest.java78 private System system; field in class:DefaultInternalRunnerTest.TestFailOnInitialization
82 assertNotNull(system);
/external/mockito/src/test/java/org/mockitousage/bugs/injection/
H A DChildWithSameParentFieldInjectionTest.java19 private System system; field in class:ChildWithSameParentFieldInjectionTest
26 assertNotNull(((AbstractSystem) system).someService);
31 assertNotNull(system.someService);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowApkAssets.java19 protected void __constructor__(String path, boolean system, boolean forceSharedLib, argument
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
H A DXMLDocument.java46 * @param system
47 * system reference, required if doctype is given
58 final String system, final String encoding,
61 writeHeader(rootnode, pubId, system, encoding, standalone, writer);
73 * @param system
74 * system reference, required if doctype is given
85 final String system, final String encoding,
88 this(rootnode, pubId, system, encoding, standalone,
99 final String system, final String encoding,
107 writer.write(format(DOCTYPE, rootnode, pubId, system));
57 XMLDocument(final String rootnode, final String pubId, final String system, final String encoding, final boolean standalone, final Writer writer) argument
84 XMLDocument(final String rootnode, final String pubId, final String system, final String encoding, final boolean standalone, final OutputStream output) argument
98 writeHeader(final String rootnode, final String pubId, final String system, final String encoding, final boolean standalone, final Writer writer) argument
[all...]

Completed in 560 milliseconds

1234