HomeSort by relevance Sort by last modified time
    Searched full:that (Results 476 - 500 of 189771) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68k/
p13050-2.s 1 # Test that #,(d16,An) is accepted on ISA_B with move.[bw]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
loc-2.s 1 # Check that a LOC before any code gets translated into the right
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
farcall-group2.s 1 @ Test to ensure that ARM calls exceeding 32Mb generate stubs.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elfvers/
vers7.c 2 * Test program that goes with test7.so
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
pad2p18m32.s 1 * Padding (1 << 19)/2 - 32 bytes; that is, suitable for testing the
pad2p26m32.s 1 * Padding (1 << 27)/2 - 32 bytes; that is, suitable for testing the
  /toolchain/binutils/binutils-2.27/zlib/old/
README 1 This directory contains files that have not been updated for zlib 1.2.x
  /external/pdfium/core/fxcrt/
unowned_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
13 // UnownedPtr is a smart pointer class that behaves very much like a
18 // explaining that is it // Not owned. Additionally, an attempt to delete
23 // which checks that the object being pointed to is still alive.
27 // programming required is that the lifetime an object containing an
30 // The same checks are also performed at assignment time to prove that the
43 UnownedPtr(const UnownedPtr& that) : UnownedPtr(that.Get()) {}
54 UnownedPtr& operator=(T* that) {
56 m_pObj = that;
    [all...]
observable.h 2 // Use of this source code is governed by a BSD-style license that can be
25 ObservedPtr(const ObservedPtr& that) : ObservedPtr(that.Get()) {}
41 ObservedPtr& operator=(const ObservedPtr& that) {
42 Reset(that.Get());
45 bool operator==(const ObservedPtr& that) const {
46 return m_pObservable == that.m_pObservable;
48 bool operator!=(const ObservedPtr& that) const { return !(*this == that); }
59 Observable(const Observable& that) = delete member in class:fxcrt::Observable
74 Observable& operator=(const Observable& that) = delete; member in class:fxcrt::Observable
    [all...]
retain_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
16 // Used with std::unique_ptr to Release() objects that can't be deleted.
32 RetainPtr(const RetainPtr& that) : RetainPtr(that.Get()) {}
33 RetainPtr(RetainPtr&& that) noexcept { Swap(that); } variable
40 RetainPtr(const RetainPtr<U>& that) : RetainPtr(that.Get()) {}
54 void Swap(RetainPtr& that) { m_pObj.swap(that.m_pObj);
    [all...]
  /external/skia/include/gpu/
GrSamplerState.h 4 * Use of this source code is governed by a BSD-style license that can be
36 GrSamplerState& operator=(const GrSamplerState& that) {
37 fWrapModes[0] = that.fWrapModes[0];
38 fWrapModes[1] = that.fWrapModes[1];
39 fFilter = that.fFilter;
57 bool operator==(const GrSamplerState& that) const {
58 return fWrapModes[0] == that.fWrapModes[0] && fWrapModes[1] == that.fWrapModes[1] &&
59 fFilter == that.fFilter;
62 bool operator!=(const GrSamplerState& that) const { return !(*this == that);
    [all...]
  /external/skqp/include/gpu/
GrSamplerState.h 4 * Use of this source code is governed by a BSD-style license that can be
36 GrSamplerState& operator=(const GrSamplerState& that) {
37 fWrapModes[0] = that.fWrapModes[0];
38 fWrapModes[1] = that.fWrapModes[1];
39 fFilter = that.fFilter;
57 bool operator==(const GrSamplerState& that) const {
58 return fWrapModes[0] == that.fWrapModes[0] && fWrapModes[1] == that.fWrapModes[1] &&
59 fFilter == that.fFilter;
62 bool operator!=(const GrSamplerState& that) const { return !(*this == that);
    [all...]
  /external/v8/src/regexp/
regexp-ast.cc 2 // Use of this source code is governed by a BSD-style license that can be
142 void VisitCharacterRange(CharacterRange that);
152 void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) {
154 for (int i = 0; i < that->alternatives()->length(); i++) {
156 that->alternatives()->at(i)->Accept(this, data);
163 void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) {
165 for (int i = 0; i < that->nodes()->length(); i++) {
167 that->nodes()->at(i)->Accept(this, data);
174 void RegExpUnparser::VisitCharacterRange(CharacterRange that) {
175 os_ << AsUC32(that.from())
    [all...]
  /external/testng/src/main/java/org/testng/
ITestClass.java 13 * Note that the methods returned by instances of this class
60 * Returns all the methods that should be invoked
62 * @return All the methods that should be invoked
68 * Returns all the methods that should be invoked
70 * @return All the methods that should be invoked
76 * Return all the methods that should be invoked
79 * @return All the methods that should be invoked
86 * Returns all the methods that should be invoked
88 * @return All the methods that should be invoked
94 * Returns All the methods that should be invoke
    [all...]
  /external/v8/src/compiler/
load-elimination.h 2 // Use of this source code is governed by a BSD-style license that can be
39 // Abstract state to approximate the current state of checks that are
54 AbstractChecks* that = new (zone) AbstractChecks(*this); local
55 that->nodes_[that->next_index_] = node;
56 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_);
57 return that;
60 bool Equals(AbstractChecks const* that) const;
61 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const
88 AbstractElements* that = new (zone) AbstractElements(*this); local
127 AbstractField* that = new (zone) AbstractField(zone); local
172 AbstractMaps* that = new (zone) AbstractMaps(zone); local
    [all...]
  /art/test/134-reg-promotion/
info.txt 1 Test that a vreg value that was defined by a const 0 and is used is both ref
  /art/test/435-new-instance/
info.txt 1 Tests that new-instance throws:
6 This also verifies that we don't remove dead (code) new-instances which may
  /art/test/800-smali/smali/
b_21869691I.smali 1 # Test that the verifier does not stash methods incorrectly because they are being invoked with
4 # This is the interface class that has an "a" method.
  /art/test/978-virtual-interface/
info.txt 5 This test checks that we correctly detect when one attempts to invoke an
6 interface method via the invoke-virtual opcode and that correct exceptions are
  /art/test/993-breakpoints/
info.txt 4 that are entered in every way possible for the given class of method.
6 It also tests that breakpoints don't interfere with each other by having
  /dalvik/dx/tests/006-interfaces/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class has a non-empty
  /dalvik/dx/tests/007-no-superclass/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class is Object-like and
  /dalvik/dx/tests/011-class-attrib-Synthetic/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class has a single
  /dalvik/dx/tests/012-class-attrib-SourceFile/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class has a single
  /dalvik/dx/tests/013-class-attrib-Deprecated/
info.txt 2 invalid. That being said, the system should still have no trouble parsing and
5 The salient bit of parsing tested here is that the class has a single

Completed in 1511 milliseconds

<<11121314151617181920>>