Searched refs:created (Results 1 - 25 of 137) sorted by relevance

123456

/external/webkit/Tools/android/flex-2.5.4a/
H A Dmkskel.sh4 /* File created from flex.skl via mkskel.sh */
/external/chromium/chrome/browser/profiles/
H A Dprofile_manager.h55 // dir. This will return an existing profile it had already been created,
60 // when profile is created. If profile has already been created, observer
66 // created, observer is called immediately. Should be called on the UI thread.
81 // Returns created profiles. Note, profiles order is NOT guaranteed to be
121 ProfileInfo(Profile* profile, bool created) argument
122 : profile(profile), created(created) {
128 // Whether profile has been fully loaded (created and initialized).
129 bool created; member in struct:ProfileManager::ProfileInfo
[all...]
/external/valgrind/main/memcheck/tests/
H A Dorigin4-many.stderr.exp3 Uninitialised value was created by a heap allocation
9 Uninitialised value was created by a heap allocation
15 Uninitialised value was created by a heap allocation
21 Uninitialised value was created by a heap allocation
27 Uninitialised value was created by a heap allocation
33 Uninitialised value was created by a heap allocation
39 Uninitialised value was created by a heap allocation
45 Uninitialised value was created by a heap allocation
51 Uninitialised value was created by a heap allocation
H A Dorigin1-yes.stderr.exp5 Uninitialised value was created by a stack allocation
12 Uninitialised value was created by a stack allocation
19 Uninitialised value was created by a stack allocation
26 Uninitialised value was created by a heap allocation
34 Uninitialised value was created by a heap allocation
42 Uninitialised value was created by a heap allocation
53 Uninitialised value was created by a client request
H A Dorigin3-no.stderr.exp6 Uninitialised value was created by a heap allocation
16 Uninitialised value was created by a stack allocation
24 Uninitialised value was created by a heap allocation
34 Uninitialised value was created by a heap allocation
44 Uninitialised value was created by a heap allocation
54 Uninitialised value was created by a client request
63 Uninitialised value was created by a client request
72 Uninitialised value was created by a client request
H A Dorigin2-not-quite.stderr.exp6 Uninitialised value was created by a heap allocation
16 Uninitialised value was created by a heap allocation
26 Uninitialised value was created by a stack allocation
H A Dwritev1.stderr.exp1 Test file created.
/external/ipsec-tools/src/racoon/
H A Dschedule.h53 time_t created; /* for debug */ member in struct:sched
74 time_t created; member in struct:scheddump
H A Dpolicy.h68 u_int64_t created; /* Used for generated SPD entries deletion */ member in struct:policyindex
120 (idx)->created = (_created); \
132 (idx)->created = (_created); \
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file.rb6 created on: March 19, 2010
/external/linux-tools-perf/scripts/perl/
H A Dworkqueue-stats.pl42 $cpus[$common_cpu]{$thread_pid}{created}++;
86 printf("%3s %6s %6s\t%-20s\n", "cpu", "created", "destroyed", "name");
90 my $created = $$wqhash{'created'} || 0;
93 if ($created || $destroyed) {
94 printf("%3u %6u %6u\t%-20s\n", $cpu, $created, $destroyed,
/external/chromium/base/
H A Dplatform_file_posix.cc34 bool* created, PlatformFileError* error_code) {
74 if (created)
75 *created = false;
84 if (created && descriptor > 0)
85 *created = true;
89 if (created && (descriptor > 0) &&
91 *created = true;
33 CreatePlatformFile(const FilePath& name, int flags, bool* created, PlatformFileError* error_code) argument
H A Dplatform_file_unittest.cc75 bool created = false; local
79 &created, &error_code);
81 EXPECT_TRUE(created);
86 created = false;
89 &created, &error_code);
91 EXPECT_FALSE(created);
98 &created, &error_code);
100 EXPECT_FALSE(created);
107 &created, &error_code);
109 EXPECT_TRUE(created);
[all...]
H A Dplatform_file_win.cc15 bool* created,
73 if (created && (INVALID_HANDLE_VALUE != file)) {
75 *created = (ERROR_ALREADY_EXISTS != GetLastError());
77 *created = true;
13 CreatePlatformFile(const FilePath& name, int flags, bool* created, PlatformFileError* error_code) argument
/external/valgrind/main/drd/
H A Ddrd_segment.c52 * @note The creator and created thread ID's may be equal.
55 * that called pthread_create() waits until the created thread has copied
60 const DrdThreadId created)
63 ThreadId vg_created = DRD_(DrdThreadIdToVgThreadId)(created);
74 sg->tid = created;
86 DRD_(vc_increment)(&sg->vc, created);
95 created, vc);
111 Segment* DRD_(sg_new)(const DrdThreadId creator, const DrdThreadId created) argument
122 sg_init(sg, creator, created);
58 sg_init(Segment* const sg, const DrdThreadId creator, const DrdThreadId created) argument
H A Ddrd_segment.h63 Segment* DRD_(sg_new)(const DrdThreadId creator, const DrdThreadId created);
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNullContext.java50 protected AtomicBoolean created = new AtomicBoolean(false); field in class:NullContext
69 logger.info("NullContext created.");
81 created.set(true);
92 created.set(false);
149 if (created.get()){
150 logger.warning("create() called when NullContext is already created!");
194 while (created.get() != createdVal){
204 return created.get();
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglContext.java57 protected AtomicBoolean created = new AtomicBoolean(false); field in class:LwjglContext
154 created.set(false);
163 created.set(true);
184 while (created.get() != createdVal){
194 return created.get();
H A DLwjglDisplay.java98 if (created.get() && (pixelFormat.getBitsPerPixel() != pf.getBitsPerPixel()
126 if (created.get() && !pixelFormatChanged){
132 if (!created.get() || pixelFormatChanged){
159 if (created.get()){
160 logger.warning("create() called when display is already created!");
187 if (created.get()){
190 logger.warning("Display is not created, cannot restart window.");
199 if (created.get())
/external/chromium/net/disk_cache/
H A Dnet_log_parameters.cc15 const std::string& key, bool created)
16 : key_(key), created_(created) {
22 dict->SetBoolean("created", created_);
65 // Values can only be created with at most 32-bit integers. Using a string
14 EntryCreationParameters( const std::string& key, bool created) argument
H A Dnet_log_parameters.h18 // and whether it was created or opened.
21 EntryCreationParameters(const std::string& key, bool created);
/external/skia/src/svg/
H A DSkSVGParser.cpp356 #define CASE_NEW(type) case SkSVGType_##type : created = new SkSVG##type(); break
359 SkSVGElement* created = NULL; local
388 created->fParent = parent;
389 bool isDef = created->fIsDef = created->isDef();
390 bool isNotDef = created->fIsNotDef = created->isNotDef();
405 return created;
/external/chromium/net/base/
H A Dtransport_security_state.cc56 state_copy.created = existing_state.created;
135 if (i->second.created >= time) {
295 state->SetDouble("created", i->second.created.ToDoubleT());
361 double created; local
407 if (state->GetDouble("created", &created)) {
408 created_time = base::Time::FromDoubleT(created);
430 new_state.created
[all...]
/external/valgrind/main/memcheck/tests/x86/
H A Dpushfpopf_s.S27 # should override that created by 0 + 0 above
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DrunPatchCommand.pl65 +This file should not have gotten created on your system.

Completed in 450 milliseconds

123456