HomeSort by relevance Sort by last modified time
    Searched full:specified (Results 76 - 100 of 17969) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/ui/views/tabs/
tab_controller.h 36 // Shows a context menu for the tab at the specified point in screen coords.
43 // Returns true if the specified Tab is selected.
46 // Returns true if the specified Tab is pinned.
49 // Returns true if the specified Tab is closeable.
52 // Potentially starts a drag for the specified Tab.
63 // Returns the tab that contains the specified coordinates, in terms of |tab|,
64 // or NULL if there is no tab that contains the specified point.
  /external/clang/test/SemaCXX/
function-extern-c.cpp 27 extern "C" U f3( void ); // expected-warning {{'f3' has C-linkage specified, but returns user-defined type 'U' which is incompatible with C}}
28 extern "C" S f0(void); // expected-warning {{'f0' has C-linkage specified, but returns user-defined type 'S' which is incompatible with C}}
29 extern "C" A f4( void ); // expected-warning {{'f4' has C-linkage specified, but returns user-defined type 'A' which is incompatible with C}}
40 extern "C" struct mypodstruct f12(); // expected-warning {{'f12' has C-linkage specified, but returns incomplete type 'struct mypodstruct' which could be incompatible with C}}
48 extern "C" A f(void); // expected-warning {{'f' has C-linkage specified, but returns incomplete type 'test2::A' which could be incompatible with C}}
77 A bbb(); // expected-warning {{'bbb' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompatible with C}}
78 A ccc() { // expected-warning {{'ccc' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompatible with C}}
  /libcore/luni/src/main/java/javax/crypto/
SecretKeyFactorySpi.java 37 * Generate a secret key from the specified key specification.
43 * if the specified key specification cannot be used to generate
50 * Returns the key specification of the specified secret key.
56 * @return an instance of the specified key specification class.
58 * if the specified secret key cannot be transformed into the
66 * Translates the specified secret key into an instance of the corresponding
73 * if the specified key cannot be translated using this key
  /libcore/luni/src/main/java/javax/net/ssl/
X509KeyManager.java 32 * it with the specified public key type and certificate issuers.
50 * it with the specified public key type and certificate issuers.
67 * Returns the certificate chain for the specified alias.
71 * @return the certificate chain for the specified alias, or {@code null} if
77 * Returns the client aliases for the specified public key type and list of
85 * @return the client aliases for the specified public key type, or
91 * Returns the server aliases for the specified public key type and list of
99 * @return the client aliases for the specified public key type, or
105 * Returns the private key for the specified alias.
109 * @return the private key for the specified alias, or {@code null} if th
    [all...]
  /external/chromium_org/third_party/skia/include/utils/mac/
SkCGUtils.h 26 * Create an imageref from the specified bitmap using the specified colorspace.
33 * Create an imageref from the specified bitmap using the colorspace returned
41 * Draw the bitmap into the specified CG context. The bitmap will be converted
51 * Return a provider that wraps the specified stream. It will become an
  /external/skia/include/utils/mac/
SkCGUtils.h 26 * Create an imageref from the specified bitmap using the specified colorspace.
33 * Create an imageref from the specified bitmap using the colorspace returned
41 * Draw the bitmap into the specified CG context. The bitmap will be converted
51 * Return a provider that wraps the specified stream. It will become an
  /frameworks/base/core/java/android/net/dhcp/
DhcpStateMachine.java 29 * Signals that an offer packet has been received with the specified
50 * specified parameters.
57 * specified parameters.
65 * specified parameters.
72 * specified parameters.
  /libcore/luni/src/main/java/java/security/cert/
CertStore.java 81 * Creates a new {@code CertStore} instance with the specified type and
82 * initialized with the specified parameters.
90 * if no provider can provide the specified certificate store
93 * if the specified parameters cannot be used to initialize this
116 * Creates a new {@code CertStore} instance from the specified provider with
117 * the specified type and initialized with the specified parameters.
127 * if the specified provider cannot provide the requested
130 * if no provider with the specified name can be found.
132 * if the specified parameters cannot be used to initialize thi
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 74 * Creates a set containing all of the elements of the specified
78 * @throws NullPointerException if the specified collection is null
104 * Returns {@code true} if this set contains the specified element.
110 * @return {@code true} if this set contains the specified element
138 * runtime type of the returned array is that of the specified array.
139 * If the set fits in the specified array, it is returned therein.
141 * specified array and the size of this set.
143 * <p>If this set fits in the specified array with room to spare
172 * @throws ArrayStoreException if the runtime type of the specified array
175 * @throws NullPointerException if the specified array is nul
    [all...]
TransferQueue.java 44 * <p>More precisely, transfers the specified element immediately
52 * @throws ClassCastException if the class of the specified element
54 * @throws NullPointerException if the specified element is null
55 * @throws IllegalArgumentException if some property of the specified
63 * <p>More precisely, transfers the specified element immediately
71 * @throws ClassCastException if the class of the specified element
73 * @throws NullPointerException if the specified element is null
74 * @throws IllegalArgumentException if some property of the specified
83 * <p>More precisely, transfers the specified element immediately
87 * returning {@code false} if the specified wait time elapse
    [all...]
  /libcore/luni/src/main/java/java/util/
EnumSet.java 42 * if the specified element type is not and enum type.
56 * Creates an enum set filled with all the enum elements of the specified
61 * @return an enum set with elements solely from the specified element type.
63 * if the specified element type is not and enum type.
78 * @return an enum set with all the elements from the specified enum set.
80 * if the specified element type is not and enum type.
96 * @return an enum set with all the elements from the specified collection.
121 * specified enum set.
124 * the specified enum set.
126 * specified enum set
    [all...]
SortedMap.java 23 * natural ordering of its keys or the ordering given by a specified comparator.
43 * are less than the specified {@code endKey}. Changes to the returned
47 * specified range.
50 * the high boundary of the range specified.
60 * map and the specified key is outside of its range.
74 * greater than or equal to the specified {@code startKey} and less than the
75 * specified {@code endKey}. Changes to the returned sorted map are
79 * specified range.
85 * @return a sorted map with the key from the specified range.
95 * the specified range is outside of its range
    [all...]
  /external/chromium_org/ui/base/
theme_provider.h 53 // Get the image specified by |id|. An implementation of ThemeProvider should
57 // Get the color specified by |id|.
61 // height) specified by |id|.
72 // Reads the image data from the theme file into the specified vector. Only
80 // Gets the NSImage with the specified |id|.
87 // Gets the NSColor with the specified |id|.
90 // Gets the NSColor for tinting with the specified |id|.
93 // Gets the NSGradient with the specified |id|.
96 // Gets the GdkPixbuf with the specified |id|. Returns a pointer to a shared
  /system/core/include/utils/
Printer.h 27 // Print a new line specified by 'string'. \n is appended automatically.
31 // Print a new line specified by the format string. \n is appended automatically.
43 // Create a printer using the specified logcat and log priority
51 // Print the specified line to logcat. No \n at the end is necessary.
66 // Create a printer using the specified file descriptor.
71 // Print the specified line to the file descriptor. \n is appended automatically.
90 // Create a printer using the specified String8 as the target.
95 // Append the specified line to the String8. \n is appended automatically.
106 // Create a printer using the specified printer as the target.
  /external/libvorbis/doc/vorbisfile/
seeking.html 51 <td>This function seeks to a position specified in the compressed bitstream, specified in bytes.</td>
55 <td>This function seeks to a specific audio sample number, specified in pcm samples.</td>
59 <td>This function seeks to the closest page preceding the specified audio sample number, specified in pcm samples.</td>
63 <td>This function seeks to the specific time location in the bitstream, specified in seconds </td>
67 <td>This function seeks to the closest page preceding the specified time position in the bitstream</td>
73 <td>This function seeks to a position specified in the compressed bitstream, specified in bytes. The boundary between the old and new playback positions is crosslapped to eliminate discontinuities. </td>
77 <td>This function seeks to a specific audio sample number, specified in pcm samples. The boundary between the old and new playback positions is crosslapped to elimina (…)
    [all...]
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGenerator.java 77 * specified algorithm.
82 * specified algorithm.
84 * if the specified algorithm is not available.
100 * specified provider for the specified algorithm.
108 * specified algorithm.
110 * if the specified algorithm is not available.
112 * if the specified provider is not available.
132 * specified provider for the specified algorithm
    [all...]
AlgorithmParameters.java 80 * Returns a new instance of {@code AlgorithmParameters} for the specified
85 * @return a new instance of {@code AlgorithmParameters} for the specified
88 * if the specified algorithm is not available.
102 * Returns a new instance of {@code AlgorithmParameters} from the specified
103 * provider for the specified algorithm.
109 * @return a new instance of {@code AlgorithmParameters} for the specified
112 * if the specified algorithm is not available.
114 * if the specified provider is not available.
133 * Returns a new instance of {@code AlgorithmParameters} from the specified
134 * provider for the specified algorithm
    [all...]
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 52 * Retrieves the specified interface config
58 * Sets the configuration of the specified interface
63 * Clear all IP addresses on the specified interface
93 * Retrieves the network routes currently configured on the specified
99 * Add the specified route to the interface.
104 * Remove the specified route from the interface.
109 * Add the specified route to a secondary interface
116 * Remove the specified secondary route.
121 * Set the specified MTU size
145 * Start tethering services with the specified dhcp server rang
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHParameterSpecTest.java 40 * specified in the constructor with the values returned by getters.
52 + "equal to the value specified in the constructor",
55 + "equal to the value specified in the constructor",
61 + "equal to the value specified in the constructor",
64 + "equal to the value specified in the constructor",
67 + "equal to the value specified in the constructor",
  /external/bison/src/
files.h 26 /* File name specified with -o for the output file, or 0 if no -o. */
32 /* Symbol prefix specified with -p, or 0 if no -p. */
35 /* File name prefix specified with -b, or 0 if no -b. */
41 /* File name specified for the output graph. */
44 /* File name specified for the xml output. */
47 /* File name specified with --defines. */
  /external/chromium_org/net/http/
http_byte_range.h 15 // A container class that represents a "range" specified for range request
16 // specified by RFC 2616 Section 14.35.1.
41 // Returns true if the first byte position is specified in this request.
43 // Returns true if the last byte position is specified in this request.
55 // range specified by this object. If the range specified is invalid with
  /external/chromium_org/ui/base/accelerators/
accelerator_manager.h 30 // Register a keyboard accelerator for the specified target. If multiple
51 // Unregister the specified keyboard accelerator for the specified target.
54 // Unregister all keyboard accelerator for the specified target.
57 // Activate the target associated with the specified accelerator.
65 // Returns the AcceleratorTarget that should be activated for the specified
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementationSource.java 17 * implementations, based upon requested features and versions, as specified
27 * specified features.
30 * is specified by its name optionally followed by a space and a
47 * specified features and versions, as specified in .
50 * is specified by its name optionally followed by a space and a
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DHParameterSpecTest.java 40 * specified in the constructor with the values returned by getters.
52 + "equal to the value specified in the constructor",
55 + "equal to the value specified in the constructor",
61 + "equal to the value specified in the constructor",
64 + "equal to the value specified in the constructor",
67 + "equal to the value specified in the constructor",
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
timeval.h 46 /** Calculate the difference between the two specified timeval
53 /** Return the time difference between now and the specified timestamp */
56 /** Add the specified time inmicroseconds to the specified timeval structure */
59 /** Store the specified uec value in the timeval struct. \since 0.9.7 */
62 /** Load the specified tv value and return it in usec. \since 0.9.7 */

Completed in 1539 milliseconds

1 2 34 5 6 7 8 91011>>