HomeSort by relevance Sort by last modified time
    Searched full:used (Results 1276 - 1300 of 64207) sorted by null

<<51525354555657585960>>

  /external/mesa3d/src/mapi/glapi/gen/
gl_API.dtd 96 output - this parameter is used to store the output of the function.
97 variable_param - name of parameter used to determine the number of
103 (or hardcoded integer) used for the dimensions of pixel data.
104 img_xoff / img_yoff / img_zoff / img_woff - name of parameters used
106 img_format - name of parameter used as the pixel data format.
107 img_type - name of parameter used as the pixel data type.
108 img_target - name of parameter used as a texture target. Non-texture
111 be sent when a NULL pointer is passed. This is only used by
113 img_null_flag - boolean flag to determine if an extra flag is used to
114 determine if a NULL pixel pointer was passed. This is used b
    [all...]
  /frameworks/base/libs/hwui/
Properties.h 24 * This file contains the list of system properties used to configure
38 // Textures used by layers must have dimensions multiples of this number
57 * Debug levels. Debug levels are used as flags.
67 * Used to enable/disable layers update debugging. The accepted values are
73 * Used to enable/disable overdraw debugging.
86 * Used to enable/disable PerfHUD ES profiling. The accepted values
92 * Used to enable/disable non-rectangular clipping debugging.
113 * Used to disable draw operation reordering when deferring draw operations
123 * Used to enable/disable scissor optimization. The accepted values are
138 * Indicates whether PBOs can be used to back pixel buffers
    [all...]
  /frameworks/wilhelm/src/android/
android_defs.h 19 * Used to define the mapping from an OpenSL ES or OpenMAX AL object to an Android
47 * Used to define the states of the OpenSL ES / OpenMAX AL object initialization and preparation
80 // FIXME not used yet, will be used when supporting effects in OpenMAX AL
85 // FIXME not used yet, will be used when supporting effects in OpenMAX AL
109 * used in APlayer::notify() and AMessage::findxxx()
122 * Time value when time is unknown. Used for instance for duration or playback position
161 // The legacy MIME type used elsewhere in the Android framework for AAC ADTS is below:
199 // TODO currently used by SfPlayer, to replace by DataLocator
    [all...]
  /external/chromium_org/chromeos/dbus/ibus/
ibus_component.cc 95 ibus_object_writer.AppendString(""); // The license field is not used.
97 ibus_object_writer.AppendString(""); // The icon path field is not used.
98 ibus_object_writer.AppendString(""); // The layout field is not used.
99 ibus_object_writer.AppendUint32(0); // The engine rank is not used.
100 ibus_object_writer.AppendString(""); // The hotkey field is not used.
101 ibus_object_writer.AppendString(""); // The symbol field is not used.
102 ibus_object_writer.AppendString(""); // The command line field is not used.
198 ibus_object_writer.AppendString(""); // The version string is not used.
199 ibus_object_writer.AppendString(""); // The license field is not used.
201 ibus_object_writer.AppendString(""); // The URL field is not used
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftincrem.h 10 /* This file is part of the FreeType project, and may only be used, */
46 * This section contains various functions used to perform so-called
51 * file. This mode is useful when FreeType is used within another
68 * An opaque type describing a user-provided object used to implement
69 * `incremental' glyph loading within FreeType. This is used to support
93 * A small structure used to contain the basic glyph metrics returned
190 * A function used to release the glyph data bytes returned by a
214 * A function used to retrieve the basic metrics of a given glyph index
231 * This parameter is used for both input and output.
255 * incrementally. Used in @FT_Incremental_InterfaceRec
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene.h 86 unsigned used; member in struct:data_block
105 * This stores bulk data which is used for all memory allocations
148 /** Total memory used by the scene (in bytes). This sums all the
213 size, block->used, DATA_BLOCK_SIZE,
216 if (block->used + size > DATA_BLOCK_SIZE) {
225 ubyte *data = block->data + block->used;
226 block->used += size;
247 block->used, DATA_BLOCK_SIZE,
250 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) {
257 ubyte *data = block->data + block->used;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_dead_code_local.cpp 30 * they're used before the variable is completely reassigned.
60 /* bitmask of xyzw channels written that haven't been used so far. */
71 void kill_channels(ir_variable *const var, int used)
80 entry->available, used);
81 entry->available &= ~used;
106 int used = 0; local
107 used |= 1 << ir->mask.x;
108 used |= 1 << ir->mask.y;
109 used |= 1 << ir->mask.z;
110 used |= 1 << ir->mask.w
    [all...]
  /external/freetype/include/freetype/
ftincrem.h 10 /* This file is part of the FreeType project, and may only be used, */
46 * This section contains various functions used to perform so-called
51 * file. This mode is useful when FreeType is used within another
68 * An opaque type describing a user-provided object used to implement
69 * `incremental' glyph loading within FreeType. This is used to support
93 * A small structure used to contain the basic glyph metrics returned
190 * A function used to release the glyph data bytes returned by a
214 * A function used to retrieve the basic metrics of a given glyph index
231 * This parameter is used for both input and output.
255 * incrementally. Used in @FT_Incremental_InterfaceRec
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h 86 unsigned used; member in struct:data_block
105 * This stores bulk data which is used for all memory allocations
148 /** Total memory used by the scene (in bytes). This sums all the
213 size, block->used, DATA_BLOCK_SIZE,
216 if (block->used + size > DATA_BLOCK_SIZE) {
225 ubyte *data = block->data + block->used;
226 block->used += size;
247 block->used, DATA_BLOCK_SIZE,
250 if (block->used + size + alignment - 1 > DATA_BLOCK_SIZE) {
257 ubyte *data = block->data + block->used;
    [all...]
  /external/mesa3d/src/glsl/
opt_dead_code_local.cpp 30 * they're used before the variable is completely reassigned.
60 /* bitmask of xyzw channels written that haven't been used so far. */
71 void kill_channels(ir_variable *const var, int used)
80 entry->available, used);
81 entry->available &= ~used;
106 int used = 0; local
107 used |= 1 << ir->mask.x;
108 used |= 1 << ir->mask.y;
109 used |= 1 << ir->mask.z;
110 used |= 1 << ir->mask.w
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Constants.java 29 * The private IME option used to indicate that no microphone should be shown for a given
39 * The private IME option used to indicate that no microphone should be shown for a given
46 * The private IME option used to indicate that no settings key should be shown for a given
52 * The private IME option used to indicate that the given text field needs ASCII code points
67 * The subtype mode used to indicate that the subtype is a keyboard.
73 * The subtype extra value used to indicate that the subtype keyboard layout is capable
79 * The subtype extra value used to indicate that the subtype keyboard layout is capable
84 * The subtype extra value used to indicate that the subtype require network connection
90 * The subtype extra value used to indicate that the subtype display name contains "%s"
98 * The subtype extra value used to indicate that the subtype keyboard layout set name
    [all...]
  /system/core/include/cutils/
trace.h 38 * following ATRACE_TAG_* macros. The trace tag is used to filter tracing in
101 * debug.atrace.tags.enableflags. Can be used as a sysprop change callback.
114 * Set whether tracing is enabled for the current process. This is used to
154 * It can be used as a guard condition around more expensive trace calculations.
167 * It can be used as a guard condition around more expensive trace calculations.
176 * Trace the beginning of a context. name is used to identify the context.
177 * This is often used to time function execution.
208 * simultaneous events. The name and cookie used to begin an event must be
209 * used to end it.
246 * Traces an integer counter value. name is used to identify the counter
    [all...]
  /external/libmtp/doc/
Doxyfile.in 3 # This file describes the settings to be used by the documentation system
22 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
24 # if some version control system is used.
29 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
32 # where doxygen was started. If left blank the current directory will be used.
45 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
72 # that is used to form the text in various listings. Each string
74 # stripped from the text and the result after processing the whole list, is used
75 # as the annotated text. Otherwise, the brief description is used as-is. If left
76 # blank, the following values are used ("$name" is automatically replaced with the
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 38 * This pointer can be used to iterate over all credentials. The head
46 * This identifier is used as a unique identifier for each credential
58 * (0). This field can be used to give higher priority for credentials
99 * This field is used with Interworking networking selection for a case
100 * where client certificate/private key is used for authentication
101 * (EAP-TLS). Full path to the file should be used since working
104 * Alternatively, a named configuration blob can be used by setting
112 * When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be
115 * used since working directory may change when wpa_supplicant is run
118 * Windows certificate store can be used by leaving client_cert out an
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 120 * Sets the HTTP proxy that will be used by connections created by this
135 * Sets the proxy selection policy to be used if no {@link #setProxy proxy}
141 * proxy selector will be used.
153 * Sets the cookie handler to be used to read outgoing cookies and write
157 * cookie handler will be used.
169 * Sets the response cache to be used to read and write cached responses.
172 * response cache will be used.
194 * Sets the socket factory used to secure HTTPS connections.
197 * system-wide default} SSL socket factory will be used.
209 * Sets the verifier used to confirm that response certificates apply t
    [all...]
  /frameworks/base/docs/html/guide/topics/resources/
color-list-resource.jd 24 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 a button
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 a button
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 a
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 thi
    [all...]
  /development/samples/XmlAdapters/res/values/
attrs.xml 19 <!-- Adapter used to bind cursors. -->
27 <!-- Layout resource used to display each row from the cursor. Mandatory. -->
31 <!-- Attributes used in bind items for XML cursor adapters. -->
53 <!-- Attributes used in select items for XML cursor adapters.-->
59 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. -->
67 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. -->
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
constants.rb 19 3. The name of the author may not be used to endorse or promote products
41 token names used by ANTLR throughout the runtime library.
53 # flag used by recognizers during memoization to
57 # flag used by recognizers during memoization to indicate
61 # built-in token types used internally by ANTLR3
75 # End of Rule (used internally by DFAs)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMConstants.java 25 * DOM Constants used by the DOM Level 3 LSSerializer implementation.
37 // The namespace used to qualified DOM Level 3 DOMConfiguration parameters
103 // The xsl:output 'indent' property used in LSSerializer
106 // The xsl:output 'indent' property used in LSSerializer
109 // The xsl:output 'omit-xml-declaration' property used in LSSerializer
112 // The xerces serializer specific 'omit-xml-declaration' property used in LSSerializer
  /external/chromium_org/media/filters/
pipeline_integration_test_base.h 27 // Empty MD5 hash string. Used to verify empty video tracks.
30 // Empty hash string. Used to verify empty audio tracks.
34 // base renderer implementations are used to verify pipeline functionality. The
35 // renderers used in these tests rely heavily on the AudioRendererBase &
36 // VideoRendererBase implementations which contain a majority of the code used
37 // in the real AudioRendererImpl & SkCanvasVideoRenderer implementations used in
  /external/chromium_org/remoting/protocol/
third_party_host_authenticator.h 27 // |V2Authenticator|, which is used to establish the encrypted connection.
33 // authentication finishes. |shared_secret| should be used by the host to
49 // URL sent to the client, to be used by its |TokenFetcher| to get a token.
61 // Creates a TokenValidator. |local_jid| and |remote_jid| are used to create
69 // used by the underlying V2Authenticator to create the SSL channels.
71 // and is used to obtain the shared secret.
  /external/chromium_org/sync/protocol/
search_engine_specifics.proto 48 // ID 13 reserved - previously used by |logo_id|, now deprecated.
49 // Obsolete field. This used to represent whether or not this search engine
54 // The parameterized URL that is used for Instant results.
56 // ID 16 reserved - previously used by |id|, now deprecated.
62 // A list of URL patterns that can be used, in addition to |url| and
72 // The following post_params are comma-separated lists used to specify the
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentParser.h 46 // insert is used by document.write.
49 // appendBytes and flush are used by DocumentWriter (the loader).
64 // FIXME: processingData() is only used by DocumentLoader::isLoadingInAPISense
66 // used to implement it.
80 // prepareToStop() is used when the EOF token is encountered and parsing is to be
84 // stopParsing() is used when a load is canceled/stopped.
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/chromium/
SQLiteFileSystemChromium.cpp 15 * contributors may be used to endorse or promote products derived from
57 // Not used by Chromium's DatabaseTracker implementation
64 // Not used by Chromium's DatabaseTracker implementation
71 // Not used by Chromium's DatabaseTracker implementation
78 // Not used by Chromium's DatabaseTracker implementation
85 // Not used by Chromium's DatabaseTracker implementation
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadRestrictionVerifier.h 15 * contributors may be used to endorse or promote products derived from
46 // Verifies that a class is used in a way that respects its lack of thread-safety.
47 // The default mode is to verify that the object will only be used on a single thread. The
160 // Used by SingleThreadVerificationMode
163 // Used by MutexVerificationMode.
167 // Used by SingleDispatchQueueVerificationMode.

Completed in 1883 milliseconds

<<51525354555657585960>>