Searched refs:used (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/core/java/android/provider/
H A DOneTimeUseBuilder.java30 private boolean used = false; field in class:OneTimeUseBuilder
34 used = true;
38 if (used) {
47 * Once this method is called, this builder should no longer be used. Any subsequent calls to a
/frameworks/base/libs/hwui/debug/
H A Dwrap_gles.h19 #error wrap_gles.h should only be used as an auto-included header, don't directly #include it
/frameworks/wilhelm/tools/permute/
H A Dpermute.c105 unsigned used; local
107 used = split(s, leftStart, leftLength, segmentBudget / 2);
108 used += split(s, rightStart, rightLength, segmentBudget - used);
110 used = split(s, rightStart, rightLength, segmentBudget / 2);
111 used += split(s, leftStart, leftLength, segmentBudget - used);
113 assert(used >= 2);
114 assert(used <= segmentBudget);
115 return used;
223 unsigned used; local
[all...]
/frameworks/base/libs/hwui/
H A DShadowTessellator.h31 // All SHADOW_* are used to define all the geometry property of shadows.
57 // The total number of indices used for drawing the shadow geometry as triangle strips.
88 static void checkOverflow(int used, int total, const char* bufferName);
H A DShadowTessellator.cpp185 void ShadowTessellator::checkOverflow(int used, int total, const char* bufferName) { argument
186 LOG_ALWAYS_FATAL_IF(used > total, "Error: %s overflow!!! used %d, total %d", bufferName, used,
/frameworks/rs/script_api/
H A Drs_allocation_data.spec20 The functions below can be used to get and set the cells that comprise
39 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
43 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
69 arg: uint32_t dstMip, "Mip level in the destination allocation. 0 if mip mapping is not used."
76 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
427 arg: float lod, "Mip level to sample from, for fractional values mip levels will be interpolated if RS_SAMPLER_LINEAR_MIP_LINEAR is used."
H A Drs_debug.spec20 The functions below are intended to be used during application developement.
21 They should not be used in shipping applications.
36 This function is intended for debugging only and should not be used in shipping
H A Drs_for_each.spec20 The @rsForEach() function can be used to invoke the root kernel of a script.
22 The other functions are used to get the characteristics of the invocation of
38 This type is used to suggest how the invoked kernel should iterate over the cells of the
51 over, like dimensions. It also contains rarely used indices of the currently processed
77 This structure is used to provide iteration information to a rsForEach call.
78 It is currently used to restrict processing to a subset of cells. In future
79 versions, it will also be used to provide hint on how to best iterate over
92 of this type can be used in a @rsForEach call to launch a kernel.
102 arg: const rs_script_call_t* sc, "Extra control information used to select a sub-region of the allocation to be processed or suggest a walking strategy. May be NULL."
116 "root" in the specified script, and only a single input allocation can be used
[all...]
H A Drs_object_types.spec20 The types below are used to manipulate RenderScript objects like allocations, samplers,
98 An enum used to specify one the six faces of a cubemap.
105 value: RS_ALLOCATION_USAGE_GRAPHICS_TEXTURE = 0x0002, "Allocation is used as a texture source."
109 value: RS_ALLOCATION_USAGE_IO_INPUT = 0x0020, "Allocation is used as a Surface consumer."
110 value: RS_ALLOCATION_USAGE_IO_OUTPUT = 0x0040, "Allocation is used as a Surface producer."
112 summary: Bitfield to specify how an allocation is used
154 rs_data_type is used to encode the type information of a basic element.
180 The RS_KIND_PIXEL_* values are used in conjunction with the standard data types for representing
H A Drs_object_info.spec20 The functions below can be used to query the characteristics of an Allocation, Element,
26 Allocations are the primary method used to pass data to and from RenderScript kernels.
28 They are a structured collection of cells that can be used to store bitmaps, textures,
38 The term "element" is used a bit ambiguously in RenderScript, as both type information
54 Elements can also have a kind, which is semantic information used to interpret pixel
143 Tells the run time that this handle will no longer be used to access the the related
158 This function does not validate that the internal pointer used in the handle
161 This function can be used to check the Element returned by @rsElementGetSubElement()
182 Returns the Element's data kind. This is used to interpret pixel data.
H A Drs_vector_math.spec30 subnormal values may be flushed to zero, rounding towards zero may be used, and NaN and
33 values may be flushed to zero, and rounding towards zero may be used.</li>
H A Drs_io.spec20 These functions are used to:<ul>
H A Drs_time.spec20 The functions below can be used to tell the current clock time and the current
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
H A DLayoutBinder.java253 List<Expr> used = new ArrayList<Expr>();
257 used.add(binding.getExpr());
260 while (!used.isEmpty()) {
261 Expr e = used.remove(used.size() - 1);
264 used.add(dep.getOther());
/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp237 EXPECT_FALSE(u.used());
242 EXPECT_TRUE(u.used());
249 EXPECT_FALSE(u.used());
259 EXPECT_TRUE(u.used());
265 EXPECT_FALSE(u.used());
271 EXPECT_TRUE(u.used());
301 EXPECT_FALSE(u.used());
309 EXPECT_TRUE(u.used());
320 EXPECT_TRUE(u.used());
449 EXPECT_FALSE(u.used());
[all...]
/frameworks/base/core/proto/android/os/
H A Dcpuinfo.proto48 optional int32 used = 2;
/frameworks/base/core/java/android/text/method/
H A DMetaKeyKeyListener.java34 * This class provides two mechanisms for tracking meta state that can be used
62 * To ensure correct meta key behavior, the following pattern should be used
108 // These bits are privately used by the meta key key listener.
561 long locked, long pressed, long released, long used) {
566 } else if ((state & used) != 0) {
599 long pressed, long released, long used, KeyEvent event) {
602 if ((state & used) != 0) {
636 * The meta key has been pressed but has not yet been used.
643 * not yet been used.
649 * The meta key has been pressed and used bu
560 press(long state, int what, long mask, long locked, long pressed, long released, long used) argument
598 release(long state, int what, long mask, long pressed, long released, long used, KeyEvent event) argument
[all...]
/frameworks/base/services/robotests/
H A DAndroid.mk43 # here, so if we write stuff that is being used in the tests and exist in
47 # 1. If the class being used should be visible to bundled apps:
/frameworks/av/include/media/stagefright/foundation/
H A DAData.h38 * be used by generic code as it is very unsafe - it opens type aliasing errors where an object of
41 * AData allows a custom type flagger to be used for future extensions (e.g. allowing automatic
106 * \note we do not clear the storage in this case as the storage should not be used
564 * - a flagFor(T*) method for supported types _and_ for T=void. T=void is used to mark that no
752 if (this->used() && !this->clear()) {
755 if (o.used()) {
779 if (this->used() && !this->clear()) {
782 if (o.used()) {
815 inline bool used() const { function in struct:android::AData::Custom
824 if (this->used()) {
[all...]
/frameworks/av/media/audioserver/
H A DAndroid.mk46 # If AUDIOSERVER_MULTILIB in device.mk is non-empty then it is used to control
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DAData.h38 * be used by generic code as it is very unsafe - it opens type aliasing errors where an object of
41 * AData allows a custom type flagger to be used for future extensions (e.g. allowing automatic
106 * \note we do not clear the storage in this case as the storage should not be used
564 * - a flagFor(T*) method for supported types _and_ for T=void. T=void is used to mark that no
752 if (this->used() && !this->clear()) {
755 if (o.used()) {
779 if (this->used() && !this->clear()) {
782 if (o.used()) {
815 inline bool used() const { function in struct:android::AData::Custom
824 if (this->used()) {
[all...]
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DAData.h38 * be used by generic code as it is very unsafe - it opens type aliasing errors where an object of
41 * AData allows a custom type flagger to be used for future extensions (e.g. allowing automatic
106 * \note we do not clear the storage in this case as the storage should not be used
564 * - a flagFor(T*) method for supported types _and_ for T=void. T=void is used to mark that no
752 if (this->used() && !this->clear()) {
755 if (o.used()) {
779 if (this->used() && !this->clear()) {
782 if (o.used()) {
815 inline bool used() const { function in struct:android::AData::Custom
824 if (this->used()) {
[all...]
/frameworks/rs/
H A DrsRuntime.h128 uint32_t __attribute((used)) rsrToClient(Context *, int cmdID, void *data, int len);
129 uint32_t __attribute((used)) rsrToClientBlocking(Context *, int cmdID, void *data, int len);
/frameworks/base/cmds/incidentd/
H A DAndroid.mk17 # proto files used in incidentd to generate cppstream proto headers.
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk56 # will be used when tests. Otherwise the tests would run against the installed

Completed in 464 milliseconds

12