Searched refs:init (Results 376 - 400 of 3511) sorted by relevance

<<11121314151617181920>>

/external/libcxx/test/containers/sequences/deque/deque.capacity/
H A Dshrink_to_fit.pass.cpp24 int init = 0; local
27 init = (start+1) / b + ((start+1) % b != 0);
28 init *= b;
29 --init;
31 C c(init, 0);
32 for (int i = 0; i < init-start; ++i)
H A Daccess.pass.cpp34 int init = 0; local
37 init = (start+1) / b + ((start+1) % b != 0);
38 init *= b;
39 --init;
41 C c(init, 0);
42 for (int i = 0; i < init-start; ++i)
H A Dresize_size.pass.cpp24 int init = 0; local
27 init = (start+1) / b + ((start+1) % b != 0);
28 init *= b;
29 --init;
31 C c(init, 0);
32 for (int i = 0; i < init-start; ++i)
/external/libcxx/test/containers/sequences/deque/deque.modifiers/
H A Dpush_back.pass.cpp26 int init = 0; local
29 init = (start+1) / b + ((start+1) % b != 0);
30 init *= b;
31 --init;
33 C c(init, 0);
34 for (int i = 0; i < init-start; ++i)
H A Dpush_back_rvalue.pass.cpp29 int init = 0; local
32 init = (start+1) / b + ((start+1) % b != 0);
33 init *= b;
34 --init;
36 C c(init);
37 for (int i = 0; i < init-start; ++i)
H A Demplace_back.pass.cpp27 int init = 0; local
30 init = (start+1) / b + ((start+1) % b != 0);
31 init *= b;
32 --init;
34 C c(init);
35 for (int i = 0; i < init-start; ++i)
H A Demplace_front.pass.cpp27 int init = 0; local
30 init = (start+1) / b + ((start+1) % b != 0);
31 init *= b;
32 --init;
34 C c(init);
35 for (int i = 0; i < init-start; ++i)
/external/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp34 ClUseSymbolTable("use-symbol-table", cl::init(true),
39 "functions", cl::init(FunctionNameKind::LinkageName),
49 ClPrintInlining("inlining", cl::init(true),
53 ClDemangle("demangle", cl::init(true), cl::desc("Demangle function names"));
55 static cl::opt<std::string> ClDefaultArch("default-arch", cl::init(""),
60 ClBinaryName("obj", cl::init(""),
/external/chromium_org/third_party/opus/src/silk/
H A Ddebug.h111 static int init = 0; \
113 if( init == 0 ) \
116 init = 1; \
139 static int init = 0; \
141 if( init == 0 ) \
144 init = 1; \
170 static int init = 0; \
172 if( init == 0 ) \
175 init = 1; \
199 static int init
[all...]
/external/libopus/silk/
H A Ddebug.h111 static int init = 0; \
113 if( init == 0 ) \
116 init = 1; \
139 static int init = 0; \
141 if( init == 0 ) \
144 init = 1; \
170 static int init = 0; \
172 if( init == 0 ) \
175 init = 1; \
199 static int init
[all...]
/external/chromium_org/third_party/webrtc/test/mac/
H A Drun_test.mm30 - (id)init {
31 self = [super init];
39 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
54 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
59 TestRunner *testRunner = [[TestRunner alloc] init];
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DRequest.cpp49 Request* Request::createRequestWithRequestData(ExecutionContext* context, FetchRequestData* request, const RequestInit& init, FetchRequestData::Mode mode, FetchRequestData::Credentials credentials, ExceptionState& exceptionState) argument
51 // "7. Let |mode| be |init|'s mode member if it is present, and
54 if (init.mode == "same-origin") {
56 } else if (init.mode == "no-cors") {
58 } else if (init.mode == "cors") {
66 // "9. Let |credentials| be |init|'s credentials member if it is present,
70 if (init.credentials == "omit") {
72 } else if (init.credentials == "same-origin") {
74 } else if (init.credentials == "include") {
82 // "11. If |init|'
167 create(ExecutionContext* context, const String& input, const Dictionary& init, ExceptionState& exceptionState) argument
195 create(ExecutionContext* context, Request* input, const Dictionary& init, ExceptionState& exceptionState) argument
[all...]
/external/deqp/modules/gles3/performance/
H A Des3pPerformanceTests.cpp57 virtual void init (void) function in class:deqp::gles3::Performance::TextureTestGroup
75 virtual void init (void) function in class:deqp::gles3::Performance::ShadersTestGroup
92 virtual void init (void) function in class:deqp::gles3::Performance::APITests
110 virtual void init (void) function in class:deqp::gles3::Performance::BufferTestGroup
127 void PerformanceTests::init (void) function in class:deqp::gles3::Performance::PerformanceTests
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DAlgorithmParametersTest.java108 params.init(new MyAlgorithmParameterSpec());
144 params.init(new MyAlgorithmParameterSpec());
159 params.init(new MyAlgorithmParameterSpec());
172 ap.init(new MyAlgorithmParameterSpec());
188 ap.init(new byte[6]);
229 params.init(new MyAlgorithmParameterSpec());
247 params.init(new MyAlgorithmParameterSpec());
261 ap.init(new byte[6], "aaa");
280 * @tests java.security.AlgorithmParameters#init(java.security.spec.AlgorithmParameterSpec)
301 params.init(spe
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRFileStream.m44 return [[ANTLRFileStream alloc] init:fileName];
49 return [[ANTLRFileStream alloc] init:aFileName encoding:encoding];
52 - (id) init:(NSString *)aFileName
54 self = [super init];
62 - (id) init:(NSString *) aFileName encoding:(NSStringEncoding)encoding
64 self = [super init];
/external/chromium_org/third_party/skia/include/utils/
H A DSkMeshUtils.h23 bool init(int texW, int texH, int rows, int cols) { function in class:SkMeshIndices
24 return this->init(NULL, NULL, texW, texH, rows, cols);
27 bool init(SkPoint tex[], uint16_t indices[],
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpEdgeBuilder.h20 init();
27 init();
43 void init();
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DColorPickerMoreButton.java24 init();
29 init();
35 public void init() { method in class:ColorPickerMoreButton
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractTester.java54 public final void init( method in class:AbstractTester
63 public final void init(G subjectGenerator, String suiteName) { method in class:AbstractTester
64 init(subjectGenerator, suiteName, null, null);
/external/oprofile/libregex/
H A Ddemangle_symbol.cpp58 static bool init = false; local
60 if (init == false) {
62 init = true;
/external/qemu/util/
H A Dmodule.c22 void (*init)(void); member in struct:ModuleEntry
64 e->init = fn;
79 e->init();
/external/skia/include/utils/
H A DSkMeshUtils.h23 bool init(int texW, int texH, int rows, int cols) { function in class:SkMeshIndices
24 return this->init(NULL, NULL, texW, texH, rows, cols);
27 bool init(SkPoint tex[], uint16_t indices[],
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.h20 init();
27 init();
43 void init();
/external/stlport/test/unit/
H A Dpair_test.cpp16 CPPUNIT_TEST(init);
21 void init();
34 void PairTest::init() function in class:PairTest
/external/libcxx/test/containers/sequences/deque/deque.cons/
H A Dassign_size_value.pass.cpp25 int init = 0; local
28 init = (start+1) / b + ((start+1) % b != 0);
29 init *= b;
30 --init;
32 C c(init, 0);
33 for (int i = 0; i < init-start; ++i)

Completed in 411 milliseconds

<<11121314151617181920>>