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

1 2 3 4 5 6 7 891011>>

  /external/libxml2/include/libxml/
schemasInternals.h 159 * Obsolete, not used anymore.
166 * Obsolete, not used anymore.
173 * Obsolete, not used anymore.
185 * Used by wildcards.
192 * Used by wildcards.
199 * Used by wildcards.
250 struct _xmlSchemaAttribute *next; /* the next attribute (not used?) */
252 const xmlChar *id; /* Deprecated; not used */
253 const xmlChar *ref; /* Deprecated; not used */
254 const xmlChar *refNs; /* Deprecated; not used */
    [all...]
  /external/chromium_org/chrome/browser/resources/print_preview/
metrics.js 9 * Object used to measure usage statistics.
32 // Used when the print destination search widget is shown.
34 // Used when the user selects a print destination.
36 // Used when the print destination search widget is closed without selecting
39 // Used when the Google Cloud Print promotion (shown in the destination
42 // Used when the user chooses to sign-in to their Google account.
52 // Used when the Google Cloud Print pomotion (shown above the pdf preview
55 // Used when the user clicks the "Get started" link in the promotion shown
58 // Used when the user dismisses the promotion shown in
  /external/clang/test/Sema/
static-array.c 25 typedef int td[static 3]; // expected-error {{'static' used in array declarator outside of function prototype}}
29 int a[static 42]; // expected-error {{'static' used in array declarator outside of function prototype}}
31 int b[const 10]; // expected-error {{type qualifier used in array declarator outside of function prototype}}
32 int c[volatile 10]; // expected-error {{type qualifier used in array declarator outside of function prototype}}
33 int d[restrict 10]; // expected-error {{type qualifier used in array declarator outside of function prototype}}
35 int e[static restrict 1]; // expected-error {{'static' used in array declarator outside of function prototype}}
41 [static 42]); // expected-error {{'static' used in non-outermost array type derivation}}
44 [const 42]); // expected-error {{type qualifier used in non-outermost array type derivation}}
46 void k(int (*x)[static 10]); // expected-error {{'static' used in non-outermost array type derivation}}
  /external/clang/test/SemaCXX/
undefined-internal.cpp 11 foo(); // expected-note {{used here}}
12 bar<int>(); // expected-note {{used here}}
23 foo(); // expected-note {{used here}}
24 var = 0; // expected-note {{used here}}
25 bar<int>(); // expected-note {{used here}}
61 a.foo(); // expected-note {{used here}}
63 a.baz(); // expected-note {{used here}}
67 Test() {} // expected-note 2 {{used here}}
83 B<A>::var = 0; // expected-note {{used here}}
84 B<A>::foo(); // expected-note {{used here}
    [all...]
undefined-inline.cpp 6 void test() { f(); } // expected-note{{used here}}
17 void test() { f(); } // expected-note{{used here}}
23 void test() { error_on_zero(0); } // expected-note{{used here}}
33 void test(X &x) { x.f(); } // expected-note{{used here}}
38 void test() { f(); } // no used-here note.
warn-unused-private-field.cpp 23 int unused_; // expected-warning{{private field 'unused_' is not used}}
41 int unused_; // expected-warning{{private field 'unused_' is not used}}
96 attr_used_ = 42; // expected-warning{{'attr_used_' was marked unused but was used}}
102 int primitive_type_; // expected-warning{{private field 'primitive_type_' is not used}}
103 A* pointer_; // expected-warning{{private field 'pointer_' is not used}}
104 int no_initializer_; // expected-warning{{private field 'no_initializer_' is not used}}
105 int default_initializer_; // expected-warning{{private field 'default_initializer_' is not used}}
106 int other_initializer_; // expected-warning{{private field 'other_initializer_' is not used}}
107 int used_, unused_; // expected-warning{{private field 'unused_' is not used}}
108 int in_class_initializer_ = 42; // expected-warning{{private field 'in_class_initializer_' is not used}}
    [all...]
warn-loop-analysis.cpp 17 for (int i; i < 1; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
24 for (int i; i < 1; ) { by_value(i); } // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
31 for (int j; j < 1; ++i) // expected-warning {{variable 'j' used in loop condition not modified in loop body}}
34 for (int j; i < 1; ++j) // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
38 for (int *i, *j; i < j;) {} // expected-warning {{variables 'i' and 'j' used in loop condition not modified in loop body}}
49 for (; i; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
53 for (; i < j; ) {} // expected-warning {{variables 'i' and 'j' used in loop condition not modified in loop body}}
58 for (; i < 5; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
62 for (; i < 5.0; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
66 for (; i == 'a'; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}
    [all...]
  /external/dropbear/libtommath/
bn_mp_mul_2.c 24 if (b->alloc < a->used + 1) {
25 if ((res = mp_grow (b, a->used + 1)) != MP_OKAY) {
30 oldused = b->used;
31 b->used = a->used;
44 for (x = 0; x < a->used; x++) {
64 ++(b->used);
70 tmpb = b->dp + b->used;
71 for (x = b->used; x < oldused; x++) {
bn_mp_and.c 25 if (a->used > b->used) {
29 px = b->used;
35 px = a->used;
44 for (; ix < t.used; ix++) {
bn_fast_mp_montgomery_reduce.c 31 /* get old used count */
32 olduse = x->used;
35 if (x->alloc < n->used + 1) {
36 if ((res = mp_grow (x, n->used + 1)) != MP_OKAY) {
54 /* copy the digits of a into W[0..a->used-1] */
55 for (ix = 0; ix < x->used; ix++) {
59 /* zero the high words of W[a->used..m->used*2] */
60 for (; ix < n->used * 2 + 1; ix++) {
68 for (ix = 0; ix < n->used; ix++)
    [all...]
  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_widget_host_view_mac_delegate.h 29 // Used for history swiping.
34 // Used for history swiping.
40 // Used for history swiping.
44 // scroll gesture handling. Used for history swiping.
47 // Used for continuous spell checking.
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
ConnectionInfo.java 16 * The used key exchange (KEX) algorithm in the latest key exchange.
21 * The currently used crypto algorithm for packets from to the client to the
26 * The currently used crypto algorithm for packets from to the server to the
32 * The currently used MAC algorithm for packets from to the client to the
37 * The currently used MAC algorithm for packets from to the server to the
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_Version.h 13 /* Convert the OMX_VERSION number into a string that can be used, for example, to print it out. */
30 /* They are used in the ARM version strings defined for each domain. */
32 /* The release tag associated with this release of the library. - used for source and object releases */
35 /* The ARM architecture used to build any objects or executables in this release. */
38 /* The ARM Toolchain used to build any objects or executables in this release. */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
armCOMM_Version.h 13 /* Convert the OMX_VERSION number into a string that can be used, for example, to print it out. */
30 /* They are used in the ARM version strings defined for each domain. */
32 /* The release tag associated with this release of the library. - used for source and object releases */
35 /* The ARM architecture used to build any objects or executables in this release. */
38 /* The ARM Toolchain used to build any objects or executables in this release. */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
armCOMM_Version.h 13 /* Convert the OMX_VERSION number into a string that can be used, for example, to print it out. */
30 /* They are used in the ARM version strings defined for each domain. */
32 /* The release tag associated with this release of the library. - used for source and object releases */
35 /* The ARM architecture used to build any objects or executables in this release. */
38 /* The ARM Toolchain used to build any objects or executables in this release. */
  /development/samples/training/basic/ActivityLifecycle/
ant.properties 1 # This file is used to override default values used by the Ant build system.
6 # This file is only used by the Ant script.
build.properties 1 # This file is used to override default values used by the Ant build system.
6 # This file is only used by the Ant script.
  /external/chromium/base/mac/
scoped_aedesc.h 16 // The ScopedAEDesc is used to scope AppleEvent descriptors. On creation,
34 // Used for in parameters.
39 // Used for out parameters.
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.h 5 // This file implements the input method candidate window used on Chrome OS.
15 // CandidateWindowController is used for controlling the input method
19 // deletion of the object, monitoring stops and the view used for
  /external/chromium_org/base/mac/
scoped_aedesc.h 15 // The ScopedAEDesc is used to scope AppleEvent descriptors. On creation,
33 // Used for in parameters.
38 // Used for out parameters.
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_action_constants.cc 5 // String constants used when logging data in the extension activity log.
11 // Keys that may be used in the "other" attribute of an Action.
18 // A string used in place of the real URL when the URL is hidden because it is
activity_action_constants.h 5 // String constants used when logging data in the extension activity log.
12 // Keys that may be used in the "other" attribute of an Action.
19 // A string used in place of the real URL when the URL is hidden because it is
web_request_constants.cc 5 // Constants used when describing request modifications via the WebRequest API
12 // Keys used in the dictionary summarizing an EventResponseDelta for the
23 // Keys and values used for describing cookie modifications.
web_request_constants.h 5 // Constants used when describing request modifications via the WebRequest API
13 // Keys used in the dictionary summarizing an EventResponseDelta for the
24 // Keys and values used for describing cookie modifications.
  /external/chromium_org/chrome/browser/prefs/
browser_prefs.h 18 // Register all prefs that will be used via the local state PrefService.
21 // Register all prefs that will be used via a PrefService attached to a user
26 // Register all prefs that will be used via a PrefService attached to the login

Completed in 1324 milliseconds

1 2 3 4 5 6 7 891011>>