HomeSort by relevance Sort by last modified time
    Searched refs:Second (Results 1 - 25 of 448) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/MultiDex/
Second.java 17 class Second {
19 return "I Second That.";
Main.java 19 Second second = new Second(); local
20 System.out.println(second.getSecond());
  /art/test/MultiDexModifiedSecondary/
Second.java 17 class Second {
23 return "I Second That.";
Main.java 19 Second second = new Second(); local
20 System.out.println(second.getSecond());
  /external/deqp/framework/common/
tcuEither.hpp 23 * \brief Template class that is either type of First or Second.
32 * \brief Object containing Either First or Second type of object
34 * \note Type First and Second are always aligned to same alignment as
37 * sizeof(Second*)) + sizeof(deUint64) of memory.
39 template<typename First, typename Second>
44 Either (const Second& second);
47 Either (const Either<First, Second>& other);
48 Either& operator= (const Either<First, Second>& other);
51 Either& operator= (const Second& second)
    [all...]
  /art/test/ProfileTestMultiDex/
Second.java 17 class Second {
  /external/testng/src/test/java/test/classgroup/
Second.java 6 public class Second {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/
timeoutbench_test.go 9 time.Sleep(1 * time.Second)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/
timeoutbench_test.go 9 time.Sleep(1 * time.Second)
  /art/test/569-checker-pattern-replacement/src-multidex/
Second.java 17 public final class Second {
62 public static int staticGetInstanceIntField(Second s) {
66 public double getInstanceDoubleFieldFromParam(Second s) {
83 public static void staticSetInstanceLongField(Second s, long value) {
87 public void setInstanceLongFieldThroughParam(Second s, long value) {
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 59 2. Second
73 2. Second
107 2. Second:
117 2. Second:
  /external/clang/include/clang/Lex/
PPCallbacks.h 326 std::unique_ptr<PPCallbacks> First, Second;
331 : First(std::move(_First)), Second(std::move(_Second)) {}
337 Second->FileChanged(Loc, Reason, FileType, PrevFID);
344 Second->FileSkipped(SkippedFile, FilenameTok, FileType);
350 Second->FileNotFound(FileName, RecoveryPath);
361 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
369 Second->moduleImport(ImportLoc, Path, Imported);
374 Second->EndOfMainFile();
379 Second->Ident(Loc, str);
385 Second->PragmaComment(Loc, Kind, Str)
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/
crange-2d.s 0 ! Second part of crange-2b.s, but in section .text.mixed.
  /art/test/569-checker-pattern-replacement/src/
Main.java 25 Second.staticNop(11);
28 /// CHECK-START: void Main.nop(Second) inliner (before)
31 /// CHECK-START: void Main.nop(Second) inliner (after)
34 public static void nop(Second s) {
54 return Second.staticReturnArg2(77, value);
57 /// CHECK-START: long Main.returnArg1(Second, long) inliner (before)
58 /// CHECK-DAG: <<Second:l\d+>> ParameterValue
60 /// CHECK-DAG: <<NullCk:l\d+>> NullCheck [<<Second>>]
64 /// CHECK-START: long Main.returnArg1(Second, long) inliner (after)
68 /// CHECK-START: long Main.returnArg1(Second, long) inliner (after
    [all...]
  /art/test/113-multidex/src/
Main.java 21 Inf1 second = new Second(); local
22 System.out.println(second.getClass().getName());
23 second.zcall();
24 second.zcall1();
25 second.zcall2();
26 second.zcall3();
27 second.zcall4();
28 second.zcall5();
29 second.zcall6()
    [all...]
Second.java 17 public class Second implements Inf1, Inf2, Inf3, Inf4, Inf5, Inf6, Inf7, Inf8 {
19 System.out.println("Second::zcall");
23 System.out.println("Second::zcall1");
27 System.out.println("Second::zcall2");
31 System.out.println("Second::zcall3");
35 System.out.println("Second::zcall4");
39 System.out.println("Second::zcall5");
43 System.out.println("Second::zcall6");
47 System.out.println("Second::zcall7");
51 System.out.println("Second::zcall8")
    [all...]
  /external/clang/lib/Tooling/
ArgumentsAdjusters.cpp 78 ArgumentsAdjuster Second) {
79 return [First, Second](const CommandLineArguments &Args, StringRef File) {
80 return Second(First(Args, File), File);
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/ResetSystemLib/
ResetSystemLib.c 259 EfiTime.Second = IoRead8 (PCAT_RTC_DATA_REGISTER);
260 } while (EfiTime.Second > PLATFORM_RTC_ROLLOVER_LIMIT);
270 EfiTime.Second = IoRead8 (PCAT_RTC_DATA_REGISTER);
277 // Add PLATFORM_WAKE_SECONDS_BUFFER to current EfiTime.Second
278 // The maths is to allow for the fact we are adding to a BCD number and require the answer to be BCD (EfiTime.Second)
280 if ((BCD_BASE - (EfiTime.Second & 0x0F)) <= PLATFORM_WAKE_SECONDS_BUFFER) {
281 Data8 = (((EfiTime.Second & 0xF0) + 0x10) + (PLATFORM_WAKE_SECONDS_BUFFER - (BCD_BASE - (EfiTime.Second & 0x0F))));
283 Data8 = EfiTime.Second + PLATFORM_WAKE_SECONDS_BUFFER;
  /external/clang/include/clang/Tooling/
ArgumentsAdjusters.h 61 /// with the \p First adjuster and then with the \p Second one.
63 ArgumentsAdjuster Second);
  /external/valgrind/drd/tests/
pth_cond_destroy_busy.stderr.exp 10 Second pthread_cond_destroy() call returned success.
  /external/clang/test/CodeGenCXX/
mangle-ms-templates.cpp 209 struct Second {};
226 void template_template_fun(Type<Thing<Second, true>, Second>) { }
233 void template_template_specialization<void (Type<Thing<Second, true>, Second>)>() {
244 int second; member in struct:record
  /prebuilts/go/darwin-x86/src/net/
dnsconfig_unix_test.go 28 timeout: 10 * time.Second,
40 timeout: 5 * time.Second,
50 timeout: 5 * time.Second,
59 timeout: 5 * time.Second,
69 timeout: 5 * time.Second,
79 timeout: 5 * time.Second,
89 timeout: 5 * time.Second,
98 timeout: 5 * time.Second,
137 timeout: 5 * time.Second,
  /prebuilts/go/linux-x86/src/net/
dnsconfig_unix_test.go 28 timeout: 10 * time.Second,
40 timeout: 5 * time.Second,
50 timeout: 5 * time.Second,
59 timeout: 5 * time.Second,
69 timeout: 5 * time.Second,
79 timeout: 5 * time.Second,
89 timeout: 5 * time.Second,
98 timeout: 5 * time.Second,
137 timeout: 5 * time.Second,

Completed in 695 milliseconds

1 2 3 4 5 6 7 8 91011>>