HomeSort by relevance Sort by last modified time
    Searched defs:create (Results 251 - 275 of 4177) sorted by null

<<11121314151617181920>>

  /external/guice/core/src/com/google/inject/internal/
UniqueAnnotations.java 38 public static Annotation create() { method in class:UniqueAnnotations
39 return create(nextUniqueValue.getAndIncrement());
42 static Annotation create(final int value) { method in class:UniqueAnnotations
  /external/icu/icu4c/source/common/
servslkf.cpp 64 SimpleLocaleKeyFactory::create(const ICUServiceKey& key, const ICUService* service, UErrorCode& status) const function in class:SimpleLocaleKeyFactory
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
F_nullptr.pass.cpp 50 // 2 Create an object of type 'F' using a null pointer of type 'Callable'.
53 // 3 Create an object of type 'F' that is not null. Check that
145 // Create a non-null free function by taking the address of
149 static Tp create() { function in struct:Creator
154 // Create a non-null member pointer.
158 static ReturnType create() { function in struct:Creator
171 TestFn tf = Creator<TestFn>::create();
  /external/libmojo/base/android/java/src/org/chromium/base/
JavaHandlerThread.java 28 private static JavaHandlerThread create(String name) { method in class:JavaHandlerThread
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
Pair.java 64 public static <A, B> Pair<A, B> create(A a, B b) { method in class:Pair
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/internal/
RegexBasedMatcher.java 29 public static MatcherApi create() { method in class:RegexBasedMatcher
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbol.cpp 66 PDBSymbol::create(const IPDBSession &PDBSession, function in class:PDBSymbol
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.cpp 33 /// Create a new interpreter object.
35 ExecutionEngine *Interpreter::create(std::unique_ptr<Module> M, function in class:Interpreter
  /external/llvm/lib/Support/
FileOutputBuffer.cpp 39 FileOutputBuffer::create(StringRef FilePath, size_t Size, unsigned Flags) { function in class:llvm::FileOutputBuffer
45 // If file does not exist, we'll create one.
70 // Create new file in same directory but with random name.
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 28 const AArch64MCExpr *AArch64MCExpr::create(const MCExpr *Expr, VariantKind Kind, function in class:AArch64MCExpr
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCExpr.cpp 22 const MipsMCExpr *MipsMCExpr::create(MipsMCExpr::MipsExprKind Kind, function in class:MipsMCExpr
29 return create(Kind, create(MEK_NEG, create(MEK_GPREL, Expr, Ctx), Ctx), Ctx);
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 83 const MipsFrameLowering *MipsFrameLowering::create(const MipsSubtarget &ST) { function in class:MipsFrameLowering
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.cpp 22 PPCMCExpr::create(VariantKind Kind, const MCExpr *Expr, function in class:PPCMCExpr
141 Sym = MCSymbolRefExpr::create(&Sym->getSymbol(), Modifier, Context);
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCExpr.cpp 28 SparcMCExpr::create(VariantKind Kind, const MCExpr *Expr, function in class:SparcMCExpr
  /external/mesa3d/src/glx/tests/
fake_glx_screen.h 109 static glx_context *create(struct glx_screen *psc, struct glx_config *mode, function in class:fake_glx_context_direct
  /external/mockito/src/main/java/org/mockito/internal/junit/
ExceptionFactory.java 28 return JUnitArgsAreDifferent.create(message, wanted, actual);
33 JUnitArgsAreDifferent.create("message", "wanted", "actual");
41 * Don't inline this class! It allows create the JUnit-ArgumentsAreDifferent exception without the need to use reflection.
43 * If JUnit is not available a call to {@link #create(String, String, String)} will throw a {@link NoClassDefFoundError}.
48 static AssertionError create(String message, String wanted, String actual) { method in class:ExceptionFactory.JUnitArgsAreDifferent
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 20 @Override HttpClient create() { method
26 @Override HttpClient create() { method
32 @Override HttpClient create() { method
38 @Override HttpClient create() { method
44 @Override HttpClient create() { method
49 abstract HttpClient create(); method in class:Client
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
service_registry.hpp 43 factory_type factory = &service_registry::create<Service>;
74 asio::io_service::service* service_registry::create( function in class:asio::detail::service_registry
  /external/parameter-framework/upstream/test/functional-tests/include/
Test.hpp 119 void create(Config &&configFile) { mPf.reset(new PF{std::move(configFile)}); } function in class:parameterFramework::LazyPF
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
TextFormatParseLocation.java 48 * Create a location.
54 static TextFormatParseLocation create(int line, int column) { method in class:TextFormatParseLocation
  /external/python/cpython2/Demo/threads/
Coroutine.py 6 # To run a collection of functions as coroutines, you need to create
9 # and then 'create' a subsidiary object for each function in the
11 # cof1 = co.create(f1 [, arg1, arg2, ...]) # [] means optional,
12 # cof2 = co.create(f2 [, arg1, arg2, ...]) #... not list
13 # cof3 = co.create(f3 [, arg1, arg2, ...])
14 # etc. The functions need not be distinct; 'create'ing the same
18 # To start the coroutines running, use co.tran on one of the create'd
22 # the create'd coroutines exits (does a return, or suffers an unhandled
30 # handle = .create(func [, arg1, arg2, ...])
36 # Transfer control to the create'd coroutine "target", optionall
107 def create(self, func, *args): member in class:Coroutine
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/controller/
BackupAgentController.java 29 public BackupAgentController<T> create() { method in class:BackupAgentController
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowBroadcastPendingResult.java 21 static BroadcastReceiver.PendingResult create(int resultCode, String resultData, Bundle resultExtras, boolean ordered) { method in class:ShadowBroadcastPendingResult
64 private final SettableFuture<BroadcastReceiver.PendingResult> finished = SettableFuture.create();
  /external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/
ShadowLoaderTest.java 21 public void create() { method in class:ShadowLoaderTest
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Pair.java 48 public static <A, B> Pair <A, B> create(A a, B b) { method in class:Pair

Completed in 1296 milliseconds

<<11121314151617181920>>