/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
LODGeomap.java | 138 store.set((((float) x) + offsetX) / (float) (totalSize - 1), // calculates percentage of texture here
668 normal.set(normalBuffer.get(idx), normalBuffer.get(idx+1), normalBuffer.get(idx+2));
669 tangent.set(normal.cross(new Vector3f(0,0,1)));
670 binormal.set(new Vector3f(1,0,0).cross(normal));
684 v1.set(c, getValue(c, r), r);
685 t1.set(textureBuffer.get(texIdx), textureBuffer.get(texIdx + 1));
689 v3.set(c, getValue(c, r), r + 1);
694 t3.set(u, v);
696 v3.set(c, getValue(c, r + 1), r + 1);
697 t3.set(textureBuffer.get(texIdxNext), textureBuffer.get(texIdxNext + 1)); [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
LocalsArraySet.java | 27 * Representation of a set of local variable arrays, with Java semantics. 64 * Constructs an instance with the specified primary and secondaries set. 67 * @param secondaries {@code non-null;} secondaries set, indexed by subroutine 124 ex.addContext("(locals array set; primary)"); 132 ex.addContext("(locals array set: primary for caller " 144 sb.append("(locals array set; primary)\n"); 154 sb.append("(locals array set: primary for caller " 194 public void set(int idx, TypeBearer type) { method in class:LocalsArraySet 197 primary.set(idx, type); 201 la.set(idx, type) 208 public void set(RegisterSpec spec) { method in class:LocalsArraySet [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
AnimationFactory.java | 92 void set(Quaternion rot) { method in class:AnimationFactory.Rotation 93 rotation.set(rot); 96 eulerAngles.set(a[0], a[1], a[2]); 99 void set(float x, float y, float z) { method in class:AnimationFactory.Rotation 102 eulerAngles.set(x, y, z); 218 t.set(translation); 243 r.set(rotation); 274 r.set(x, y, z); 301 dr.set(prevRot.eulerAngles.x + cursor * dXAngle, prevRot.eulerAngles.y + cursor * dYAngle, prevRot.eulerAngles.z + cursor * dZAngle); 325 s.set(scale) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
TrustDrawable.java | 241 AnimatorSet set = new AnimatorSet(); local 242 set.playTogether(alphaAnimator, sizeAnimator); 244 set.addListener(new StateUpdateAnimatorListener()); 246 return set;
|
/frameworks/multidex/library/src/android/support/multidex/ |
MultiDex.java | 40 import java.util.Set; 74 private static final Set<String> installedApk = new HashSet<String>(); 337 jlrField.set(instance, combined); 409 suppressedExceptionsField.set(loader, dexElementsSuppressedExceptions); 499 pathField.set(loader, path.toString());
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
BaseRecyclerViewFastScrollBar.java | 91 mInvalidateRect.set(mThumbOffset.x, 0, mThumbOffset.x + mThumbWidth, mRv.getHeight()); 92 mThumbOffset.set(x, y); 100 mInvalidateRect.set(mThumbOffset.x, 0, mThumbOffset.x + mThumbWidth, mRv.getHeight()); 114 mInvalidateRect.set(mThumbOffset.x, 0, mThumbOffset.x + mThumbWidth, mRv.getHeight()); 230 mTmpRect.set(mThumbOffset.x, mThumbOffset.y, mThumbOffset.x + mThumbWidth,
|
/art/runtime/gc/accounting/ |
space_bitmap_test.cc | 67 // Set all the odd bits in the first BitsPerIntPtrT * 3 to one. 72 space_bitmap->Set(obj); 128 bool set = r.next() % 2 == 1; variable 130 if (set) { 131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset));
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
CatchTable.java | 43 * this with the index for an element which was never set; if you 57 * @param entry {@code non-null;} the entry to set at {@code n} 59 public void set(int n, Entry entry) { method in class:CatchTable
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstArray.java | 140 * this with the index for an element which was never set; if you 154 * @param a {@code null-ok;} the element to set at {@code n} 156 public void set(int n, Constant a) { method in class:CstArray.List
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
Bits.java | 31 * Constructs a bit set to contain bits up to the given index (exclusive). 42 * Gets the maximum index (exclusive) for the given bit set. 44 * @param bits {@code non-null;} bit set in question 45 * @return {@code >= 0;} the maximum index (exclusive) that may be set 54 * @param bits {@code non-null;} bit set to operate on 55 * @param idx {@code >= 0, < getMax(set);} which bit 67 * @param bits {@code non-null;} bit set to operate on 68 * @param idx {@code >= 0, < getMax(set);} which bit 71 public static void set(int[] bits, int idx, boolean value) { method in class:Bits 85 * @param bits {@code non-null;} bit set to operate o 88 public static void set(int[] bits, int idx) { method in class:Bits [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
CatchTable.java | 42 * this with the index for an element which was never set; if you 56 * @param entry {@code non-null;} the entry to set at {@code n} 58 public void set(int n, Entry entry) { method in class:CatchTable
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstArray.java | 138 * this with the index for an element which was never set; if you 152 * @param a {@code null-ok;} the element to set at {@code n} 154 public void set(int n, Constant a) { method in class:CstArray.List
|
/dalvik/dx/src/com/android/dx/util/ |
Bits.java | 31 * Constructs a bit set to contain bits up to the given index (exclusive). 42 * Gets the maximum index (exclusive) for the given bit set. 44 * @param bits {@code non-null;} bit set in question 45 * @return {@code >= 0;} the maximum index (exclusive) that may be set 54 * @param bits {@code non-null;} bit set to operate on 55 * @param idx {@code >= 0, < getMax(set);} which bit 67 * @param bits {@code non-null;} bit set to operate on 68 * @param idx {@code >= 0, < getMax(set);} which bit 71 public static void set(int[] bits, int idx, boolean value) { method in class:Bits 85 * @param bits {@code non-null;} bit set to operate o 88 public static void set(int[] bits, int idx) { method in class:Bits [all...] |
/external/android-mock/tests/com/google/android/testing/mocking/ |
UsesMocksProcessorTest.java | 33 import java.util.Set; 54 private Set<? extends Element> getAnnotatedElementsSet(Class<?>... classes) { 55 Set<Element> set = new HashSet<Element>(); local 57 set.add(getMockElement(clazz)); 59 return set; 209 private RoundEnvironment getMockRoundEnvironment(Set<? extends Element> elementsWithAnnotation) { 214 private RoundEnvironment getMockRoundEnvironment(Set<? extends Element> elementsWithAnnotation, 218 (Set) elementsWithAnnotation).anyTimes(); 231 Set<GeneratedClassFile> mockedClasses [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/ |
ACyclicDFACodeGenerator.java | 121 labels.set(j, label); // rewrite List element to be name
|
PythonTarget.java | 198 nChunks.set(i, text.substring(j));
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
IntArrayList.java | 49 /** Set the ith element. Like ArrayList, this does NOT affect size. */ 50 public int set(int i, int newValue) { method in class:IntArrayList 52 setSize(i); // unlike definition of set in ArrayList, set size
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/wiki-example-code/ |
example.py | 110 page.set( 165 def set(self, title, content): member in class:Page
|
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/ |
CustomElements.js | 5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 6 * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 19 set: function(key, value) {
|
/external/clang/test/Analysis/ |
reinterpret-cast.cpp | 11 void set() { x = 42; } function in struct:Child 18 wrapper->set();
|
/external/clang/test/CodeGenCXX/ |
captured-statements.cpp | 115 void set() { function in class:Val 145 Obj.set();
|
/external/clang/test/SemaCXX/ |
captured-statements.cpp | 67 void set(const T &v0) { function in class:Val 80 Obj.set(0.0f); // OK
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_clock.cc | 168 // ReleaseStore will correctly set release_store_tid_, 351 void ThreadClock::set(unsigned tid, u64 v) { function in class:__tsan::ThreadClock
|
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLX509CRLEntry.java | 27 import java.util.Set; 38 public Set<String> getCriticalExtensionOIDs() { 63 public Set<String> getNonCriticalExtensionOIDs() { 110 calendar.set(Calendar.MILLISECOND, 0);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
CatchTable.java | 43 * this with the index for an element which was never set; if you 57 * @param entry {@code non-null;} the entry to set at {@code n} 59 public void set(int n, Entry entry) { method in class:CatchTable
|