Home
last modified time | relevance | path

Searched full:computer (Results 1 – 25 of 2530) sorted by relevance

12345678910>>...102

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DWrapperObjectWithObjectIdTest.java15 public List<Computer> computers;
18 computers = new ArrayList<Computer>(); in Company()
21 public Company addComputer(Computer computer) { in addComputer() argument
23 computers = new ArrayList<Computer>(); in addComputer()
25 computers.add(computer); in addComputer()
43 static class Computer { class in WrapperObjectWithObjectIdTest
48 static class DesktopComputer extends Computer {
59 static class LaptopComputer extends Computer {
72 comp.addComputer(new DesktopComputer("computer-1", "Bangkok")); in testSimple()
73 comp.addComputer(new DesktopComputer("computer-2", "Pattaya")); in testSimple()
[all …]
/external/gson/gson/src/test/java/com/google/gson/functional/
DJsonAdapterAnnotationOnFieldsTest.java43 String json = gson.toJson(new Computer(new User("Inderjeet Singh"))); in testClassAnnotationAdapterTakesPrecedenceOverDefault()
45 Computer computer = gson.fromJson("{'user':'Inderjeet Singh'}", Computer.class); in testClassAnnotationAdapterTakesPrecedenceOverDefault() local
46 assertEquals("UserClassAnnotationAdapter", computer.user.name); in testClassAnnotationAdapterTakesPrecedenceOverDefault()
54 Gizmo computer = gson.fromJson("{'part':'Part'}", Gizmo.class); in testClassAnnotationAdapterFactoryTakesPrecedenceOverDefault() local
55 assertEquals("GizmoPartTypeAdapterFactory", computer.part.name); in testClassAnnotationAdapterFactoryTakesPrecedenceOverDefault()
63 String json = gson.toJson(new Computer(new User("Inderjeet Singh"))); in testRegisteredTypeAdapterTakesPrecedenceOverClassAnnotationAdapter()
65 Computer computer = gson.fromJson("{'user':'Inderjeet Singh'}", Computer.class); in testRegisteredTypeAdapterTakesPrecedenceOverClassAnnotationAdapter() local
66 assertEquals("RegisteredUserAdapter", computer.user.name); in testRegisteredTypeAdapterTakesPrecedenceOverClassAnnotationAdapter()
143 private static final class Computer {
145 Computer(User user) {
[all …]
DJsonAdapterSerializerDeserializerTest.java44 …String json = gson.toJson(new Computer(new User("Inderjeet Singh"), null, new User("Jesse Wilson")… in testJsonSerializerDeserializerBasedJsonAdapterOnFields()
46Computer computer = gson.fromJson("{'user2':'Jesse Wilson','user3':'Jake Wharton'}", Computer.clas… in testJsonSerializerDeserializerBasedJsonAdapterOnFields() local
47 assertEquals("UserSerializer", computer.user2.name); in testJsonSerializerDeserializerBasedJsonAdapterOnFields()
48 assertEquals("UserSerializerDeserializer", computer.user3.name); in testJsonSerializerDeserializerBasedJsonAdapterOnFields()
51 private static final class Computer { class in JsonAdapterSerializerDeserializerTest
55 Computer(User user1, User user2, User user3) { in Computer() method in JsonAdapterSerializerDeserializerTest.Computer
101 Computer2 computer = gson.fromJson("{'user':'Inderjeet Singh'}", Computer2.class); in testJsonSerializerDeserializerBasedJsonAdapterOnClass() local
102 assertEquals("UserSerializerDeserializer2", computer.user.name); in testJsonSerializerDeserializerBasedJsonAdapterOnClass()
/external/one-true-awk/testdir/
Dfunstack.in105 %%% netlib.bell-labs.com, and from the computer
360 title = "On Multiprogramming, Machine Coding, and Computer Organization",
606 keywords = "digital computer sorting; minimal storage sorting; sorting",
818 title = "Computer education in a graduate school of management",
836 title = "An interactive computer system using graphical flowchart input",
951 …keywords = "compilers; computer science and automata; debugging; diagnostics; error correction…
973 …keywords = "computer applications; computer-assisted learning; computers, programming; educati…
989computer programs for game-playing and other purposes. It is based on the principle that it is des…
1010computer system which utilizes variable sized segments (the Burroughs B5500) are discussed. The mo…
1102 …abstract = "Conventional computer methods available to solve continuous system problems charac…
[all …]
Dfunstack.ok69 Computer Organization . . . . . . . . . 489--498
138 G. A. Moulton Computer education in a graduate school
141 J. D. Beyer An interactive computer system using
220 Machine Coding, and Computer
253 On-Line Computer Processing System . . . 339--346
256 Computer Programs . . . . . . . . . . . 347--351
314 N. R. Nielsen Allocation of Computer Resources. is
356 Three-Dimensional Half-Toned Computer
360 Computer-Aided Design. an Application to
474 Variables for Certain Computer
[all …]
/external/junit/src/main/java/org/junit/runner/
DJUnitCore.java57 * @param computer Helps construct Runners from classes
61 public static Result runClasses(Computer computer, Class<?>... classes) { in runClasses() argument
62 return new JUnitCore().run(computer, classes); in runClasses()
100 * @param computer Helps construct Runners from classes
104 public Result run(Computer computer, Class<?>... classes) { in run() argument
105 return run(Request.classes(computer, classes)); in run()
164 static Computer defaultComputer() { in defaultComputer()
165 return new Computer(); in defaultComputer()
DComputer.java14 public class Computer { class
16 * Returns a new default computer, which runs tests in serial order
18 public static Computer serial() { in serial()
19 return new Computer(); in serial()
DJUnitCommandLineParseResult.java112 * @param computer {@link Computer} to be used.
114 public Request createRequest(Computer computer) { in createRequest() argument
117 computer, classes.toArray(new Class<?>[classes.size()])); in createRequest()
DRequest.java70 * @param computer Helps construct Runners from classes
74 public static Request classes(Computer computer, Class<?>... classes) { in classes() argument
77 Runner suite = computer.getSuite(builder, classes); in classes()
86 * in a set of classes with the default <code>Computer</code>.
/external/licenseclassifier/v2/assets/License/IDA/
Dlicense.txt3 The IDA computer programs, hereafter described as "the software"
14 - per fixed computer license
18 office workstation, personal laptop and home computer, provided that
20 permits the user to use the software on only one physical computer at a time.
22 Each per fixed computer license permits your company to install and use the
23 software on only one physical or virtual computer.
49 electronically transfer the software from one computer to another if
50 one computer belongs to another party.
/external/cronet/testing/android/junit/java/src/org/chromium/testing/local/
DJunitTestMain.java9 import org.junit.runner.Computer;
96 TestListComputer computer = new TestListComputer(); in listTestMain() local
98 Request testRequest = Request.classes(computer, classes); in listTestMain()
109 computer.writeJson(new File(parser.mJsonConfig)); in listTestMain()
124 Computer computer = new GtestComputer(gtestLogger); in runTestsMain() local
127 Request.classes(computer, classes).filterWith(new ConfigFilter(jsonConfig)); in runTestsMain()
DGtestComputer.java7 import org.junit.runner.Computer;
17 /** A Computer that logs the start and end of test cases googletest-style. */
18 public class GtestComputer extends Computer {
/external/curl/docs/examples/
Dsynctime.c42 * Synchronising your computer clock via Internet time server usually relies
49 * their HTTP header, therefore you could synchronise your computer clock
53 * 1. Your firewall/proxy must allow your computer to surf Internet.
62 * 5. Win32 SetSystemTime() API sets your computer clock according to
63 * GMT/UTC time. Therefore your computer timezone must be properly set.
74 * This software synchronises your computer clock only when you issue
174 AutoSyncTime = 3; /* Computer clock is adjusted */ in SyncTime_CURL_WriteHeader()
230 fprintf(stderr, "SYNCTIME: Synchronising computer clock with time server" in showUsage()
237 fprintf(stderr, " --synctime Synchronising computer clock" in showUsage()
266 AutoSyncTime = 0; /* Do not synchronise computer clock */ in main()
[all …]
/external/mdnsresponder/mDNSWindows/mdnsNSP/
DReadMe.txt1computer.local./" in Internet Explorer and it will resolve "computer.local." using DNS-SD and go t…
/external/oboe/apps/OboeTester/docs/
DBuild.md15 * git installed on your computer (optional)
16 * USB cable to connect your computer and your phone
32 4. Connect an Android phone to your computer using a USB cable.
35 6. OboeTester should build and then appear on your computer.
/external/perfetto/src/trace_processor/util/
Dproto_profiler_unittest.cc44 SizeProfileComputer computer(&pool, ".protozero.test.protos.NestedA"); in TEST() local
45 computer.Reset(bytes.data(), bytes.size()); in TEST()
50 for (auto sample = computer.GetNext(); sample; sample = computer.GetNext()) { in TEST()
52 for (const auto& field : computer.GetPath()) { in TEST()
/external/junit/src/main/java/org/junit/experimental/
DParallelComputer.java7 import org.junit.runner.Computer;
14 public class ParallelComputer extends Computer {
24 public static Computer classes() { in classes()
28 public static Computer methods() { in methods()
/external/perfetto/src/tools/protoprofile/
Dmain.cc84 trace_processor::util::SizeProfileComputer computer(pool, message_type); in Compute() local
85 computer.Reset(ptr, size); in Compute()
92 for (auto sample = computer.GetNext(); sample; sample = computer.GetNext()) { in Compute()
93 field_path_to_samples[computer.GetPath()].push_back(*sample); in Compute()
217 PprofProfileComputer computer; in Main() local
219 computer.Compute(start, size, ".perfetto.protos.Trace", &pool); in Main()
/external/python/cpython2/Lib/test/
Dtest_ntpath.py135 tester("ntpath.join('//computer/share', 'x/y')", '//computer/share\\x/y')
136 tester("ntpath.join('//computer/share/', 'x/y')", '//computer/share/x/y')
137 tester("ntpath.join('//computer/share/a/b', 'x/y')", '//computer/share/a/b\\x/y')
145 tester("ntpath.join('//computer/share', '/x/y')", '//computer/share/x/y')
146 tester("ntpath.join('//computer/share/', '/x/y')", '//computer/share/x/y')
147 tester("ntpath.join('//computer/share/a', '/x/y')", '//computer/share/x/y')
/external/python/cpython3/Lib/test/
Dtest_ntpath.py218 tester("ntpath.join('//computer/share', 'x/y')", '//computer/share\\x/y')
219 tester("ntpath.join('//computer/share/', 'x/y')", '//computer/share/x/y')
220 tester("ntpath.join('//computer/share/a/b', 'x/y')", '//computer/share/a/b\\x/y')
228 tester("ntpath.join('//computer/share', '/x/y')", '//computer/share/x/y')
229 tester("ntpath.join('//computer/share/', '/x/y')", '//computer/share/x/y')
230 tester("ntpath.join('//computer/share/a', '/x/y')", '//computer/share/x/y')
238 '//computer/share', '//computer/share/', '//computer/share/a/b'):
243 tester("ntpath.join('\\\\computer\\share\\', 'a', 'b')", '\\\\computer\\share\\a\\b')
244 tester("ntpath.join('\\\\computer\\share', 'a', 'b')", '\\\\computer\\share\\a\\b')
245 tester("ntpath.join('\\\\computer\\share', 'a\\b')", '\\\\computer\\share\\a\\b')
[all …]
/external/ot-br-posix/tools/
Dsteering_data.cpp75 otbr::SteeringData computer; in main() local
94 computer.Init(static_cast<uint8_t>(length)); in main()
101 computer.ComputeBloomFilter(joinerId); in main()
106 printf("%02x", computer.GetBloomFilter()[i]); in main()
/external/pigweed/pw_tokenizer/ts/
Dprintf_decoder_test.ts45 expect(printfDecoder.decode('Hello %s', argFromString('Computer'))).toEqual(
46 'Hello Computer',
61 argFromString('Computer'),
65 ).toEqual('Hello Computer and 4294934528');
/external/llvm/docs/
DHowToAddABuilder.rst21 interested in is not covered yet or gets built on your computer much
25 #. The computer you will be registering with the LLVM buildbot
29 multiple configurations on one computer.
68 buildbot documentation for help. You may want to restart your computer
/external/licenseclassifier/v2/assets/License/AML/
Dlicense.txt1 Copyright: Copyright (c) 2006 by Apple Computer, Inc., All Rights Reserved.
3 IMPORTANT: This Apple software is supplied to you by Apple Computer,
18 Neither the name, trademarks, service marks or logos of Apple Computer,
/external/mdnsresponder/mDNSWindows/
DRegNames.h3 * Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved.
25 # define kServiceParametersAppleComputer L"Apple Computer, Inc."
43 # define kServiceParametersAppleComputer "Apple Computer, Inc."

12345678910>>...102