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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/encoding/
css-charset-inherit-iso-8859-5.css 2 #dummy:before { content: "SU???SS"; }
css-charset-inherit-koi-8.css 2 #dummy:before { content: "SU???SS"; }
  /external/valgrind/main/drd/tests/
tc10_rec_lock.stderr.exp 2 before lock #1
3 before lock #2
4 before lock #3
5 before unlock #1
6 before unlock #2
7 before unlock #3
8 before unlock #4
  /external/stlport/test/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-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);
  /external/valgrind/main/helgrind/tests/
tc10_rec_lock.stderr.exp 2 before lock #1
3 before lock #2
4 before lock #3
5 before unlock #1
6 before unlock #2
7 before unlock #3
8 before unlock #4
  /frameworks/base/core/java/android/text/
TextWatcher.java 36 * have just replaced old text that had length <code>before</code>.
40 public void onTextChanged(CharSequence s, int start, int before, int count);
  /dalvik/vm/mterp/armv5te/
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) @ advance before throw
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WhitelistDictionary.java 57 final String before = wordlist[i + 1]; local
59 if (before != null && after != null) {
61 before.toLowerCase(), new Pair<Integer, String>(score, after));
72 public String getWhitelistedWord(String before) {
73 if (before == null) return null;
74 final String lowerCaseBefore = before.toLowerCase();
  /device/moto/stingray/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/moto/wingray/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/samsung/crespo/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/samsung/crespo4g/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/samsung/maguro/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/samsung/toro/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /device/ti/panda/self-extractors/
PART1 6 echo You must agree to this license before using this software.
  /external/valgrind/main/memcheck/tests/
sigprocmask.stderr.exp 0 before
  /prebuilt/linux-x86/toolchain/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...]
  /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
  /ndk/sources/cxx-stl/gabi++/src/
type_info.cc 65 type_info::before(const type_info& rhs) const function in class:std::type_info
  /packages/apps/Contacts/tests/src/com/android/contacts/
EntityDeltaTests.java 79 final Entity before = new Entity(contact); local
80 before.addSubValue(Data.CONTENT_URI, phone);
81 return before;
88 * "before" {@link Entity}.
91 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
92 final EntityDelta source = EntityDelta.fromBefore(before);
93 final EntityDelta dest = EntityDelta.fromBefore(before);
101 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
102 final EntityDelta source = EntityDelta.fromBefore(before);
103 final EntityDelta dest = EntityDelta.fromBefore(before);
119 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
133 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
151 final ContentValues before = new ContentValues(); local
175 final ContentValues before = new ContentValues(); local
189 final ContentValues before = new ContentValues(); local
208 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
219 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
256 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
301 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
335 final Entity before = getEntity(TEST_CONTACT_ID, TEST_PHONE_ID); local
    [all...]
  /external/mesa3d/src/glsl/
list.h 158 * Insert a node in the list before the current node
160 void insert_before(exec_node *before)
162 before->next = this;
163 before->prev = this->prev;
165 this->prev->next = before;
166 this->prev = before;
170 * Insert another list in the list before the current node
172 void insert_before(struct exec_list *before);
460 inline void exec_node::insert_before(exec_list *before)
462 if (before->is_empty()
    [all...]
  /external/clang/
clang.mk 2 $(error Must set variable CLANG_ROOT_PATH before including this! $(LOCAL_PATH))

Completed in 866 milliseconds

1 2 3 4 5 6 7 8 91011>>