HomeSort by relevance Sort by last modified time
    Searched defs:created (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /hardware/intel/common/wrs_omxil_core/utils/inc/
thread.h 53 bool created; member in class:Thread
  /external/chromium_org/base/files/
file_proxy.h 84 // Returns true if a new file was created (or an old one truncated to zero
86 bool created() const { return file_.created(); } function in class:base::FileProxy
  /external/chromium_org/content/renderer/java/
java_bridge_dispatcher.cc 89 bool created = local
91 DCHECK(created);
94 // The NPObject is created with a ref count of one, which we remove when
  /external/chromium_org/third_party/WebKit/Source/core/page/
CreateWindow.cpp 47 static LocalFrame* createWindow(LocalFrame& openerFrame, LocalFrame& lookupFrame, const FrameLoadRequest& request, const WindowFeatures& features, NavigationPolicy policy, ShouldSendReferrer shouldSendReferrer, bool& created)
55 created = false;
68 created = false;
113 created = true;
139 bool created; local
140 LocalFrame* newFrame = createWindow(*activeFrame, openerFrame, frameRequest, windowFeatures, NavigationPolicyIgnore, MaybeSendReferrer, created);
155 if (created) {
179 bool created; local
180 LocalFrame* newFrame = createWindow(openerFrame, openerFrame, request, features, policy, shouldSendReferrer, created);
  /external/chromium_org/third_party/ots/src/
head.h 16 uint64_t created; member in struct:ots::OpenTypeHEAD
  /external/ipsec-tools/src/racoon/
schedule.h 53 time_t created; /* for debug */ member in struct:sched
74 time_t created; member in struct:scheddump
backupsa.c 202 time_t created, current; local
238 created = mktime(&tm);
295 if (created + sa_args.l_addtime < current) {
301 sa_args.l_addtime -= current - created;
policy.h 68 u_int64_t created; /* Used for generated SPD entries deletion */ member in struct:policyindex
120 (idx)->created = (_created); \
132 (idx)->created = (_created); \
  /ndk/tests/device/test-stlport_shared-exception/jni/
new1_2.cpp 19 int newed, created; variable
27 return !(newed && !created);
30 A::A() { created = 1; }
31 A::~A() { created = 0; }
new2_1.cpp 19 int newed, created; variable
28 return !(!newed && !created);
31 A::A() { created = 1; }
32 A::~A() { created = 0; }
  /ndk/tests/device/test-stlport_static-exception/jni/
new1_2.cpp 19 int newed, created; variable
27 return !(newed && !created);
30 A::A() { created = 1; }
31 A::~A() { created = 0; }
new2_1.cpp 19 int newed, created; variable
28 return !(!newed && !created);
31 A::A() { created = 1; }
32 A::~A() { created = 0; }
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api_helpers_unittest.cc 60 // Verify deserialization of a PAC data:// URL that we created ourselves.
301 net::ProxyServer created; local
309 &created, &error, &bad_message));
310 EXPECT_EQ("PROXY proxy_server:80", created.ToPacString());
318 &created, &error, &bad_message));
319 EXPECT_EQ("SOCKS proxy_server:1234", created.ToPacString());
  /external/chromium_org/chrome/browser/profiles/
profile_manager.h 60 // Get the profile for the user which created the current session.
75 // dir. This will return an existing profile it had already been created,
83 // If the profile has already been created then callback is called
95 // Returns the directory where the first created profile is stored,
116 // Returns created profiles. Note, profiles order is NOT guaranteed to be
131 // prohibited. Returns the file path to the profile that will be created
158 // deleting the last profile, a new one will be created in its place, and in
225 ProfileInfo(Profile* profile, bool created);
230 // Whether profile has been fully loaded (created and initialized).
231 bool created; member in struct:ProfileManager::ProfileInfo
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.cpp 48 V(created, Created) \
53 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
66 return adoptRef(new V8CustomElementLifecycleCallbacks(scriptState, prototype, created, attached, detached, attributeChanged));
71 // V8 Custom Elements always run created to swizzle prototypes.
72 int flags = CustomElementLifecycleCallbacks::Created;
92 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptState* scriptState, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged)
98 , m_created(scriptState->isolate(), created)
151 void V8CustomElementLifecycleCallbacks::created(Element* element) function in class:WebCore::V8CustomElementLifecycleCallbacks
CustomElementConstructorBuilder.cpp 163 v8::Handle<v8::Function> created = retrieveCallback(isolate, "createdCallback"); local
168 m_callbacks = V8CustomElementLifecycleCallbacks::create(m_scriptState.get(), m_prototype, created, attached, detached, attributeChanged);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-head-table.hh 116 LONGDATETIME created; /* Number of seconds since 12:00 midnight, member in struct:OT::head
  /external/harfbuzz_ng/src/
hb-ot-head-table.hh 116 LONGDATETIME created; /* Number of seconds since 12:00 midnight, member in struct:OT::head
  /external/lzma/CPP/7zip/Common/
CreateCoder.cpp 162 bool created = false; local
177 created = (p != 0);
188 created = (p != 0);
195 if (!created && externalCodecs)
  /libcore/luni/src/test/java/libcore/util/
BasicLruCacheTest.java 29 String created = cache.get("aa"); local
30 assertEquals("created-aa", created);
131 return (key.length() > 1) ? ("created-" + key) : null;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
MtpBitmapFetch.java 80 Bitmap created; local
95 created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
97 created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
99 if (created == null) {
104 return new BitmapWithMetadata(created, orientation);
  /external/chromium_org/base/
platform_file_unittest.cc 30 bool* created,
39 if (created)
40 *created = file.created();
66 bool created = false; local
71 &created,
74 EXPECT_TRUE(created);
79 created = false;
83 &created,
86 EXPECT_FALSE(created);
135 bool created = false; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/fileapi/
async_file_util.cc 95 // Remember if the file is actually created or not.
96 bool created = (error == base::File::FILE_OK); local
102 callback.Run(error, created);
  /external/chromium_org/content/browser/fileapi/
native_file_util_unittest.cc 60 ASSERT_TRUE(file.created());
69 ASSERT_FALSE(file.created());
80 bool created = false; local
82 NativeFileUtil::EnsureFileExists(file_name, &created));
83 ASSERT_TRUE(created);
89 NativeFileUtil::EnsureFileExists(file_name, &created));
90 EXPECT_FALSE(created);
120 bool created = false; local
122 NativeFileUtil::EnsureFileExists(file_name, &created));
123 ASSERT_TRUE(created);
159 bool created = false; local
199 bool created = false; local
217 bool created = false; local
286 bool created = false; local
361 bool created = false; local
    [all...]
recursive_operation_delegate_unittest.cc 163 bool created = false; local
166 url, &created));
167 EXPECT_TRUE(created);

Completed in 1552 milliseconds

1 2 3 4 5