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

1 23 4 5 6 7 8 91011>>

  /cts/suite/pts/deviceTests/opengl/jni/graphics/
TransformationNode.h 26 virtual void before(Program& program, Matrix& model, Matrix& view,
PerspectiveProgram.cpp 32 void PerspectiveProgram::before(Matrix& model, Matrix& view, Matrix& projection) { function in class:PerspectiveProgram
33 Program::before(model, view, projection);
PerspectiveProgram.h 28 virtual void before(Matrix& model, Matrix& view, Matrix& projection);
ProgramNode.h 27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection);
TransformationNode.cpp 24 void TransformationNode::before(Program& program, Matrix& model, Matrix& view, function in class:TransformationNode
  /external/chromium_org/skia/ext/
SkThread_chrome.cc 53 int32_t before; local
54 before = base::subtle::Acquire_CompareAndSwap(addr, value, value + 1);
56 if (before == value) {
59 value = before;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
cssNamedFlows.css 66 .css-named-flow-collections-view .split-view-sidebar .named-flow-overflow::before,
67 .css-named-flow-collections-view .region-empty:before,
68 .css-named-flow-collections-view .region-fit::before,
69 .css-named-flow-collections-view .region-overset::before {
80 .css-named-flow-collections-view .split-view-sidebar .named-flow-overflow::before {
85 .css-named-flow-collections-view .region-empty::before {
89 .css-named-flow-collections-view .region-fit::before {
93 .css-named-flow-collections-view .region-overset::before {
  /external/freetype/src/base/
ftutil.c 267 FT_ListNode before = list->tail; local
271 node->prev = before;
273 if ( before )
274 before->next = node;
309 FT_ListNode before, after; local
312 before = node->prev;
315 if ( before )
316 before->next = after;
321 after->prev = before;
323 list->tail = before;
333 FT_ListNode before, after; local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/utils/
autocorrection_threshold_utils.cpp 31 /* static */ int AutocorrectionThresholdUtils::editDistance(const int *before,
34 before, beforeLength, after, afterLength);
57 // (full match up to min(before.length(), after.length())
61 // - If before.length() == after.length()
63 // So, maximum original score is powf(2, min(before.length(), after.length())) * 255 * 2 * 1.2
69 /* static */ float AutocorrectionThresholdUtils::calcNormalizedScore(const int *before,
74 const int distance = editDistance(before, beforeLength, after, afterLength);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
controller.js 101 var before = this.view.getValues();
102 var after = !before.accumulator ? values : {};
104 accumulator: this.getUpdatedValue_(before, after, 'accumulator'),
105 operator: this.getUpdatedValue_(before, after, 'operator'),
106 operand: this.getUpdatedValue_(before, after, 'operand', !before.operator)
108 return !before.accumulator;
112 Controller.prototype.getUpdatedValue_ = function(before, after, key, zero) {
113 var value = (typeof after[key] !== 'undefined') ? after[key] : before[key];
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.cpp 87 static PassRefPtr<BlendedCompositableValue> create(const AnimationEffect::CompositableValue* before, const AnimationEffect::CompositableValue* after, double fraction)
89 return adoptRef(new BlendedCompositableValue(before, after, fraction));
100 BlendedCompositableValue(const AnimationEffect::CompositableValue* before, const AnimationEffect::CompositableValue* after, double fraction)
101 : m_before(const_cast<AnimationEffect::CompositableValue*>(before))
104 , m_dependsOnUnderlyingValue(before->dependsOnUnderlyingValue() || after->dependsOnUnderlyingValue())
247 // Note that synthetic keyframes must be added before this method is
289 PropertySpecificKeyframeVector::const_iterator before; local
296 before = m_keyframes.begin();
297 after = before + 1;
298 ASSERT((*before)->offset() > offset)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 154 * Insert a node in the list before the current node
156 void insert_before(exec_node *before)
158 before->next = this;
159 before->prev = this->prev;
161 this->prev->next = before;
162 this->prev = before;
166 * Insert another list in the list before the current node
168 void insert_before(struct exec_list *before);
456 inline void exec_node::insert_before(exec_list *before)
458 if (before->is_empty()
    [all...]
  /external/mesa3d/src/glsl/
list.h 154 * Insert a node in the list before the current node
156 void insert_before(exec_node *before)
158 before->next = this;
159 before->prev = this->prev;
161 this->prev->next = before;
162 this->prev = before;
166 * Insert another list in the list before the current node
168 void insert_before(struct exec_list *before);
456 inline void exec_node::insert_before(exec_list *before)
458 if (before->is_empty()
    [all...]
  /external/valgrind/main/none/tests/amd64/
avx-1.stdout.exp 2 before
15 before
29 before
42 before
56 before
69 before
83 before
96 before
110 before
123 before
    [all...]
  /external/clang/
clang.mk 2 $(error Must set variable CLANG_ROOT_PATH before including this! $(LOCAL_PATH))
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestionSpanPickedNotificationReceiver.java 34 final String before = intent.getStringExtra( local
38 Log.d(TAG, "Received notification picked: " + before + "," + after);
  /external/chromium_org/chrome/browser/resources/chromeos/login/
accessibility_menu.css 8 -webkit-padding-before: 15px;
14 -webkit-margin-before: 10px;
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
infobar_utilities.h 14 // Move the |toMove| view |spacing| pixels before/after the |anchor| view.
21 // Check that the control |before| is ordered visually before the |after|
23 bool VerifyControlOrderAndSpacing(id before, id after);
  /external/chromium_org/third_party/freetype/src/base/
ftutil.c 266 FT_ListNode before = list->tail; local
270 node->prev = before;
272 if ( before )
273 before->next = node;
308 FT_ListNode before, after; local
311 before = node->prev;
314 if ( before )
315 before->next = after;
320 after->prev = before;
322 list->tail = before;
332 FT_ListNode before, after; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 62 static bool is_clockwise(const SkVector& before, const SkVector& after)
64 return SkScalarMul(before.fX, after.fY) - SkScalarMul(before.fY, after.fX) > 0;
127 SkVector before = beforeUnitNormal;
131 if (!is_clockwise(before, after))
134 before.negate();
143 int count = SkBuildQuadArc(before, after, dir, &matrix, pts);
170 SkVector before = beforeUnitNormal; local
184 ccw = !is_clockwise(before, after);
188 before.negate()
    [all...]
  /external/clang/test/PCH/
cxx-typeid.h 16 bool before(const type_info& rhs) const;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
ClassCacheTest.java 37 long before = System.currentTimeMillis(); local
41 Assert.assertEquals(1, (after - before) / timeToWait);
76 long before = System.currentTimeMillis(); local
80 Assert.assertEquals(1, (after - before) / timeToWait);
  /external/skia/src/core/
SkStrokerPriv.cpp 62 static bool is_clockwise(const SkVector& before, const SkVector& after)
64 return SkScalarMul(before.fX, after.fY) - SkScalarMul(before.fY, after.fX) > 0;
127 SkVector before = beforeUnitNormal;
131 if (!is_clockwise(before, after))
134 before.negate();
143 int count = SkBuildQuadArc(before, after, dir, &matrix, pts);
170 SkVector before = beforeUnitNormal; local
184 ccw = !is_clockwise(before, after);
188 before.negate()
    [all...]
  /external/valgrind/main/memcheck/tests/
badaddrvalue.stderr.exp 3 Address 0x........ is 1 bytes before a block of size 8 alloc'd
9 Address 0x........ is 1 bytes before a block of size 8 alloc'd
  /ndk/sources/cxx-stl/gabi++/src/
type_info.cc 66 type_info::before(const type_info& rhs) const function in class:std::type_info

Completed in 366 milliseconds

1 23 4 5 6 7 8 91011>>