Home
last modified time | relevance | path

Searched refs:used (Results 1 – 25 of 582) sorted by relevance

12345678910>>...24

/frameworks/wilhelm/tools/permute/
Dpermute.c105 unsigned used; in split() local
107 used = split(s, leftStart, leftLength, segmentBudget / 2); in split()
108 used += split(s, rightStart, rightLength, segmentBudget - used); in split()
110 used = split(s, rightStart, rightLength, segmentBudget / 2); in split()
111 used += split(s, leftStart, leftLength, segmentBudget - used); in split()
113 assert(used >= 2); in split()
114 assert(used <= segmentBudget); in split()
115 return used; in split()
223 unsigned used; in permute() local
224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax); in permute()
[all …]
/frameworks/base/docs/html/guide/topics/resources/
Dcolor-list-resource.jd24 uses various attributes to describe the state in which it should be used.</p>
27 matches the current state will be used&mdash;the selection is <em>not</em> based on the "best
37 The filename will be used as the resource ID.</dd>
97 …<dd><em>Boolean</em>. "true" if this item should be used when the object is pressed (such as when …
98 is touched/clicked); "false" if this item should be used in the default, non-pressed state.</dd>
100 …<dd><em>Boolean</em>. "true" if this item should be used when the object is focused (such as when …
101 is highlighted using the trackball/d-pad); "false" if this item should be used in the default,
104 …<dd><em>Boolean</em>. "true" if this item should be used when the object is selected (such as when…
105 tab is opened); "false" if this item should be used when the object is not selected.</dd>
107 …<dd><em>Boolean</em>. "true" if this item should be used when the object is checkable; "false" if …
[all …]
/frameworks/wilhelm/doc/
DDoxyfile3 # This file describes the settings to be used by the documentation system
17 # This tag specifies the encoding used for all characters in the config file
18 # that follow. The default is UTF-8 which is also the encoding used for all
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
32 # if some version control system is used.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
39 # where doxygen was started. If left blank the current directory will be used.
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
80 # that is used to form the text in various listings. Each string
83 # used as the annotated text. Otherwise, the brief description is used as-is.
[all …]
/frameworks/native/docs/
DDoxyfile3 # This file describes the settings to be used by the documentation system
17 # This tag specifies the encoding used for all characters in the config file
18 # that follow. The default is UTF-8 which is also the encoding used for all
31 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
33 # if some version control system is used.
50 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
53 # where doxygen was started. If left blank the current directory will be used.
66 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
94 # that is used to form the text in various listings. Each string
97 # used as the annotated text. Otherwise, the brief description is used as-is.
[all …]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
DLayoutBinder.java208 List<Expr> used = new ArrayList<Expr>(); in resolveWhichExpressionsAreUsed() local
212 used.add(binding.getExpr()); in resolveWhichExpressionsAreUsed()
215 while (!used.isEmpty()) { in resolveWhichExpressionsAreUsed()
216 Expr e = used.remove(used.size() - 1); in resolveWhichExpressionsAreUsed()
219 used.add(dep.getOther()); in resolveWhichExpressionsAreUsed()
/frameworks/native/opengl/libs/GLES_trace/
Ddev.make2 ## This file is used for development purposes only. It is not used by the build system.
/frameworks/base/docs/html/ndk/reference/
Ddeprecated.jd13 <dd>Not currently supported or used. </dd>
15 <dd>Not currently supported or used. </dd>
19 <dd>This flag is no longer used. </dd>
/frameworks/rs/api/
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
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.
112 summary: Bitfield to specify how an allocation is used
153 rs_data_type is used to encode the type information of a basic element.
179 The RS_KIND_PIXEL_* values are used in conjunction with the standard data types for representing
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, and rarely used indexes, like the Array0 index or the current
80 This structure is used to provide iteration information to a rsForEach call.
81 It is currently used to restrict processing to a subset of cells. In future
82 versions, it will also be used to provide hint on how to best iterate over
173 used indexes, like the Array0 index.
179 &nbsp;&nbsp;// adding these variables as arguments. For the more rarely used indexes<br/>
Drs_allocation_data.spec20 The functions below can be used to get and set the cells that comprise
72 arg: uint32_t srcMip, "Mip level in the source allocation. 0 if mip mapping is not used."
/frameworks/webview/nullwebview/
Dproguard.flags3 # config file to be used whether jarjar is enabled or not.
6 # Keep the factory and its public members; it's the main entry point used by the
/frameworks/rs/scriptc/
Drs_object_types.rsh22 * The types below are used to manipulate RenderScript objects like allocations, samplers,
95 * An enum used to specify one the six faces of a cubemap.
109 * rs_allocation_usage_type: Bitfield to specify how an allocation is used
121 RS_ALLOCATION_USAGE_IO_INPUT = 0x0020, // Allocation is used as a Surface consumer.
122 RS_ALLOCATION_USAGE_IO_OUTPUT = 0x0040, // Allocation is used as a Surface producer.
130 * rs_data_type is used to encode the type information of a basic element.
179 * The RS_KIND_PIXEL_* values are used in conjunction with the standard data types for representing
Drs_for_each.rsh22 * The rsForEach() function can be used to invoke the root kernel of a script.
24 * The other functions are used to get the characteristics of the invocation of
35 * This type is used to suggest how the invoked kernel should iterate over the cells of the
54 * over, like dimensions, and rarely used indexes, like the Array0 index or the current
70 * This structure is used to provide iteration information to a rsForEach call.
71 * It is currently used to restrict processing to a subset of cells. In future
72 * versions, it will also be used to provide hint on how to best iterate over
123 …* sc: Extra control information used to select a sub-region of the allocation to be processed or…
124 …* usrDataLen: Size of the userData structure. This will be used to perform a shallow copy of th…
162 * used indexes, like the Array0 index.
[all …]
/frameworks/base/docs/html/distribute/tools/promote/
Dbrand.jd31 <li>"Android" cannot be used in names of applications or accessory products,
37 <p>If used with your logo, "for Android" should be no larger than 90% of your logo’s size.
40 <li>"Android TV", "Android Wear" and "Android Auto" may only be used to identify or market
48 <p>If used with your logo, "for Android" or "with Android" should be no larger than 90% of
52 <li>Android may be used as a descriptor, as long as it is followed by a
53 proper generic term. (Think of "Android" as a term used in place of
78 <p>The Android robot can be used, reproduced, and modified freely in marketing
87 used according to terms described in the Creative Commons 3.0 Attribution License.</em></blockquote>
100 <p>The Android logo may not be used.</p>
102 <p>The custom typeface may not be used.</p>
[all …]
/frameworks/opt/telephony/
DREADME.txt1 This package contains classes used to manage a DataConnection.
17 used. If the caller is on the same thread then a getter
18 is used. This allows the DCAC to be used from any thread
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
Dgradle.properties10 # Specifies the JVM arguments used for the daemon process.
16 # This option should only be used with decoupled projects. More details, visit
/frameworks/data-binding/integration-tests/TestApp/
Dgradle.properties10 # Specifies the JVM arguments used for the daemon process.
16 # This option should only be used with decoupled projects. More details, visit
/frameworks/base/tools/layoutlib/create/
DREADME.txt7 Layoutlib_create generates a JAR library used by the Eclipse graphical layout editor to perform
20 Layoutlib_create uses a few jars from the framework containing the Java code used by Android as
23 These jars can't be used directly in Eclipse as:
38 The ASM library is used to do the bytecode modification using its visitor pattern API.
45 The resulting JAR is used by layoutlib_bridge (a.k.a. "the bridge"), also part of the platform, that
91 layoutlib_create and will be used to interface with the renderer in Eclipse.
106 The TransformClassAdapter is then used to process the potentially renamed class. All protected or
122 references in all classes. This is used to update the references of classes in the java package that
128 class version (version of the JDK used to compile the class) to 50 (corresponding to Java 6), if the
172 - OverrideMethod and its associated MethodListener and MethodAdapter are used to intercept calls to
[all …]
/frameworks/native/opengl/specs/
DEGL_ANDROID_framebuffer_target.txt38 can be used to create an EGLSurface. One implementation, which is used to
82 config may be used to create an EGLSurface from an ANativeWindow for
DEGL_ANDROID_presentation_time.txt102 1. How is the presentation time used?
109 2. How can the current value of the clock that should be used for the
116 3. Should the presentation time be state which is used by eglSwapBuffers,
119 RESOLVED: The presentation time should be new state which is used by
/frameworks/base/libs/hwui/
DShadowTessellator.cpp189 void ShadowTessellator::checkOverflow(int used, int total, const char* bufferName) { in checkOverflow() argument
190 LOG_ALWAYS_FATAL_IF(used > total, "Error: %s overflow!!! used %d, total %d", in checkOverflow()
191 bufferName, used, total); in checkOverflow()
/frameworks/data-binding/integration-tests/App With Spaces/
Dgradle.properties26 # Specifies the JVM arguments used for the daemon process.
32 # This option should only be used with decoupled projects. More details, visit
/frameworks/data-binding/integration-tests/IndependentLibrary/
Dgradle.properties25 # Specifies the JVM arguments used for the daemon process.
31 # This option should only be used with decoupled projects. More details, visit
/frameworks/data-binding/
Dgradle.properties26 # Specifies the JVM arguments used for the daemon process.
32 # This option should only be used with decoupled projects. More details, visit

12345678910>>...24