/external/chromium_org/net/base/ |
connection_type_histograms.cc | 15 // We use two groups of counters. In the first group (counter1), each counter 17 // of that type during that session. In the second group (counter2), each 21 // Each histogram has an unused bucket at the end to allow seamless future
|
/external/chromium_org/remoting/base/ |
socket_reader.h | 19 // SocketReader reads data from a socket and then calls a callback for each 25 // Callback that is called for each finished read. |data| may be set to NULL 33 // Starts reading from |socket|. |read_result_callback| is called for each
|
/external/chromium_org/sync/util/ |
data_type_histogram_unittest.cc | 16 // Create a histogram of type HISTOGRAM_COUNTS for each model type. Nothing 28 // Create a histogram of type SYNC_FREQ_HISTOGRAM for each model type. Nothing 41 // Create a histogram of type UMA_HISTOGRAM_ENUMERATION for each model type.
|
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/ |
Preprocessor.h | 31 // If length is NULL, each string is assumed to be null terminated. 33 // a string length for each of the corresponding elements of string. 34 // Each element in the length array may contain the length of the
|
/external/jpeg/ |
jchuff.h | 25 /* Derived data constructed for each Huffman table */ 28 unsigned int ehufco[256]; /* code for each symbol */ 29 char ehufsi[256]; /* length of code for each symbol */
|
/external/lzma/CPP/7zip/Archive/Common/ |
CoderMixer2MT.h | 30 for each coder
34 for each file
37 for each coder
|
/external/qemu/distrib/jpeg-6b/ |
jchuff.h | 25 /* Derived data constructed for each Huffman table */ 28 unsigned int ehufco[256]; /* code for each symbol */ 29 char ehufsi[256]; /* length of code for each symbol */
|
/hardware/libhardware_legacy/audio/ |
audio_policy.conf | 16 # device. Each hw module node is named after the corresponding hw module library base name. 20 # Each module descriptor contains one or more output profile descriptors and zero or more 21 # input profile descriptors. Each profile lists all the parameters supported by a given output
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_functiontestcase.py | 16 # prior to each test. Likewise, if a tearDown() method is defined, the 17 # test runner will invoke that method after each test. In the example, 18 # setUp() was used to create a fresh sequence for each test." 41 # prior to each test. Likewise, if a tearDown() method is defined, the 42 # test runner will invoke that method after each test. In the example, 43 # setUp() was used to create a fresh sequence for each test." 67 # prior to each test. Likewise, if a tearDown() method is defined, the 68 # test runner will invoke that method after each test. In the example, 69 # setUp() was used to create a fresh sequence for each test." 93 # prior to each test. Likewise, if a tearDown() method is defined, th [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_functiontestcase.py | 16 # prior to each test. Likewise, if a tearDown() method is defined, the 17 # test runner will invoke that method after each test. In the example, 18 # setUp() was used to create a fresh sequence for each test." 41 # prior to each test. Likewise, if a tearDown() method is defined, the 42 # test runner will invoke that method after each test. In the example, 43 # setUp() was used to create a fresh sequence for each test." 67 # prior to each test. Likewise, if a tearDown() method is defined, the 68 # test runner will invoke that method after each test. In the example, 69 # setUp() was used to create a fresh sequence for each test." 93 # prior to each test. Likewise, if a tearDown() method is defined, th [all...] |
/external/bluetooth/bluedroid/stack/include/ |
dyn_mem.h | 31 ** Define memory usage for each CORE component (if not defined in bdroid_buildcfg.h) 32 ** The default for each component is to use static memory allocations. 87 ** Define memory usage for each PROFILE component (if not defined in bdroid_buildcfg.h) 88 ** The default for each component is to use static memory allocations. 172 ** The default for each component is to use static memory allocations.
|
/external/chromium/chrome/browser/history/ |
snippet.h | 18 // Each MatchPosition is the [begin, end) positions of a match within a 25 // The information is encoded in the string as a set of matches, where each 27 // match. Each element of the match is separated by a space, as is each match 30 // This method adds the start and end of each match whose column is
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/ |
table2CSV.js | 9 in the table, the parameters rowNum and index in $().find().each() or 10 $().filter().find.each() help to ignore non-data cells. 34 $(el).filter(':visible').find('th').each(function(index) { 43 $(el).find('tr').each(function(index) { 46 $(this).filter(':visible').find('td').each(function(index) {
|
/external/chromium_org/chrome/browser/history/ |
snippet.h | 17 // Each MatchPosition is the [begin, end) positions of a match within a 24 // The information is encoded in the string as a set of matches, where each 26 // match. Each element of the match is separated by a space, as is each match 29 // This method adds the start and end of each match whose column is
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/util/ |
table2CSV.js | 9 in the table, the parameters rowNum and index in $().find().each() or 10 $().filter().find.each() help to ignore non-data cells. 34 $(el).filter(':visible').find('th').each(function(index) { 43 $(el).find('tr').each(function(index) { 46 $(this).filter(':visible').find('td').each(function(index) {
|
/external/chromium_org/webkit/browser/fileapi/ |
file_observers.h | 19 // OnStartUpdate and OnEndUpdate are called once for each target url 28 // OnUpdate() is called each time the |url| is updated but works only for 59 // Each method of this class is called once per file/directory is created, 60 // removed or modified. For recursive operations each method is called for 61 // each subdirectory/subfile. Currently ChangeObserver is only supported
|
recursive_operation_delegate.h | 25 // In short, each subclass should override ProcessFile and ProcessDirectory 29 // Each subclass can call NewNestedOperation to create a new file system 49 // This is called each time a file is found while recursively 54 // This is called each time a directory is found while recursively 61 // This will call ProcessFile and ProcessDirectory on each directory or file.
|
/external/junit/src/org/junit/internal/ |
TextListener.java | 68 for (Failure each : failures) 69 printFailure(each, "" + i++); 72 protected void printFailure(Failure each, String prefix) { 73 getWriter().println(prefix + ") " + each.getTestHeader()); 74 getWriter().print(each.getTrace());
|
/external/junit/src/org/junit/matchers/ |
JUnitMatchers.java | 5 import org.junit.internal.matchers.Each; 41 * each matcher in elementMatcher (this may be one element matching all matchers, 42 * or different elements matching each matcher) 53 return Each.each(elementMatcher);
|
/external/smack/src/org/jivesoftware/smackx/ |
NodeInformationProvider.java | 33 * requested each time this XMPPP client receives a disco info or items requests on the 34 * given node. each time this XMPPP client receives a disco info or items requests on the 44 * answer an Item for each joined room when asked for the rooms where the use has joined. 53 * should answer with each feature supported by the client version 63 * category automation and type command-node for each command.
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
PixelUtils.java | 29 * stride (in pixels) between each pixel, and the stride (in pixels) between each row. The row 30 * stride is measured as the number of pixels between the start of each row.</p> 41 * @param pixStride The stride between each pixel (in pixels) 42 * @param rowStride The stride between the start of each row (in pixels)
|
/external/chromium/chrome/browser/resources/file_manager/js/ |
util.js | 41 * error. The FileError constructor has a named property for each possible 61 * Utility function to invoke callback once for each entry in dirEntry. 64 * @param {function(Entry)} callback The function to invoke for each entry in 87 * The successCallback will be invoked once for each directory object 88 * found. The errorCallback will be invoked once for each 99 * each DirEntry found. Also invoked once with null at the end of the 102 * for each path that cannot be resolved.
|
/external/chromium_org/third_party/opus/src/celt/ |
bands.h | 39 /** Compute the amplitude (sqrt energy) in each of the bands 42 * @param bands Square root of the energy for each band (returned) 48 /** Normalise each band of X such that the energy in each band is 52 * @param bands Square root of the energy for each band 56 /** Denormalise each band of X to restore full amplitude 59 * @param bands Square root of the energy for each band
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
BinaryCodec.java | 77 * @return 0 and 1 ascii character bytes one for each bit of the argument 89 * @return 0 and 1 ascii character chars one for each bit of the argument 102 * Decodes a byte array where each byte represents an ascii '0' or '1'. 105 * each byte represents an ascii '0' or '1' 106 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument 128 * Decodes a byte array where each byte represents an ascii '0' or '1'. 131 * each byte represents an ascii '0' or '1' 132 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument 140 * Decodes a String where each char of the String represents an ascii '0' or '1'. 144 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argumen [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
display-profiler-output | 77 @topCounts.each { 86 @topCounts.each { 100 counts.each { 115 counts.each { 127 @osrExits.each { 144 json["bytecode"].each { 175 def each method in class:Bytecodes 176 @bytecode.values.sort{|a, b| a.bytecodeIndex <=> b.bytecodeIndex}.each { 247 each { 276 def each method in class:ProfiledBytecodes [all...] |