Searched refs:set (Results 1 - 25 of 588) sorted by relevance

1234567891011>>

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicColorMatrix.java73 * @param m The 4x4 matrix to set.
82 * This will set the alpha channel to be a copy.
84 * @param m The 3x3 matrix to set.
98 mMatrix.set(0, 0, 0.299f);
99 mMatrix.set(1, 0, 0.587f);
100 mMatrix.set(2, 0, 0.114f);
101 mMatrix.set(0, 1, 0.299f);
102 mMatrix.set(1, 1, 0.587f);
103 mMatrix.set(2, 1, 0.114f);
104 mMatrix.set(
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DFutureWaiter.java23 * {@link com.google.common.util.concurrent.AbstractFuture#set(Object)} method internally. It
33 super.set(true);
39 public void set(boolean result) { method in class:FutureWaiter
40 super.set(result);
/frameworks/base/core/java/com/google/android/collect/
H A DSets.java55 * <p>{@code Set<Base> set = Sets.newHashSet(sub1, sub2);}
60 * <p>{@code Set<Base> set = Sets.<Base>newHashSet(sub1, sub2);}
62 * @param elements the elements that the set should contain
68 HashSet<E> set = new HashSet<E>(capacity);
69 Collections.addAll(set, elements);
70 return set;
85 * @param elements the elements that the set should contain
90 SortedSet<E> set = new TreeSet<E>();
91 Collections.addAll(set, elements);
92 return set;
[all...]
/frameworks/base/libs/hwui/
H A DVertex.h33 * Program::set()), and used to make geometry damage rect calculation conservative (see
40 static inline void set(Vertex* vertex, float x, float y) { function in struct:android::uirenderer::Vertex
45 static inline void set(Vertex* vertex, vec2 val) { function in struct:android::uirenderer::Vertex
46 set(vertex, val.x, val.y);
50 set(vertex, src.position[0] + x, src.position[1] + y);
62 static inline void set(TextureVertex* vertex, float x, float y, float u, float v) { function in struct:android::uirenderer::TextureVertex
81 static inline void set(ColorTextureVertex* vertex, float x, float y, function in struct:android::uirenderer::ColorTextureVertex
83 TextureVertex::set(vertex, x, y, u, v);
99 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) { function in struct:android::uirenderer::AlphaVertex
100 Vertex::set(verte
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsicColorMatrix.java93 * @param m The 4x4 matrix to set.
102 * This will set the alpha channel to be a copy.
104 * @param m The 3x3 matrix to set.
161 mMatrix.set(0, 0, 0.299f);
162 mMatrix.set(1, 0, 0.587f);
163 mMatrix.set(2, 0, 0.114f);
164 mMatrix.set(0, 1, 0.299f);
165 mMatrix.set(1, 1, 0.587f);
166 mMatrix.set(2, 1, 0.114f);
167 mMatrix.set(
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorResult.java20 public void set(int res) { method in class:AppErrorResult
/frameworks/compile/mclinker/
H A Dmcld.mk2 $(error Must set variable MCLD_ROOT_PATH before including this! $(LOCAL_PATH))
9 $(error Must set variable LLVM_ROOT_PATH before including this! $(LOCAL_PATH))
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java54 Set<Class<?>> set = Sets.newHashSet();
55 addTopLevelClassesTo(set);
56 return set;
59 private void addTopLevelClassesTo(Set<Class<?>> set) { argument
60 set.addAll(topLevelClasses);
62 info.addTopLevelClassesTo(set);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiAssociationTest.java87 assertTrue("device frequency band is not set successfully", (mBand == currentFreq));
131 // set network configurations
133 config.allowedKeyManagement.set(KeyMgmt.NONE);
138 config.allowedKeyManagement.set(KeyMgmt.NONE);
139 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
140 config.allowedAuthAlgorithms.set(AuthAlgorithm.SHARED);
141 config.allowedGroupCiphers.set(GroupCipher.WEP40);
156 config.allowedKeyManagement.set(KeyMgmt.NONE);
157 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
158 config.allowedAuthAlgorithms.set(AuthAlgorith
[all...]
/frameworks/base/core/tests/systemproperties/src/android/os/
H A DSystemPropertiesTest.java31 SystemProperties.set(PERSIST_KEY, Long.toString(i));
40 SystemProperties.set(KEY, Long.toString(i));
50 SystemProperties.set(KEY, "");
54 SystemProperties.set(KEY, "SA");
61 SystemProperties.set(KEY, "");
/frameworks/rs/
H A DrsMatrix3x3.cpp59 set(i, 0, ri0);
60 set(i, 1, ri1);
61 set(i, 2, ri2);
71 set(i, j, get(j, i));
72 set(j, i, temp);
H A DrsSignal.h33 void set();
/frameworks/base/core/tests/coretests/src/android/os/
H A DSystemPropertiesTest.java32 SystemProperties.set(KEY, "");
36 SystemProperties.set(KEY, "AAA");
43 SystemProperties.set(KEY, "");
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DColorMatrix.java37 m.set(1, 0, 0.2f);
38 m.set(1, 1, 0.9f);
39 m.set(1, 2, 0.2f);
H A DLevelsV4.java73 satMatrix.set(0, 0, oneMinusS * rWeight + mSaturation);
74 satMatrix.set(0, 1, oneMinusS * rWeight);
75 satMatrix.set(0, 2, oneMinusS * rWeight);
76 satMatrix.set(1, 0, oneMinusS * gWeight);
77 satMatrix.set(1, 1, oneMinusS * gWeight + mSaturation);
78 satMatrix.set(1, 2, oneMinusS * gWeight);
79 satMatrix.set(2, 0, oneMinusS * bWeight);
80 satMatrix.set(2, 1, oneMinusS * bWeight);
81 satMatrix.set(2, 2, oneMinusS * bWeight + mSaturation);
/frameworks/av/media/mtp/
H A DMtpStringBuffer.h43 void set(const char* src);
44 void set(const uint16_t* src);
/frameworks/base/core/java/android/text/
H A DTextPaint.java60 public void set(TextPaint tp) { method in class:TextPaint
61 super.set(tp);
/frameworks/base/services/java/com/android/server/display/
H A DDisplayViewport.java57 logicalFrame.set(viewport.logicalFrame);
58 physicalFrame.set(viewport.physicalFrame);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dwin_asm.bat2 set ASMFLAGS= -checkreglist -CPU ARM1136 -PreDefine "H264DEC_WINASM SETL {TRUE}"
3 set ASM="D:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm\armasm"
/frameworks/base/core/java/android/util/
H A DFloatProperty.java23 * calls to a {@link #set(Object, Float) set()} function that takes the primitive
38 * A type-specific override of the {@link #set(Object, Float)} that is faster when dealing
44 final public void set(T object, Float value) { method in class:FloatProperty
H A DIntProperty.java23 * calls to a {@link #set(Object, Integer) set()} function that takes the primitive
38 * A type-specific override of the {@link #set(Object, Integer)} that is faster when dealing
44 final public void set(T object, Integer value) { method in class:IntProperty
/frameworks/base/core/java/com/android/internal/view/
H A DWindowManagerPolicyThread.java29 public static void set(Thread thread, Looper looper) { method in class:WindowManagerPolicyThread
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioCodec.h29 virtual int set(int sampleRate, const char *fmtp) = 0;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java179 // may not set the mSurfaceTexture again on the filter. In some cases, the app
293 mTargetQuad.p0.set(0f, 0.0f);
294 mTargetQuad.p1.set(1f, 0.0f);
295 mTargetQuad.p2.set(0f, 1.0f);
296 mTargetQuad.p3.set(1f, 1.0f);
302 mTargetQuad.p0.set(0.5f - 0.5f / relativeAspectRatio, 0.0f);
303 mTargetQuad.p1.set(0.5f + 0.5f / relativeAspectRatio, 0.0f);
304 mTargetQuad.p2.set(0.5f - 0.5f / relativeAspectRatio, 1.0f);
305 mTargetQuad.p3.set(0.5f + 0.5f / relativeAspectRatio, 1.0f);
309 mTargetQuad.p0.set(0.
[all...]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DLevelsV4.java79 satMatrix.set(0, 0, oneMinusS * rWeight + mSaturation);
80 satMatrix.set(0, 1, oneMinusS * rWeight);
81 satMatrix.set(0, 2, oneMinusS * rWeight);
82 satMatrix.set(1, 0, oneMinusS * gWeight);
83 satMatrix.set(1, 1, oneMinusS * gWeight + mSaturation);
84 satMatrix.set(1, 2, oneMinusS * gWeight);
85 satMatrix.set(2, 0, oneMinusS * bWeight);
86 satMatrix.set(2, 1, oneMinusS * bWeight);
87 satMatrix.set(2, 2, oneMinusS * bWeight + mSaturation);

Completed in 6791 milliseconds

1234567891011>>