Searched refs:of (Results 1 - 25 of 2838) sorted by relevance

1234567891011>>

/external/valgrind/helgrind/tests/
H A Dpth_spinlock.stderr.exp1 Start of test.
/external/valgrind/none/tests/solaris/
H A Dproc_aout.stdout.exp1 Result of readlink("/proc/self/path/a.out"): proc_aout
2 Result of readlink("/proc/<pid>/path/a.out"): proc_aout
3 Result of readlinkat("/proc/self/path/a.out"): proc_aout
4 Result of readlinkat("/proc/<pid>/path/a.out"): proc_aout
/external/valgrind/drd/tests/
H A Dunit_bitmap.stderr.exp1 Start of DRD BM unit test.
2 End of DRD BM unit test.
/external/valgrind/memcheck/tests/
H A Dmanuel2.stderr.exp1 Use of uninitialised value of size 4
H A Dmalloc1_ks_none.stderr.exp1 Invalid write of size 1
3 Address 0x........ is 1 bytes inside a block of size 10 free'd
6 Invalid write of size 1
8 Address 0x........ is 1 bytes before a block of size 10 alloc'd
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstruction.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
53 public static ImmutableInstruction of(Instruction instruction) { method in class:ImmutableInstruction
60 return ImmutableInstruction10t.of((Instruction10t)instruction);
63 return ImmutableUnknownInstruction.of((UnknownInstruction)instruction);
65 return ImmutableInstruction10x.of((Instruction10x)instruction);
67 return ImmutableInstruction11n.of((Instruction11
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
12 | Ident of string | Number of float
15 | Kwd of char
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
12 | Ident of string | Number of float
15 | Kwd of char
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
12 | Ident of string | Number of float
15 | Kwd of char
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
12 | Ident of string | Number of float
15 | Kwd of char
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
12 | Ident of string | Number of float
15 | Kwd of char
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
12 | Ident of string | Number of float
15 | Kwd of char
/external/valgrind/none/tests/x86/
H A Dint.stderr.exp3 Process terminating with default action of signal 11 (SIGSEGV)
4 GPF (Pointer out of bounds?)
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
H A DImmutableReferenceFactory.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
42 public static ImmutableReference of(Reference reference) { method in class:ImmutableReferenceFactory
44 return ImmutableStringReference.of((StringReference)reference);
47 return ImmutableTypeReference.of((TypeReference)reference);
50 return ImmutableFieldReference.of((FieldReference)reference);
53 return ImmutableMethodReference.of((MethodReferenc
62 public static ImmutableReference of(int referenceType, Reference reference) { method in class:ImmutableReferenceFactory
[all...]
/external/guice/extensions/servlet/test/com/google/inject/servlet/
H A DExtensionSpiTest.java6 * You may obtain a copy of the License at
80 List<Params> expected = ImmutableList.of(
81 new Params("/class", Key.get(DummyFilterImpl.class), ImmutableMap.of(), SERVLET),
82 new Params("/class/2", Key.get(DummyFilterImpl.class), ImmutableMap.of(), SERVLET),
83 new Params("/key", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), SERVLET),
84 new Params("/key/2", Key.get(DummyFilterImpl.class, Names.named("foo")), ImmutableMap.of(), SERVLET),
85 new Params("/instance", dummyFilter1, ImmutableMap.of(), SERVLET),
86 new Params("/instance/2", dummyFilter1, ImmutableMap.of(), SERVLET),
87 new Params("/class/keyvalues", Key.get(DummyFilterImpl.class), ImmutableMap.of("key", "value"), SERVLET),
88 new Params("/class/keyvalues/2", Key.get(DummyFilterImpl.class), ImmutableMap.of("ke
[all...]
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DOptionalTest.java6 * You may obtain a copy of the License at
44 assertEquals("training", Optional.of("training").get());
49 Optional.of(null);
70 assertTrue(Optional.of("training").isPresent());
83 assertEquals("training", Optional.of("training").get());
87 assertEquals("a", Optional.of("a").or("default"));
95 assertEquals("a", Optional.of("a").or(Suppliers.ofInstance("fallback")));
114 assertEquals("a", Optional.of("a").or(nullSupplier));
118 assertEquals(Optional.of("a"), Optional.of("
[all...]
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DTagBalancingHtmlStreamRendererTest.java8 // Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
11 // notice, this list of conditions and the following disclaimer in the
13 // Neither the name of the OWASP nor the names of its contributors may
61 balancer.openTag("html", ImmutableList.<String>of());
62 balancer.openTag("head", ImmutableList.<String>of());
63 balancer.openTag("title", ImmutableList.<String>of());
68 balancer.openTag("body", ImmutableList.<String>of());
69 balancer.openTag("p", ImmutableList.of("i
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableEncodedValueFactory.java9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
15 * * Neither the name of Google Inc. nor the names of its
46 public static ImmutableEncodedValue of(@Nonnull EncodedValue encodedValue) { method in class:ImmutableEncodedValueFactory
49 return ImmutableByteEncodedValue.of((ByteEncodedValue)encodedValue);
51 return ImmutableShortEncodedValue.of((ShortEncodedValue)encodedValue);
53 return ImmutableCharEncodedValue.of((CharEncodedValue)encodedValue);
55 return ImmutableIntEncodedValue.of((IntEncodedValu
[all...]
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSetTest.java6 * You may obtain a copy of the License at
40 @Override protected Set<String> of() { method in class:ImmutableSetTest
41 return ImmutableSet.of();
44 @Override protected Set<String> of(String e) { method in class:ImmutableSetTest
45 return ImmutableSet.of(e);
48 @Override protected Set<String> of(String e1, String e2) { method in class:ImmutableSetTest
49 return ImmutableSet.of(e1, e2);
52 @Override protected Set<String> of(String e1, String e2, String e3) { method in class:ImmutableSetTest
53 return ImmutableSet.of(e1, e2, e3);
56 @Override protected Set<String> of( method in class:ImmutableSetTest
61 @Override protected Set<String> of( method in class:ImmutableSetTest
66 @Override protected Set<String> of(String e1, String e2, String e3, method in class:ImmutableSetTest
[all...]
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DDefaultDeflateCompatibilityWindow.java5 // You may obtain a copy of the License at
29 // of values completely. This will cut fingerprints by half and fix compatibility issues with older
42 * {@link java.util.zip.Deflater} with all relevant combinations of the following settings:
50 * There are thus a total of <strong>38</strong> configurations:
59 * The following is a non-exhaustive list of platforms that are known to be compatible:
64 * The minimum known-compatible version of zlib is 1.2.0.4
69 * Implementation of the lazy-holder idiom to hold and return the baseline.
82 JreDeflateParameters.of(1, 0, true),
85 JreDeflateParameters.of(2, 0, true),
88 JreDeflateParameters.of(
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml8 | Number of float
11 | Variable of string
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * expr
29 | Var of (string * expr option) array * expr
32 * its name, and its argument names (thus implicitly the number of arguments the
35 | Prototype of strin
[all...]
/external/llvm/tools/llvm-config/
H A DLibraryDependencies.inc10 /// The name of the component.
13 /// The name of the library for this component (or NULL).
19 /// The list of libraries required when linking this component.
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml8 | Number of float
11 | Variable of string
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * expr
29 | Var of (string * expr option) array * expr
32 * its name, and its argument names (thus implicitly the number of arguments the
35 | Prototype of strin
[all...]
/external/llvm/test/MC/Mips/
H A Dmips-pc16-fixup.s3 # CHECK-NOT: error: out of range PC16 fixup
7 .space 131072 - 8, 1 # -8 = size of b instr plus size of automatically inserted nop
/external/valgrind/none/tests/s390x/
H A Dstfle.stdout.exp1 the value of cc is 0 and #double words is 2
2 the value of cc is 0 and #double words is 2
4 the value of cc is 0 and #double words is 2
6 the value of cc is 3 and #double words is 2
7 the value of cc is 3 and #double words is 2
9 the value of cc is 3 and #double words is 2

Completed in 477 milliseconds

1234567891011>>