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

1234567891011>>

/external/eigen/failtest/
H A Dfailtest_sanity_check.cpp2 This is just some text that won't compile as a C++ file, as a basic sanity check for failtest.
/external/llvm/test/MC/Mips/mips2/
H A Dinvalid-mips32r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
/external/llvm/test/MC/Mips/mips32/
H A Dinvalid-mips32r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips4/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips5/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64/
H A Dinvalid-mips64r2-xfail.s1 # Instructions that are supposed to be invalid but currently aren't
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/skia/src/gpu/
H A DGrPendingFragmentStage.h4 * Use of this source code is governed by a BSD-style license that can be
23 GrPendingFragmentStage(const GrPendingFragmentStage& that) { *this = that; } argument
25 GrPendingFragmentStage& operator=(const GrPendingFragmentStage& that) { argument
26 fProc.reset(that.fProc.get());
30 bool operator==(const GrPendingFragmentStage& that) const {
31 return this->processor()->isEqual(*that.processor());
34 bool operator!=(const GrPendingFragmentStage& that) const { return !(*this == that); }
/external/skia/include/gpu/
H A DGrFragmentStage.h4 * Use of this source code is governed by a BSD-style license that can be
24 bool operator==(const GrFragmentStage& that) const {
25 return this->processor() == that.processor();
28 bool operator!=(const GrFragmentStage& that) const { return !(*this == that); }
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java28 public SourcePositionInfo(SourcePositionInfo that) { argument
29 this.file = that.file;
30 this.line = that.line;
31 this.column = that.column;
35 * Given this position and str which occurs at that position, as well as str an index into str,
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { argument
41 if (that == null) {
44 int line = that.line;
53 return new SourcePositionInfo(that.file, line, 0);
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, Strin argument
[all...]
/external/google-breakpad/src/processor/
H A Dbasic_code_module.h5 // modification, are permitted provided that the following conditions are
30 // basic_code_module.h: Carries information about code modules that are loaded
34 // instantiated directly, only based on other objects that implement
55 // the CodeModule interface without requiring all of the resources that
57 explicit BasicCodeModule(const CodeModule *that) argument
58 : base_address_(that->base_address()),
59 size_(that->size()),
60 code_file_(that->code_file()),
61 code_identifier_(that->code_identifier()),
62 debug_file_(that
[all...]
/external/apache-http/src/org/apache/http/
H A DProtocolVersion.java41 * RFC 3261 specifies a message format that is identical to HTTP except
48 * Note that {@link #equals} and {@link #hashCode} are defined as
185 ProtocolVersion that = (ProtocolVersion) obj;
187 return ((this.protocol.equals(that.protocol)) &&
188 (this.major == that.major) &&
189 (this.minor == that.minor));
198 * @param that the protocol version to consider
203 public boolean isComparable(ProtocolVersion that) { argument
204 return (that != null) && this.protocol.equals(that
224 compareToVersion(ProtocolVersion that) argument
[all...]
/external/ltrace/testsuite/ltrace.main/
H A Dmain-internal.exp9 # This program is distributed in the hope that it will be useful, but
21 __attribute__((noinline)) void that(void) {}
25 that();
32 {that == 0}
/external/icu/icu4c/source/common/
H A Dchariter.cpp68 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
69 ForwardCharacterIterator(that),
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
75 CharacterIterator::operator=(const CharacterIterator &that) { argument
76 ForwardCharacterIterator::operator=(that);
77 textLength = that.textLength;
78 pos = that
[all...]
/external/skia/src/gpu/gl/
H A DGrGLContext.cpp4 * Use of this source code is governed by a BSD-style license that can be
12 GrGLContextInfo& GrGLContextInfo::operator= (const GrGLContextInfo& that) { argument
13 fInterface.reset(SkSafeRef(that.fInterface.get()));
14 fGLVersion = that.fGLVersion;
15 fGLSLGeneration = that.fGLSLGeneration;
16 fVendor = that.fVendor;
17 fRenderer = that.fRenderer;
18 fIsMesa = that.fIsMesa;
19 fIsChromium = that.fIsChromium;
20 *fGLCaps = *that
[all...]
/external/guava/guava-testlib/test/com/google/common/testing/
H A DAbstractPackageSanityTestsTest.java39 ASSERT.that(findClassesToTest(ImmutableList.of(EmptyTest.class)))
41 ASSERT.that(findClassesToTest(ImmutableList.of(EmptyTests.class)))
43 ASSERT.that(findClassesToTest(ImmutableList.of(EmptyTestCase.class)))
45 ASSERT.that(findClassesToTest(ImmutableList.of(EmptyTestSuite.class)))
50 ASSERT.that(findClassesToTest(ImmutableList.of(Foo.class)))
52 ASSERT.that(findClassesToTest(ImmutableList.of(Foo.class, Foo2Test.class)))
58 ASSERT.that(findClassesToTest(ImmutableList.of(Foo.class)))
60 ASSERT.that(findClassesToTest(ImmutableList.of(PublicFoo.class))).has().item(PublicFoo.class);
65 ASSERT.that(findClassesToTest(ImmutableList.of(PublicFoo.class)))
67 ASSERT.that(findClassesToTes
[all...]
/external/llvm/test/MC/Mips/mips1/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r2/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r3/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r5/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips32r6/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.
/external/llvm/test/MC/Mips/mips64r2/
H A Dvalid-xfail.s1 # Instructions that should be valid but currently fail for known reasons (e.g.

Completed in 539 milliseconds

1234567891011>>