HomeSort by relevance Sort by last modified time
    Searched full:each (Results 151 - 175 of 23250) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/generic/goldfish/opengl/system/egl/
ClientAPIExts.cpp 26 // define function pointer type for each extention function
41 // Define static table to store the function value for each
43 // ClientAPIExts::initClientFuncs function after each client API has been
61 // This function initialized each entry in the s_client_extensions
79 // And now query the GLES library for each proc address
87 // Define implementation for each extension function which checks
  /device/lge/mako/
audio_effects.conf 1 # List of effect libraries to load. Each library element must contain a "path" element
29 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
95 # The pre processor configuration consists in a list of elements each describing
98 # Each input source element contains a list of effects elements. The name of the effect
100 # Each effect element may optionally contain a list of parameters and their
102 # A parameter is defined by a "param" element and a "value" element. Each of these elements
audio_policy.conf 12 # device. Each hw module node is named after the corresponding hw module library base name.
16 # Each module descriptor contains one or more output profile descriptors and zero or more
17 # input profile descriptors. Each profile lists all the parameters supported by a given output
  /device/samsung/manta/
audio_effects.conf 1 # List of effect libraries to load. Each library element must contain a "path" element
29 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
103 # The pre processor configuration consists in a list of elements each describing
106 # Each input source element contains a list of effects elements. The name of the effect
108 # Each effect element may optionally contain a list of parameters and their
110 # A parameter is defined by a "param" element and a "value" element. Each of these elements
audio_policy.conf 12 # device. Each hw module node is named after the corresponding hw module library base name.
16 # Each module descriptor contains one or more output profile descriptors and zero or more
17 # input profile descriptors. Each profile lists all the parameters supported by a given output
  /external/chromium_org/third_party/icu/source/test/perf/
README 10 displays the statistical analysis of the test in an easy to read HTML web page. Each test will
46 (e.g. convperf (Conversion tests)). Go to each directory and execute the perl script for each test
55 Note: After building the performance tests, it is a good idea to execute each C program to ensure that each
60 Note: Some tests take a while depending on the machine it is running on so a script to run each performance test's
  /external/icu4c/test/perf/
README 10 displays the statistical analysis of the test in an easy to read HTML web page. Each test will
46 (e.g. convperf (Conversion tests)). Go to each directory and execute the perl script for each test
55 Note: After building the performance tests, it is a good idea to execute each C program to ensure that each
60 Note: Some tests take a while depending on the machine it is running on so a script to run each performance test's
  /frameworks/base/core/java/android/app/backup/
BackupAgentHelper.java 25 * heterogeneous data sets within the backup data, each identified by a unique
27 * dispatches to one or more installed {@link BackupHelper} objects, each
33 * install the handlers for each kind of data it wishes to manage within its backups.
61 * Run the backup process on each of the configured handlers.
70 * Run the restore process on each of the configured handlers.
84 * Add a helper for a given data subset to the agent's configuration. Each helper
  /frameworks/base/core/java/android/widget/
SimpleExpandableListAdapter.java 30 * Maps. Each entry in the ArrayList corresponds to one group in the expandable
31 * list. The Maps contain the data for each row. You also specify an XML file
60 * @param groupData A List of Maps. Each entry in the List corresponds to
61 * one group in the list. The Maps contain the data for each
65 * associated with each group.
73 * @param childData A List of List of Maps. Each entry in the outer List
74 * corresponds to a group (index by group position), each entry
78 * contains the data for each child, and should include all the
81 * associated with each child.
105 * @param groupData A List of Maps. Each entry in the List corresponds t
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
ClientAPIExts.cpp 28 // define function pointer type for each extention function
43 // Define static table to store the function value for each
45 // ClientAPIExts::initClientFuncs function after each client API has been
63 // This function initialized each entry in the s_client_extensions
81 // And now query the GLES library for each proc address
89 // Define implementation for each extension function which checks
  /device/asus/flo/
audio_policy.conf 12 # device. Each hw module node is named after the corresponding hw module library base name.
16 # Each module descriptor contains one or more output profile descriptors and zero or more
17 # input profile descriptors. Each profile lists all the parameters supported by a given output
  /device/asus/grouper/
audio_policy.conf 12 # device. Each hw module node is named after the corresponding hw module library base name.
16 # Each module descriptor contains one or more output profile descriptors and zero or more
17 # input profile descriptors. Each profile lists all the parameters supported by a given output
  /external/chromium/chrome/browser/metrics/
metrics_response.h 24 // Each flag (except NONE) defined here represents one type of metrics
41 // Returns the maximum number of event that the server wants in each
46 // in each log (in seconds). (If 0, no value was provided.)
  /external/chromium_org/cc/output/
filter_operations.h 57 // If |from| is of the same size as this, where in each position, the filter
59 // FilterOperations formed by linearly interpolating at each position a
63 // where the filter at each position is a no-op filter of the same type
  /external/chromium_org/chrome/browser/policy/
policy_bundle.h 38 // Merges the PolicyMaps of |this| with those of |other| for each namespace
41 // Each policy in each PolicyMap is replaced only if the policy from |other|
  /external/chromium_org/native_client_sdk/src/examples/
Makefile 27 # Macro defines a phony target for each example, and adds it to a list of
30 # Note: We use targets for each project (instead of an explicit recipe) so
31 # each project can be built in parallel.
  /external/chromium_org/tools/gn/
ninja_target_writer.h 37 // Writs the rules for compiling each source, writing all output files
41 // to each build step. This is added to each one.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Main.java 31 * <li>A php file for each component including scenario fingerprints and status table with links to a scenario data file</li>
32 * <li>A data HTML file for each config of each scenario included in status table</li>
  /external/junit/src/junit/framework/
TestSuite.java 149 for (Method each : superClass.getDeclaredMethods())
150 addTestMethod(each, names, theClass);
178 for (Class<?> each : classes)
179 addTest(testCaseForClass(each));
182 private Test testCaseForClass(Class<?> each) {
183 if (TestCase.class.isAssignableFrom(each))
184 return new TestSuite(each.asSubclass(TestCase.class));
186 return warning(each.getCanonicalName() + " does not extend TestCase");
217 for (Test each : fTests)
218 count+= each.countTestCases()
    [all...]
  /external/kernel-headers/original/asm-x86/
user32.h 14 u32 st_space[20]; /* 8*10 bytes for each FP-reg = 80 bytes */
29 int st_space[32]; /* 8*16 bytes for each FP-reg = 128 bytes */
30 int xmm_space[32]; /* 8*16 bytes for each XMM-reg = 128 bytes */
  /external/qemu/docs/
AUDIO.TXT 13 Each voice can have its own settings in terms of sample size, endianess, rate, etc...
19 2/ For each emulated output, call AUD_open_out() to create a SWVoiceOut object.
20 3/ For each emulated input, call AUD_open_in() to create a SWVoiceIn object.
25 Each SWVoiceOut is associated to a single HWVoiceOut, each SWVoiceIn is
34 Each HWVoiceOut has the following too:
62 - A 'run_out' method that is called each time to tell the output backend to
76 Each SWVoiceOut has the following:
128 | callback which is itself called on each audio timer
134 | invoked from the 'run_out' method, also called on each
    [all...]
  /development/samples/browseable/ListPopupMenu/
_index.jd 10 each list item contains a dropdown menu.</p>
  /development/tools/idegen/
excluded-paths 6 # document the reason for each exclusion.
13 # generate individual modules, each with their own dependencies, much like the
51 # Each test has a Main.java in the default package, so they conflict with
52 # each other.
  /external/chromium/chrome/common/
content_settings_types.h 10 // of controls over each of these.
  /external/chromium/chrome/common/extensions/docs/examples/api/omnibox/simple-example/
background.html 2 // This event is fired each time the user updates the text in the omnibox,

Completed in 917 milliseconds

1 2 3 4 5 67 8 91011>>