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

1 2 34 5 6 7 8 91011>>

  /external/freetype/src/base/
ftutil.c 270 FT_ListNode before; local
276 before = list->tail;
279 node->prev = before;
281 if ( before )
282 before->next = node;
322 FT_ListNode before, after; local
328 before = node->prev;
331 if ( before )
332 before->next = after;
337 after->prev = before;
349 FT_ListNode before, after; local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftutil.c 270 FT_ListNode before; local
276 before = list->tail;
279 node->prev = before;
281 if ( before )
282 before->next = node;
322 FT_ListNode before, after; local
328 before = node->prev;
331 if ( before )
332 before->next = after;
337 after->prev = before;
349 FT_ListNode before, after; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 129 void add_dep(schedule_node *before, schedule_node *after, int latency);
130 void add_dep(schedule_node *before, schedule_node *after);
163 * The @after node will be scheduled after @before. We will try to
164 * schedule it @latency cycles after @before, but no guarantees there.
167 instruction_scheduler::add_dep(schedule_node *before, schedule_node *after,
170 if (!before || !after)
173 assert(before != after);
175 for (int i = 0; i < before->child_count; i++) {
176 if (before->children[i] == after) {
177 before->child_latency[i] = MAX2(before->child_latency[i], latency)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactDeltaTests.java 74 final RawContact before = new RawContact(contact); local
75 before.addDataItemValues(phone);
76 return before;
83 * "before" {@link RawContact}.
86 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
87 final RawContactDelta source = RawContactDelta.fromBefore(before);
88 final RawContactDelta dest = RawContactDelta.fromBefore(before);
96 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
97 final RawContactDelta source = RawContactDelta.fromBefore(before);
98 final RawContactDelta dest = RawContactDelta.fromBefore(before);
114 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
128 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
141 final ContentValues before = new ContentValues(); local
162 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
173 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
213 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
262 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
299 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
HostAuthTests.java 254 final HostAuth before = new HostAuth(); local
255 before.mProtocol = "IMAP";
256 before.mAddress = "dhoff@example.com";
257 before.mPort = 1337;
258 before.mFlags = 293847;
259 before.setLogin("dhoff", "daknightrida");
260 before.mDomain = "example.com";
261 before.mClientCertAlias = "I'm a client cert alias";
262 before.mServerCert = new byte[] {(byte) 0xFF, (byte) 0xAA};
263 before.mCredentialKey = 9873425
    [all...]
  /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/junit-params/src/test/java/junitparams/
BeforeAfterClassTest.java 14 public static void before() { method in class:BeforeAfterClassTest
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
pmae_handling_test.c 29 static uint64_t before, after; variable
44 before = mfspr(SPRN_MMCR0);
50 if (before != after)
90 printf("Saw MMCR0 before 0x%lx after 0x%lx\n", before, after);
  /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 ))
  /external/vogar/test/vogar/target/junit4/
AnnotatedTestMethodsTest.java 20 import org.junit.Before;
25 @Before
26 public void before() { method in class:AnnotatedTestMethodsTest
27 System.out.println("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().

Completed in 460 milliseconds

1 2 34 5 6 7 8 91011>>