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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/core/
SkThreadPriv.h 16 * If *addr == before, set *addr to after. Always returns previous value of *addr.
19 static void* sk_atomic_cas(void** addr, void* before, void* after);
  /external/chromium_org/components/enhanced_bookmarks/
item_position.cc 44 PositionVector before(other.begin() + from_index, other.end());
49 before[before.size() - 1] /= 2;
50 if (before[before.size() - 1] != 0) {
52 return before;
56 int index = before.size() - 1;
57 while (index >= 0 && before[index] == 0) {
58 before[index--] = kPositionBase / 2;
62 // front of the string to get one that is comes before the input given
    [all...]
item_position_unittest.cc 38 ItemPosition before = ItemPosition::CreateInitialPosition(); local
39 ItemPosition after = ItemPosition::CreateAfter(before);
41 ItemPosition next = ItemPosition::CreateBetween(before, after);
42 EXPECT_GT(next.ToString(), before.ToString());
51 ItemPosition before = ItemPosition::CreateInitialPosition(); local
52 ItemPosition after = ItemPosition::CreateAfter(before);
54 ItemPosition next = ItemPosition::CreateBetween(before, after);
55 EXPECT_GT(next.ToString(), before.ToString());
57 before = next;
60 EXPECT_LT(before.ToString().size(), 20u)
64 ItemPosition before = ItemPosition::CreateInitialPosition(); local
    [all...]
item_position.h 24 static ItemPosition CreateBetween(const ItemPosition& before,
45 static PositionVector CreateBeforeImpl(const PositionVector& before,
47 static PositionVector CreateBetweenImpl(const PositionVector& before,
  /external/chromium_org/third_party/skia/src/ports/
SkAtomics_win.h 44 static inline bool sk_atomic_cas(int32_t* addr, int32_t before, int32_t after) {
45 return _InterlockedCompareExchange(reinterpret_cast<long*>(addr), after, before) == before;
48 static inline void* sk_atomic_cas(void** addr, void* before, void* after) {
49 return InterlockedCompareExchangePointer(addr, after, before);
SkAtomics_sync.h 42 int32_t before,
44 return __sync_bool_compare_and_swap(addr, before, after);
48 void* before,
50 return __sync_val_compare_and_swap(addr, before, after);
  /external/chromium_org/v8/src/compiler/
machine-type.cc 14 if (before) os << "|"; \
16 before = true; \
21 bool before = false; local
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkTrackDevice.h 20 * before(); // - collects state of interesting pixels
43 before();
49 before();
56 before();
63 before();
71 before();
78 before();
87 before();
94 before();
101 before();
157 void before() { function in class:SkTrackDevice
    [all...]
  /external/junit/src/org/junit/rules/
ExternalResource.java 8 * resource before a test (a file, socket, server, database connection, etc.),
18 * protected void before() throws Throwable {
44 before();
58 protected void before() throws Throwable {
  /external/lldb/
lldb.mk 2 $(error Must set variable LLDB_ROOT_PATH before including this! $(LOCAL_PATH))
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
touch-action-tests.css 39 [expected-action=none]::before {
42 [expected-action=auto]::before {
45 [expected-action=pan-x]::before {
48 [expected-action=pan-y]::before {
51 [expected-action=pan-x-y]::before {
54 [expected-action=manipulation]::before {
  /external/lldb/test/pexpect-2.4/examples/
sshls.py 26 print child.before, child.after
35 print child.before, child.after
47 print child.before
  /cts/suite/cts/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);
  /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/fugu/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/htc/flounder/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/moto/shamu/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/chromium_org/third_party/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/compiler-rt/test/asan/TestCases/
max_redzone.cc 17 size_t before = __sanitizer_get_heap_size(); local
24 size_t diff = after - before;

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>