Searched defs:set (Results 126 - 150 of 173) sorted by path

1234567

/frameworks/base/tools/aapt/
H A DResource.cpp84 ResourceDirIterator(const sp<ResourceTypeSet>& set, const String8& resType) argument
85 : mResType(resType), mSet(set), mSetPos(0), mGroupPos(0)
290 const sp<ResourceTypeSet>& set,
298 ResourceDirIterator it(set, String8(resType));
355 const sp<ResourceTypeSet>& set, const char* type)
361 ResourceDirIterator it(set, String8(type));
403 sp<ResourceTypeSet> set = new ResourceTypeSet(); local
404 NOISY(printf("Creating new resource type set for leaf %s with group %s (%p)\n",
406 set->add(leafName, group);
407 resources->add(resType, set);
288 makeFileResources(Bundle* bundle, const sp<AaptAssets>& assets, ResourceTable* table, const sp<ResourceTypeSet>& set, const char* resType) argument
354 preProcessImages(const Bundle* bundle, const sp<AaptAssets>& assets, const sp<ResourceTypeSet>& set, const char* type) argument
409 sp<ResourceTypeSet> set = resources->valueAt(index); local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java318 public TypedArray obtainAttributes(AttributeSet set, int[] attrs) { argument
319 return mContext.obtainStyledAttributes(set, attrs);
H A DResources_Theme_Delegate.java80 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
82 BridgeTypedArray ta = RenderSessionImpl.getCurrentContext().obtainStyledAttributes(set,
78 obtainStyledAttributes( Resources thisResources, Theme thisTheme, AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java84 public void set(Matrix_Delegate matrix) { method in class:Matrix_Delegate
92 public void set(float[] values) { method in class:Matrix_Delegate
741 private final static int kTranslate_Mask = 0x01; //!< set if the matrix has translation
742 private final static int kScale_Mask = 0x02; //!< set if the matrix has X or Y scale
743 private final static int kAffine_Mask = 0x04; //!< set if the matrix skews or rotates
744 private final static int kPerspective_Mask = 0x08; //!< set if the matrix is in perspective
H A DPaint_Delegate.java196 // if no custom stroke as been set, set the default one.
205 * Returns the {@link Xfermode} delegate or null if none have been set
214 * Returns the {@link ColorFilter} delegate or null if none have been set
223 * Returns the {@link Shader} delegate or null if none have been set
232 * Returns the {@link MaskFilter} delegate or null if none have been set
241 * Returns the {@link Rasterizer} delegate or null if none have been set
715 delegate_dst.set(delegate_src);
1112 set(paint);
1115 private void set(Paint_Delegat method in class:Paint_Delegate
[all...]
H A DPath_Delegate.java106 newDelegate.set(pathDelegate);
141 pathDstDelegate.set(pathSrcDelegate);
495 private void set(Path_Delegate delegate) { method in class:Path_Delegate
605 * automatically set to (0,0).
639 * this contour, the first point is automatically set to (0,0).
678 * made for this contour, the first point is automatically set to (0,0).
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java136 private void set(int[] a) { method in class:Bridge.IntArray
214 // When DEBUG_LAYOUT is set and is not 0 or false, setup a default listener
486 sIntArrayWrapper.set(array);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java394 // set the resource ref to have correct view cookies
553 public final BridgeTypedArray obtainStyledAttributes(AttributeSet set, int[] attrs) { argument
554 return obtainStyledAttributes(set, attrs, 0, 0);
558 public BridgeTypedArray obtainStyledAttributes(AttributeSet set, int[] attrs, argument
565 if (set instanceof BridgeXmlBlockParser) {
567 parser = (BridgeXmlBlockParser)set;
580 } else if (set instanceof BridgeLayoutParamsMapAttributes) {
584 } else if (set != null) { // null parser is ok
598 if (set != null) {
599 customStyle = set
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDependencyFinder.java71 * @return A pair: [0]: map { class FQCN => set of FQCN class dependencies }.
72 * [1]: map { missing class FQCN => set of FQCN class that uses it. }
214 TreeSet<String> set = new TreeSet<String>();
215 dependencyMap.put(name, set);
216 visitor.setDependencySet(set);
237 * @param zipClasses The set of all classes FQCN found in the JAR files.
251 Set<String> set = missing.get(dep);
252 if (set == null) {
253 set = new TreeSet<String>();
254 missing.put(dep, set);
294 setDependencySet(Set<String> set) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java230 * When set, this network configuration entry should only be used when
295 * The set of key management protocols supported by this configuration.
301 * The set of security protocols supported by this configuration.
307 * The set of authentication protocols supported by this configuration.
313 * The set of pairwise ciphers for WPA supported by this configuration.
319 * The set of group ciphers supported by this configuration.
546 * Owner of the WifiConfiguration is responsible to set this field based on
552 * calculate and set Visibility for that configuration.
603 * if this is set, the WifiConfiguration cannot use linkages so as to bump
731 * This boolean is set onc
1345 writeBitSet(Parcel dest, BitSet set) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java31 * A set of settings to be used when filing a {@link CaptureRequest}.
83 public <T> boolean set(Key<T> key, T value) { method in class:Camera2RequestSettingsSet
177 * Get this set of settings's revision identifier, which can be compared
196 * those forced to default as described in {@link set} are also forced to
197 * default in {@code this} set. Invoking this method increments {@code this}
250 requestBuilder.set(key, value);
/frameworks/minikin/include/minikin/
H A DMinikinFont.h63 void set(const MinikinRect& r) { function in struct:android::MinikinRect
/frameworks/native/include/ui/
H A DRect.h171 inline void set(const Rect& rhs) { operator = (rhs); } function in class:android::Rect
/frameworks/native/libs/ui/
H A DRegion.cpp81 * First pass through, divideSpanRTL will be set because the 'previous span' (indexing into the dst
247 void Region::set(const Rect& r) function in class:android::Region
253 void Region::set(uint32_t w, uint32_t h) function in class:android::Region
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp287 void matrixf_t::set(const GLfixed* rhs) { function in class:android::matrixf_t
291 void matrixf_t::set(const GLfloat* rhs) { function in class:android::matrixf_t
847 rhs.set(f);
886 rhs.set(f);
958 rhs.set(m);
967 rhs.set(m);
/frameworks/native/opengl/libs/EGL/
H A DLoader.cpp136 status_t Loader::driver_t::set(void* hnd, int32_t api) function in class:android::Loader::driver_t
183 hnd->set( load_driver("GLESv1_CM", cnx, GLESv1_CM), GLESv1_CM );
184 hnd->set( load_driver("GLESv2", cnx, GLESv2), GLESv2 );
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java63 public GLDualGL2View(Context context, AttributeSet set) { argument
64 super(context, set);
/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java170 public void set(int i, int j, float x, float y, float z) { method in class:TestView.Grid
255 mGrid.set(i,j, x, y, z);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.h77 inline Key& set(key_t mask, key_t value) { function in class:android::ProgramCache::Key
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp41 set(orientation, 0, 0);
111 void Transform::set(float tx, float ty) function in class:android::Transform
124 void Transform::set(float a, float b, float c, float d) function in class:android::Transform
133 status_t Transform::set(uint32_t flags, float w, float h) function in class:android::Transform
235 out.set(transform(reg.bounds()));
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthAdapter.java75 public void set(CalendarDay date) { method in class:MonthAdapter.CalendarDay
199 // Invokes requestLayout() to ensure that the recycled view is set with the appropriate
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSimpleSessionDescription.java223 * the value is {@code null}. To set a binary attribute, use an empty
302 super.set("a=rtpmap:" + format, ' ', null);
303 super.set("a=fmtp:" + format, ' ', fmtp);
311 super.set("a=rtpmap:" + format, ' ', null);
312 super.set("a=fmtp:" + format, ' ', null);
356 super.set("a=rtpmap:" + format, ' ', rtpmap);
357 super.set("a=fmtp:" + format, ' ', fmtp);
383 * This class acts as a set of fields, and the size of the set is expected
423 set("
584 private void set(String key, char delimiter, String value) { method in class:SimpleSessionDescription.Fields
[all...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java151 public synchronized void set(int period, Runnable callback) { method in class:SipWakeupTimer
165 log("set: add event " + event + " scheduled on "
220 mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP,
/frameworks/opt/net/voip/src/jni/rtp/
H A DAmrCodec.cpp53 int set(int sampleRate, const char *fmtp);
67 int AmrCodec::set(int sampleRate, const char *fmtp) function in class:__anon1452::AmrCodec
75 // Handle mode-set and octet-align.
76 const char *modes = strcasestr(fmtp, "mode-set=");
211 int set(int sampleRate, const char *fmtp) { function in class:__anon1452::GsmEfrCodec
H A DAudioGroup.cpp99 bool set(int mode, int socket, sockaddr_storage *remote,
165 bool AudioStream::set(int mode, int socket, sockaddr_storage *remote, function in class:__anon1453::AudioStream
476 bool set(int sampleRate, int sampleCount);
572 bool AudioGroup::set(int sampleRate, int sampleCount) function in class:__anon1453::AudioGroup
593 if (!mChain->set(AudioStream::NORMAL, pair[1], NULL, NULL,
655 // or stop-set-restart threads seems too heavy. Will investigate later.
810 if (track->set(AUDIO_STREAM_VOICE_CALL, sampleRate, AUDIO_FORMAT_PCM_16_BIT,
815 record->set(AUDIO_SOURCE_VOICE_COMMUNICATION, sampleRate, AUDIO_FORMAT_PCM_16_BIT,
975 int sampleCount = (codec ? codec->set(sampleRate, codecSpec) : -1);
985 if (!stream->set(mod
[all...]

Completed in 920 milliseconds

1234567