HomeSort by relevance Sort by last modified time
    Searched refs:before (Results 26 - 50 of 2340) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/mips/
OP_MONITOR_EXIT.S 13 EXPORT_PC() # before fetch: export the PC
20 FETCH_ADVANCE_INST(1) # before throw: advance rPC, load rINST
25 FETCH_ADVANCE_INST(1) # before throw: advance rPC, load rINST
  /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/suite/pts/deviceTests/opengl/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);
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);
  /device/asus/deb/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/asus/flo/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/asus/grouper/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/asus/tilapia/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/lge/hammerhead/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/lge/mako/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/samsung/manta/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /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/main/memcheck/tests/
sigprocmask.stderr.exp 0 before
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
compatibility.h 107 volatile int32 before, after;
110 before = *ptr;
111 after = before + addend;
112 } while (atomic_cas_32((volatile unsigned int*)ptr, before,
113 after) != before);
114 return before;
153 volatile int64 before, after;
156 before = *ptr;
157 after = before + addend;
158 } while (atomic_cas_64((volatile unsigned long long*)ptr, before,
202 int32 before; local
215 int64 before; local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
bubble.css 20 .bubble::before {
28 .bubble-top::before {
33 html[dir=ltr] .bubble-top::before {
37 html[dir=rtl] .bubble-top::before {
41 html[dir=ltr] .bubble-right::before,
42 html[dir=rtl] .bubble-left::before {
48 .bubble-bottom::before {
53 html[dir=ltr] .bubble-bottom::before {
57 html[dir=rtl] .bubble-bottom::before {
61 html[dir=ltr] .bubble-left::before,
    [all...]
  /external/chromium_org/third_party/mesa/src/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...]
  /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/
RawContactDeltaTests.java 80 final RawContact before = new RawContact(contact); local
81 before.addDataItemValues(phone);
82 return before;
89 * "before" {@link RawContact}.
92 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
93 final RawContactDelta source = RawContactDelta.fromBefore(before);
94 final RawContactDelta dest = RawContactDelta.fromBefore(before);
102 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
103 final RawContactDelta source = RawContactDelta.fromBefore(before);
104 final RawContactDelta dest = RawContactDelta.fromBefore(before);
120 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
134 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
147 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
214 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
259 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
293 final RawContact before = getRawContact(mContext, TEST_CONTACT_ID, TEST_PHONE_ID); local
    [all...]
  /abi/cpp/src/
type_info.cc 65 type_info::before(const type_info& rhs) const function in class:std::type_info
  /bionic/libstdc++/src/
typeinfo.cpp 26 type_info::before(type_info const & right) const { function in class:type_info

Completed in 467 milliseconds

12 3 4 5 6 7 8 91011>>