HomeSort by relevance Sort by last modified time
    Searched refs:before (Results 76 - 100 of 2662) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/tests/openglperf2/jni/graphics/
MeshNode.h 27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0;
PerspectiveMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
Program.cpp 21 void Program::before(Matrix& model, Matrix& view, Matrix& projection) { function in class:Program
Program.h 25 virtual void before(Matrix& model, Matrix& view, Matrix& projection);
TexturedMeshNode.h 28 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
TransformationNode.h 26 virtual void before(Program& program, Matrix& model, Matrix& view,
  /developers/build/prebuilts/gradle/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
EasyTextWatcher.java 34 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
EasyTextWatcher.java 34 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/
EasyTextWatcher.java 34 public void onTextChanged(CharSequence s, int start, int before, int count) {
  /external/chromium-trace/catapult/tracing/tracing/ui/tracks/
process_track_base.css 17 .process-track-name:before {
22 .process-track-base.expanded .process-track-name:before {
  /external/testng/src/test/java/test/configuration/
ConfigurationDisabledSampleTest.java 12 public void before() { method in class:ConfigurationDisabledSampleTest
  /external/testng/src/test/java/test/dependent/
DependsOnProtectedMethodTest.java 16 protected void before() { method in class:DependsOnProtectedMethodTest
  /external/testng/src/test/java/test/thread/
Sample2.java 10 public void before(ITestContext ctx) { method in class:Sample2
  /external/vboot_reference/tests/tpm_lite/
tpmtest_timing.c 25 struct timeval before, after; \
28 gettimeofday(&before, NULL); \
35 time = (int) ((after.tv_sec - before.tv_sec) * 1000 + \
36 (after.tv_usec - before.tv_usec) / 1000); \
  /external/vboot_reference/utility/
tpm-dad-lock 26 before=$(date +%s)
42 elapsed=$(( $after - $before ))
  /packages/inputmethods/LatinIME/native/jni/src/utils/
autocorrection_threshold_utils.cpp 32 /* static */ int AutocorrectionThresholdUtils::editDistance(const int *before,
35 before, beforeLength, after, afterLength);
58 // (full match up to min(before.length(), after.length())
62 // - If before.length() == after.length()
64 // So, maximum original score is powf(2, min(before.length(), after.length())) * 255 * 2 * 1.2
70 /* static */ float AutocorrectionThresholdUtils::calcNormalizedScore(const int *before,
75 const int distance = editDistance(before, beforeLength, after, afterLength);
  /prebuilts/go/darwin-x86/test/
func7.go 20 panic("BUG: func7 - called g before f")
26 // gc used to evaluate g() before f().
  /prebuilts/go/linux-x86/test/
func7.go 20 panic("BUG: func7 - called g before f")
26 // gc used to evaluate g() before f().
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
attr-arch-directive-2.s 1 # .arch directives override previous attributes before instructions
unwind-bad-1.l 9 [^:]*:41: Error: personality routine required before \.handlerdata directive
12 [^:]*:59: Error: missing \.endp before \.cfi_startproc
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
arm-rel31.s 2 .section .before
  /prebuilts/go/darwin-x86/src/sync/atomic/
atomic_test.go 25 // The struct fields x.before and x.after check that the
45 before int32
49 x.before = magic32
59 if x.before != magic32 || x.after != magic32 {
60 t.Fatalf("wrong magic: %#x _ %#x != %#x _ %#x", x.before, x.after, magic32, magic32)
66 before uint32
70 x.before = magic32
80 if x.before != magic32 || x.after != magic32 {
81 t.Fatalf("wrong magic: %#x _ %#x != %#x _ %#x", x.before, x.after, magic32, magic32)
90 before int6
    [all...]
  /prebuilts/go/linux-x86/src/sync/atomic/
atomic_test.go 25 // The struct fields x.before and x.after check that the
45 before int32
49 x.before = magic32
59 if x.before != magic32 || x.after != magic32 {
60 t.Fatalf("wrong magic: %#x _ %#x != %#x _ %#x", x.before, x.after, magic32, magic32)
66 before uint32
70 x.before = magic32
80 if x.before != magic32 || x.after != magic32 {
81 t.Fatalf("wrong magic: %#x _ %#x != %#x _ %#x", x.before, x.after, magic32, magic32)
90 before int6
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
TeeOpTest.java 75 void before(TestData<T, ?> td) { method in class:TeeOpTest.AbstractRecordingConsumer
99 .before(b::before)
115 .before(b::before)
131 .before(b::before)
147 .before(b::before)
  /external/mesa3d/src/glsl/
list.h 154 * Insert a node in the list before the current node
156 void insert_before(exec_node *before)
158 before->next = this;
159 before->prev = this->prev;
161 this->prev->next = before;
162 this->prev = before;
166 * Insert another list in the list before the current node
168 void insert_before(struct exec_list *before);
456 inline void exec_node::insert_before(exec_list *before)
458 if (before->is_empty()
    [all...]

Completed in 4297 milliseconds

1 2 34 5 6 7 8 91011>>