Searched defs:system (Results 1 - 25 of 82) 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/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/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 DAsyncWaiter.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...]
H A DDataPipeConsumerHandleImpl.java5 package org.chromium.mojo.system.impl;
7 import org.chromium.mojo.system.DataPipe.ConsumerHandle;
8 import org.chromium.mojo.system.DataPipe.ReadFlags;
9 import org.chromium.mojo.system.ResultAnd;
33 * @see org.chromium.mojo.system.Handle#pass()
H A DDataPipeProducerHandleImpl.java5 package org.chromium.mojo.system.impl;
7 import org.chromium.mojo.system.DataPipe.ProducerHandle;
8 import org.chromium.mojo.system.DataPipe.WriteFlags;
9 import org.chromium.mojo.system.ResultAnd;
33 * @see org.chromium.mojo.system.DataPipe.ProducerHandle#pass()
H A DSharedBufferHandleImpl.java5 package org.chromium.mojo.system.impl;
7 import org.chromium.mojo.system.SharedBufferHandle;
31 * @see org.chromium.mojo.system.SharedBufferHandle#pass()
/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/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...]
/external/junit/src/main/java/org/junit/internal/
H A DTextListener.java16 public TextListener(JUnitSystem system) { argument
17 this(system.out());
/external/junit/src/main/java/org/junit/runner/
H A DJUnitCore.java66 * @param system
69 Result runMain(JUnitSystem system, String... args) { argument
70 system.out().println("JUnit version " + Version.id());
74 RunListener listener = new TextListener(system);

Completed in 1420 milliseconds

1234