/external/chromium_org/chrome/browser/ui/webui/ntp/ |
suggestions_source.h | 34 // selected by the combiner. If a source weight is x and the total weight of 35 // all the sources is y, then the combiner will select x/y items from it. 52 // Sets the combiner holding this suggestion source. This method can only 54 virtual void SetCombiner(SuggestionsCombiner* combiner) = 0;
|
suggestions_source_discovery.h | 36 virtual void SetCombiner(SuggestionsCombiner* combiner) OVERRIDE; 39 // Our combiner.
|
suggestions_source_discovery.cc | 28 // The weight used by the combiner to determine which ratio of suggestions 87 void SuggestionsSourceDiscovery::SetCombiner(SuggestionsCombiner* combiner) { 89 combiner_ = combiner;
|
suggestions_source_top_sites.h | 37 virtual void SetCombiner(SuggestionsCombiner* combiner) OVERRIDE; 54 // Our combiner.
|
suggestions_source_top_sites.cc | 24 // The weight used by the combiner to determine which ratio of suggestions 80 void SuggestionsSourceTopSites::SetCombiner(SuggestionsCombiner* combiner) { 82 combiner_ = combiner;
|
suggestions_combiner.cc | 81 SuggestionsCombiner* combiner = new SuggestionsCombiner(delegate, profile); local 87 combiner->AddSource(new SuggestionsSourceDiscovery(*it)); 90 return combiner;
|
/external/llvm/test/Transforms/InstCombine/ |
2003-06-05-BranchInvertInfLoop.ll | 1 ; This testcase causes an infinite loop in the instruction combiner,
|
2004-03-13-InstCombineInfLoop.ll | 1 ; This testcase caused the combiner to go into an infinite loop, moving the
|
2011-02-14-InfLoop.ll | 1 ; This testcase causes an infinite loop in the instruction combiner,
|
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/ |
SubjectDomainCombinerTest.java | 53 SubjectDomainCombiner combiner = new SubjectDomainCombiner(subject); local 55 assertSame("Subject", subject, combiner.getSubject()); 81 SubjectDomainCombiner combiner = new SubjectDomainCombiner(subject); local 86 assertNull(combiner.combine(null, null)); 105 pd = combiner.combine(new ProtectionDomain[] { domain }, null); 116 pd = combiner.combine(null, new ProtectionDomain[] { domain });
|
/external/pixman/test/ |
combiner-test.c | 131 pixman_combine_float_func_t combiner; local 136 combiner = lookup_combiner (impl, op, ca); 142 combiner (impl, op,
|
Makefile.sources | 8 combiner-test \
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
DeadKeyCombiner.java | 25 * A combiner that handles dead keys. 27 public class DeadKeyCombiner implements Combiner { 32 if (null == event) return null; // Just in case some combiner is broken
|
Combiner.java | 22 public interface Combiner {
|
/external/smack/src/org/apache/harmony/javax/security/auth/ |
SubjectDomainCombiner.java | 39 * Creates a domain combiner for the entity provided in {@code subject}. 42 * the entity to which this domain combiner is associated. 53 * Returns the entity to which this domain combiner is associated. 55 * @return the entity to which this domain combiner is associated.
|
/external/llvm/test/CodeGen/X86/ |
combiner-aa-0.ll | 1 ; RUN: llc < %s -march=x86-64 -combiner-global-alias-analysis -combiner-alias-analysis
|
combiner-aa-1.ll | 1 ; RUN: llc < %s --combiner-alias-analysis --combiner-global-alias-analysis
|
and-or-fold.ll | 4 ; The dag combiner should fold together (x&127)|(y&16711680) -> (x|y)&c1
|
2010-09-17-SideEffectsInChain.ll | 1 ; RUN: llc < %s -combiner-alias-analysis -march=x86-64 -mcpu=core2 | FileCheck %s
|
/libcore/luni/src/test/java/libcore/java/security/ |
AccessControllerTest.java | 40 throw new AssertionFailedError("Expected combiner to be unused"); 55 // Calling doPrivileged again would have exercised the combiner
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/ |
nv04_state_frag.c | 79 /* Get the combiner source for the specified EXT_texture_env_combine 113 /* Get the (possibly inverted) combiner input mapping for the 163 /* Bind the combiner input <in> to the combiner source <src>, 169 /* Bind the combiner input <in> to the EXT_texture_env_combine 259 /* Compute the new combiner state. */
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nv04_state_frag.c | 79 /* Get the combiner source for the specified EXT_texture_env_combine 113 /* Get the (possibly inverted) combiner input mapping for the 163 /* Bind the combiner input <in> to the combiner source <src>, 169 /* Bind the combiner input <in> to the EXT_texture_env_combine 259 /* Compute the new combiner state. */
|
/external/llvm/test/CodeGen/AArch64/ |
complex-copy-noneon.ll | 3 ; The DAG combiner decided to use a vector load/store for this struct copy
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
CombinerHeightMap.java | 213 * <code>setMode</code> sets the mode of the combiner. This may either
215 * @param mode the mode of the combiner.
227 * two other heightmaps. The conditions of the combiner determine the
264 logger.info("Created heightmap using Combiner");
|
/libcore/luni/src/main/java/java/security/ |
AccessControlContext.java | 39 public AccessControlContext(AccessControlContext acc, DomainCombiner combiner) {
|