/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/cycle/ |
CycleTest.java | 35 SelfCycleComponent selfCycleComponent = DaggerCycles_SelfCycleComponent.create(); 42 CycleComponent cycleComponent = DaggerCycles_CycleComponent.create(); 52 SelfCycleComponent selfCycleComponent = DaggerCycles_SelfCycleComponent.create(); 59 CycleComponent cycleComponent = DaggerCycles_CycleComponent.create(); 69 ChildCycleComponent childCycleComponent = DaggerCycles_CycleComponent.create().child(); 77 CycleMapComponent cycleMapComponent = DaggerCycles_CycleMapComponent.create();
|
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/writer/ |
ClassNameTest.java | 38 .isEqualTo(ClassName.create("java.lang", "String")); 47 .isEqualTo(ClassName.create("java.util", ImmutableList.of("Map"), "Entry")); 50 ClassName.create("dagger.internal.codegen.writer", 56 .isEqualTo(ClassName.create("", "SomeClass")); 58 .isEqualTo(ClassName.create("", ImmutableList.of("SomeClass"), "Nested")); 60 .isEqualTo(ClassName.create("", ImmutableList.of("SomeClass", "Nested"), "EvenMore"));
|
/external/deqp/modules/glshared/ |
glsVertexArrayTests.hpp | 244 static WrappedType<Type> create (Type value) { WrappedType<Type> v; v.m_value = value; return v; } function in class:deqp::gls::GLValue::WrappedType 248 inline WrappedType<Type> operator+ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value + other.getValue())); } 249 inline WrappedType<Type> operator* (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value * other.getValue())); } 250 inline WrappedType<Type> operator/ (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value / other.getValue())); } 251 inline WrappedType<Type> operator% (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value % other.getValue())); } 252 inline WrappedType<Type> operator- (const WrappedType<Type>& other) const { return WrappedType<Type>::create((Type)(m_value - other.getValue())); } 277 static WrappedFloatType<Type> create (Type value) { WrappedFloatType<Type> v; v.m_value = value; return v; } function in class:deqp::gls::GLValue::WrappedFloatType 281 inline WrappedFloatType<Type> operator+ (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value + other.getValue())); } 282 inline WrappedFloatType<Type> operator* (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value * other.getValue())); } 283 inline WrappedFloatType<Type> operator/ (const WrappedFloatType<Type>& other) const { return WrappedFloatType<Type>::create((Type)(m_value / other.getValue())); 321 static Half create (float value) { Half h; h.m_value = floatToHalf(value); return h; } function in class:deqp::gls::GLValue::Half 355 static Fixed create (deInt32 value) { Fixed v; v.m_value = value; return v; } function in class:deqp::gls::GLValue::Fixed [all...] |
/external/emma/core/java12/com/vladium/emma/filter/ |
IInclExclFilter.java | 38 public static IInclExclFilter create (final String specs1, final String separators, final String [] specs2) method in class:IInclExclFilter.Factory 41 return create (specs2); 63 return create (specs); 67 public static IInclExclFilter create (final String [] specs) method in class:IInclExclFilter.Factory 98 public static IInclExclFilter create (final String [] inclusions, method in class:IInclExclFilter.Factory 104 public static IInclExclFilter create (final List /* String */ inclusions, method in class:IInclExclFilter.Factory
|
/external/guava/guava/src/com/google/common/cache/ |
AbstractCache.java | 209 private final LongAddable hitCount = LongAddables.create(); 210 private final LongAddable missCount = LongAddables.create(); 211 private final LongAddable loadSuccessCount = LongAddables.create(); 212 private final LongAddable loadExceptionCount = LongAddables.create(); 213 private final LongAddable totalLoadTime = LongAddables.create(); 214 private final LongAddable evictionCount = LongAddables.create();
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
RateLimiter.java | 59 * final RateLimiter rateLimiter = RateLimiter.create(2.0); // rate is "2 permits per second" 72 * final RateLimiter rateLimiter = RateLimiter.create(5000.0); // rate = 5000 permits per second 115 public static RateLimiter create(double permitsPerSecond) { method in class:RateLimiter 129 return create(SleepingStopwatch.createFromSystemTimer(), permitsPerSecond); 137 static RateLimiter create(SleepingStopwatch stopwatch, double permitsPerSecond) { method in class:RateLimiter 167 public static RateLimiter create(double permitsPerSecond, long warmupPeriod, TimeUnit unit) { method in class:RateLimiter 169 return create(SleepingStopwatch.createFromSystemTimer(), permitsPerSecond, warmupPeriod, unit); 173 static RateLimiter create( method in class:RateLimiter
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestsForQueuesInJavaUtil.java | 81 @Override public Queue<String> create(String[] elements) { 99 @Override public Queue<String> create(String[] elements) { 116 @Override public Queue<String> create(String[] elements) { 133 @Override public Queue<String> create(String[] elements) { 155 @Override public Queue<String> create(String[] elements) { 171 @Override public Queue<String> create(String[] elements) {
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/ |
BulletConstructor.java | 29 /** @author xoppa Holds the information necessary to create a bullet btRigidBody. This class should outlive the btRigidBody (entity) 38 create(model, mass, shape); method 48 create(model, mass, width, height, depth); method 60 create(model, mass, boundingBox.getWidth(), boundingBox.getHeight(), boundingBox.getDepth()); method 68 private void create (final Model model, final float mass, final float width, final float height, final float depth) { method in class:BulletConstructor 69 // Create a simple boxshape 70 create(model, mass, new btBoxShape(tmpV.set(width * 0.5f, height * 0.5f, depth * 0.5f))); method 73 private void create (final Model model, final float mass, final btCollisionShape shape) { method in class:BulletConstructor
|
/external/llvm/lib/MC/MCDisassembler/ |
MCExternalSymbolizer.cpp | 29 // non-zero then the symbolic information it returns is used to create an MCExpr 78 // For branches always create an MCExpr so it gets printed as hex address. 95 Add = MCSymbolRefExpr::create(Sym, Ctx); 97 Add = MCConstantExpr::create((int)SymbolicOp.AddSymbol.Value, Ctx); 106 Sub = MCSymbolRefExpr::create(Sym, Ctx); 108 Sub = MCConstantExpr::create((int)SymbolicOp.SubtractSymbol.Value, Ctx); 114 Off = MCConstantExpr::create(SymbolicOp.Value, Ctx); 136 Expr = MCConstantExpr::create(0, Ctx);
|
/external/llvm/lib/Target/ARM/ |
ARMMCInstLower.cpp | 33 Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_None, 40 Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_None, 45 Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_None, 54 Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_PLT, 61 MCConstantExpr::create(MO.getOffset(), 83 MCOp = MCOperand::createExpr(MCSymbolRefExpr::create(
|
/external/llvm/test/Bindings/OCaml/ |
passmgr_builder.ml | 39 let module_passmgr = PassManager.create () in 41 let lto_passmgr = PassManager.create () in 43 ignore (Llvm_passmgr_builder.create ()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/ |
FastClass.java | 38 public static FastClass create(Class type) { method in class:FastClass 40 return create(type.getClassLoader(),type); 43 public static FastClass create(ClassLoader loader, Class type) { method in class:FastClass 47 return gen.create(); 63 public FastClass create() { method in class:FastClass.Generator 65 return (FastClass)super.create(type.getName()); 160 * later to create a new instance with less overhead. 178 * Create a new instance using the specified constructor index and arguments.
|
/external/testng/src/test/java/test/ |
SimpleBaseTest.java | 23 public static TestNG create() { method in class:SimpleBaseTest 30 public static TestNG create(Class<?>... testClasses) { method in class:SimpleBaseTest 31 TestNG result = create(); 36 protected TestNG create(XmlSuite... suites) { method in class:SimpleBaseTest 37 TestNG result = create(); 49 return create(suite);
|
/frameworks/base/core/java/android/content/res/ |
ThemedResourceCache.java | 138 * @param create {@code true} to create an entry if one does not already 141 * empty and {@code create} was {@code false} 144 private LongSparseArray<WeakReference<T>> getThemedLocked(@Nullable Theme t, boolean create) { 146 if (mNullThemedEntries == null && create) { 153 if (create) { 162 if (cache == null && create) { 175 * @param create {@code true} to create an entry if one does not already 178 * empty and {@code create} was {@code false [all...] |
/frameworks/base/core/tests/coretests/src/android/util/ |
ScrollViewScenario.java | 57 View create(final Context context); method in interface:ScrollViewScenario.ViewFactory 101 public View create(final Context context) { 130 public View create(final Context context) { 159 public View create(final Context context) { 174 public View create(Context context) { 251 // create views specified by params 259 mLinearLayout.addView(viewFactory.create(this), lp);
|
/frameworks/base/libs/hwui/tests/unit/ |
LinearAllocatorTests.cpp | 30 TEST(LinearAllocator, create) { 38 auto pair = la.create<SimplePair>(); 50 la.create<TestUtils::SignalingDtor>()->setSignal(destroyed + i); 51 la.create<SimplePair>(); 55 la.create<TestUtils::SignalingDtor>(destroyed + 5 + i); 77 auto sigdtor = la.create<TestUtils::SignalingDtor>();
|
/frameworks/data-binding/compilerCommon/ |
build.gradle | 47 project.tasks.create(name : "generateXmlParser", type : JavaExec) { 54 project.tasks.create(name : "generateGrammar", type : JavaExec) { 60 tasks.create(name : 'exportBuildVersions') << {
|
/frameworks/data-binding/extensions/baseAdapters/ |
build.gradle | 58 //create jar tasks 67 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) { 73 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) { 79 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UT_sampler.java | 50 minification = b.create(); 54 magnification = b.create(); 58 wrapS = b.create(); 62 wrapT = b.create(); 66 anisotropy = b.create(); 142 RenderScript pRS = RenderScript.create(mCtx);
|
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
UT_sampler.java | 50 minification = b.create(); 54 magnification = b.create(); 58 wrapS = b.create(); 62 wrapT = b.create(); 66 anisotropy = b.create(); 142 RenderScript pRS = RenderScript.create(mCtx);
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_sampler.java | 50 minification = b.create(); 54 magnification = b.create(); 58 wrapS = b.create(); 62 wrapT = b.create(); 66 anisotropy = b.create(); 142 RenderScript pRS = RenderScript.create(mCtx);
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
EditQuickResponseDialog.java | 50 * Creates a new dialog to edit an existing QuickResponse or create a new 55 * @param create - True if this is a new QuickResponse 58 Uri baseUri, boolean create) { 64 args.putBoolean(QUICK_RESPONSE_CREATE, create); 73 final boolean create = getArguments().getBoolean(QUICK_RESPONSE_CREATE); 114 if (create) { 134 if (!create) { 137 mDialog = b.create();
|
/external/dagger2/producers/src/test/java/dagger/producers/internal/ |
SetProducerTest.java | 38 SetProducer.create( 46 SetProducer.create( 60 SetProducer.create(
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
IElement.java | 28 public static IElement create (final Tag tag) method in class:IElement.Factory 30 return new ElementImpl (tag, AttributeSet.create ()); 33 public static IElement create (final Tag tag, final AttributeSet attrs) method in class:IElement.Factory
|
/external/guava/guava/src/com/google/common/io/ |
CharSink.java | 93 Closer closer = Closer.create(); 127 Closer closer = Closer.create(); 151 Closer closer = Closer.create();
|