/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
BillboardControl.java | 54 private Vector3f left; field in class:BillboardControl 86 left = new Vector3f(); 151 // coopt left for our own purposes. 152 Vector3f xzp = left; 192 // coopt loc for our left direction: 193 left.set(camera.getLeft()).negateLocal(); 194 orient.fromAxes(left, camera.getUp(), look); 217 spatial.getParent().getWorldRotation().mult(look, left); // coopt left for our own 219 left.x *= 1.0f / spatial.getWorldScale().x [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_intra_prediction.c | 162 static void Get4x4NeighbourPels(u8 *a, u8 *l, u8 *data, u8 *above, u8 *left, 165 static void Intra16x16HorizontalPrediction(u8 *data, u8 *left); 166 static void Intra16x16DcPrediction(u8 *data, u8 *above, u8 *left, 168 static void Intra16x16PlanePrediction(u8 *data, u8 *above, u8 *left); 169 static void IntraChromaDcPrediction(u8 *data, u8 *above, u8 *left, 171 static void IntraChromaHorizontalPrediction(u8 *data, u8 *left); 173 static void IntraChromaPlanePrediction(u8 *data, u8 *above, u8 *left); 176 static void Intra4x4HorizontalPrediction(u8 *data, u8 *left); 177 static void Intra4x4DcPrediction(u8 *data, u8 *above, u8 *left, u32 A, u32 B); 179 static void Intra4x4DiagonalDownRightPrediction(u8 *data, u8 *above, u8 *left); [all...] |
/bionic/libc/upstream-freebsd/lib/libc/stdlib/ |
realpath.c | 48 * in which case the path which caused trouble is left in (resolved). 58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local 82 left_len = strlcpy(left, path + 1, sizeof(left)); 94 left_len = strlcpy(left, path, sizeof(left)); 96 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { 104 * Iterate over path components in `left'. 108 * Extract the next path component and adjust `left' 111 p = strchr(left, '/'); [all...] |
/external/chromium_org/tools/gn/ |
operators.cc | 97 const Token& left, 100 const Value* old_value = scope->GetValue(left.value(), false); 102 if (scope->IsSetButUnused(left.value())) { 109 *err = Err(op_node->left()->GetRange(), "Overwriting unused variable.", 111 left.value().as_string() + "\" that had no effect."); 112 err->AppendSubErr(Err(*scope->GetValue(left.value()), 127 *err = Err(op_node->left()->GetRange(), "Replacing nonempty list.", 135 left.value().as_string() + " = []\nbefore reassigning.")); 143 if (right.type() == Value::LIST && left.value() == kSourcesName) { 147 Value* set_value = scope->SetValue(left.value() [all...] |
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_resources.cc | 17 // Windows and Ash have shadows in the left, right and top parts of the tab. 35 SkScalar left = kTabInset; local 40 // Start in the lower-left corner. 41 path->moveTo(left, bottom); 43 // Left end cap. 44 path->lineTo(left + kTabBottomCurveWidth, bottom - kTabBottomCurveWidth); 45 path->lineTo(left + kTabCapWidth - kTabTopCurveWidth, 47 path->lineTo(left + kTabCapWidth, top); 51 path->lineTo(left + kTabCapWidth, 0); 65 path->lineTo(left, bottom) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ |
Pair.java | 22 private final L left;
field in class:Pair 30 public Pair(L left, R right) {
31 this.left = left;
66 return left;
78 public static <L, R> Pair<L, R> create(L left, R right) {
79 return new Pair<L, R>(left, right);
|
/external/replicaisland/src/com/replica/replicaisland/ |
QuickSorter.java | 44 // quicksort a[left] to a[right] 45 public void quicksort(Type[] a, int left, int right, Comparator<Type> comparator) { 46 if (right <= left) return; 47 int i = partition(a, left, right, comparator); 48 quicksort(a, left, i - 1, comparator); 52 // partition a[left] to a[right], assumes left < right 53 private int partition(Type[] a, int left, int right, Comparator<Type> comparator) { 54 int i = left - 1; 57 while (comparator.compare(a[++i], a[right]) < 0) { // find item on left to swa [all...] |
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ProgressBar.java | 86 * @param left The left offset 89 public void draw(Canvas canvas, int progress, Rect dest, int left, int width) { 92 dest.left = left; 99 dest.left = left; 106 dest.right = ((width - left) * progress) / 100; 110 dest.left = left; [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkTSort.h | 121 template <typename T, typename C> static void SkTInsertionSort(T* left, T* right, C lessThan) { 122 for (T* next = left + 1; next <= right; ++next) { 125 while (left < hole && lessThan(insert, *(hole - 1))) { 136 static T* SkTQSort_Partition(T* left, T* right, T* pivot, C lessThan) { 139 T* newPivot = left; 140 while (left < right) { 141 if (lessThan(*left, pivotValue)) { 142 SkTSwap(*left, *newPivot); 145 left += 1; 154 * This implementation recurses on the left region after pivoting and loops on the right [all...] |
/external/clang/www/analyzer/ |
menu.css | 4 clear: left; 25 text-align: left; 29 float: left; 38 left: 0; 41 border-left: 1px solid; 46 left:auto;
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/numeric/ |
MaxFunction.java | 35 Value left = args[0]; local 37 return literalConstant(max(left.asNumber(), right.asNumber()), left, right);
|
MinFunction.java | 35 Value left = args[0]; local 37 return literalConstant(min(left.asNumber(), right.asNumber()), left, right);
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/ |
AndFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asBoolean() && right.asBoolean(), left, right);
|
DivideFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() / right.asNumber(), left, right);
|
EqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.equals(right), left, right);
|
GreaterFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() > right.asNumber(), left, right);
|
GreaterOrEqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() >= right.asNumber(), left, right);
|
LessFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() < right.asNumber(), left, right);
|
LessOrEqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() <= right.asNumber(), left, right);
|
ModuloFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() % right.asNumber(), left, right);
|
MultiplyFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() * right.asNumber(), left, right);
|
NotEqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(!left.equals(right), left, right);
|
NumericAddFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() + right.asNumber(), left, right);
|
NumericEqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() == right.asNumber(), left, right);
|
NumericNotEqualFunction.java | 29 Value left = args[0]; local 31 return literalConstant(left.asNumber() != right.asNumber(), left, right);
|