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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootCursorWrapper.java 57 final String[] before = cursor.getColumnNames(); local
58 mColumnNames = new String[before.length + 2];
59 System.arraycopy(before, 0, mColumnNames, 0, before.length);
60 mAuthorityIndex = before.length;
61 mRootIdIndex = before.length + 1;
  /cts/tests/openglperf2/jni/graphics/
ProgramNode.cpp 21 void ProgramNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:ProgramNode
22 program.before(model, view, projection);
  /device/asus/fugu/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/google/dragon/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/htc/flounder/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/huawei/angler/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/lge/bullhead/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/linaro/hikey/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/moto/shamu/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /external/avahi/initscript/gentoo/
avahi-daemon.in 8 before netmount nfsmount
  /external/compiler-rt/test/asan/TestCases/
max_redzone.cc 17 size_t before = __sanitizer_get_heap_size(); local
24 size_t diff = after - before;
  /external/junit/src/org/junit/internal/runners/statements/
RunBefores.java 26 for (FrameworkMethod before : fBefores)
27 before.invokeExplosively(fTarget);
  /external/skia/tools/
git-skia-verify 19 # It would delete {before,after,diff} directory under the current directory,
62 rm -rf {before,after,diff}
63 mkdir {before,after,diff}
89 ./out/Release/gm -w before
95 ./out/Release/skdiff before after diff
  /external/valgrind/memcheck/tests/
sigprocmask.stderr.exp 0 before
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-aarch64/
aarch64.ld 10 *(.before)
relocs.ld 10 *(.before)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
discard-unwind.ld 10 *(.before)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-tic6x/
unwind.ld 8 *(.before)
  /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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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/ContactsCommon/tests/src/com/android/contacts/common/
RawContactDeltaTests.java 78 final RawContact before = new RawContact(contact); local
79 before.addDataItemValues(phone);
80 return before;
87 * "before" {@link RawContact}.
90 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
91 final RawContactDelta source = RawContactDelta.fromBefore(before);
92 final RawContactDelta dest = RawContactDelta.fromBefore(before);
100 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
101 final RawContactDelta source = RawContactDelta.fromBefore(before);
102 final RawContactDelta dest = RawContactDelta.fromBefore(before);
118 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
132 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
145 final ContentValues before = new ContentValues(); local
166 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
177 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
217 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
266 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
303 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...]
  /abi/cpp/src/
type_info.cc 65 type_info::before(const type_info& rhs) const function in class:std::type_info

Completed in 2707 milliseconds

1 23 4 5 6 7 8 91011>>