HomeSort by relevance Sort by last modified time
    Searched defs:before (Results 1 - 25 of 630) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/openglperf2/jni/graphics/
PerspectiveProgram.cpp 32 void PerspectiveProgram::before(Matrix& model, Matrix& view, Matrix& projection) { function in class:PerspectiveProgram
33 Program::before(model, view, projection);
Program.cpp 21 void Program::before(Matrix& model, Matrix& view, Matrix& projection) { function in class:Program
ProgramNode.cpp 21 void ProgramNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:ProgramNode
22 program.before(model, view, projection);
TransformationNode.cpp 24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view, function in class:TransformationNode
TexturedMeshNode.cpp 21 void TexturedMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:TexturedMeshNode
PerspectiveMeshNode.cpp 23 void PerspectiveMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:PerspectiveMeshNode
  /external/compiler-rt/test/asan/TestCases/
max_redzone.cc 17 size_t before = __sanitizer_get_heap_size(); local
24 size_t diff = after - before;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-spu/
fixup.s 5 .global before
15 before: label
23 .long 0, 0, 0, before
pic.s 7 before: label
16 ila 4,before+4
20 .reloc .,SPU_ADD_PIC,before+4
28 ila 14,before
29 .reloc .,SPU_ADD_PIC,before
  /abi/cpp/src/
type_info.cc 65 type_info::before(const type_info& rhs) const function in class:std::type_info
  /cts/tests/openglperf2/jni/reference/scene/glowing/
BlurMeshNode.cpp 23 void BlurMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:BlurMeshNode
  /external/testng/src/test/java/test/thread/
Sample2.java 10 public void before(ITestContext ctx) { method in class:Sample2
  /ndk/sources/cxx-stl/gabi++/src/
type_info.cc 66 type_info::before(const type_info& rhs) const function in class:std::type_info
  /ndk/tests/device/test-gnustl-full/unit/
lexcmp_test.cpp 37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size); local
38 CPPUNIT_ASSERT(!before);
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>()); local
47 CPPUNIT_ASSERT(before);
  /ndk/tests/device/test-stlport/unit/
lexcmp_test.cpp 37 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size); local
38 CPPUNIT_ASSERT(!before);
46 bool before = lexicographical_compare(n1, n1 + size, n2, n2 + size, greater<char>()); local
47 CPPUNIT_ASSERT(before);
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
AccountTest.java 81 final Account before = new Account(); local
82 before.setDisplayName("David Hasselhoff");
83 before.setEmailAddress("dhoff@example.com");
84 before.mSyncKey = "syncKey";
85 before.setSyncLookback(42);
86 before.setSyncInterval(99);
87 before.setFlags(1 << 5);
88 before.setSenderName("Friend of Kitt");
89 before.mProtocolVersion = "protocol version 3.14";
90 before.mSecuritySyncKey = "securitySyncKey"
    [all...]
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/providers/
AccountTests.java 44 final Account before = Account.builder().buildFrom(dest, null); local
46 intent.putExtra(Utils.EXTRA_ACCOUNT, before);
51 assertEquals(before.getEmailAddress(), after.getEmailAddress());
52 assertEquals(before.getDisplayName(), after.getDisplayName());
53 assertEquals(before.accountFromAddresses, after.accountFromAddresses);
54 assertEquals(before.capabilities, after.capabilities);
55 assertEquals(before.providerVersion, after.providerVersion);
56 assertEquals(before.uri, after.uri);
57 assertEquals(before.folderListUri, after.folderListUri);
58 assertEquals(before.searchUri, after.searchUri)
    [all...]
  /cts/tests/openglperf2/jni/reference/scene/flocking/
WaterMeshNode.cpp 23 void WaterMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:WaterMeshNode
  /external/testng/src/test/java/test/configuration/
ConfigurationDisabledSampleTest.java 12 public void before() { method in class:ConfigurationDisabledSampleTest
BeforeMethodTest.java 16 public void before(Method m, ITestContext ctx) { method in class:BeforeMethodTest
  /external/testng/src/test/java/test/dependent/
DependsOnProtectedMethodTest.java 16 protected void before() { method in class:DependsOnProtectedMethodTest
  /external/valgrind/none/tests/ppc64/
std_reg_imm.c 45 char before[2]; member in struct:__anon26301
  /system/vold/
EmulatedVolume.cpp 78 dev_t before = GetDevice(mFuseWrite); local
101 while (before == GetDevice(mFuseWrite)) {
110 // Unmount the storage before we kill the FUSE process. If we kill
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ValuesDeltaTests.java 64 final ContentValues before = new ContentValues(); local
65 before.put(Data._ID, TEST_PHONE_ID);
66 before.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
68 final ValuesDelta values = ValuesDelta.fromBefore(before);
76 final ContentValues before = new ContentValues(); local
77 before.put(Data._ID, TEST_PHONE_ID);
78 before.put(Phone.NUMBER, TEST_PHONE_NUMBER_1);
80 final ValuesDelta values = ValuesDelta.fromBefore(before);
  /art/runtime/
monitor_pool.cc 78 Monitor* before = reinterpret_cast<Monitor*>(reinterpret_cast<uintptr_t>(last) - local
80 before->next_free_ = last;
82 before->monitor_id_ = OffsetToMonitorId(MonitorIdToOffset(last->monitor_id_) -
85 last = before;

Completed in 354 milliseconds

1 2 3 4 5 6 7 8 91011>>