Searched refs:container (Results 151 - 175 of 374) sorted by relevance

1234567891011>>

/external/ImageMagick/www/api/
H A Ddeprecate.php32 <div class="container">
53 <div class="container">
69 </div><!-- /.container -->
H A Dmagick-deprecate.php32 <div class="container">
53 <div class="container">
69 </div><!-- /.container -->
H A Dmagick.php32 <div class="container">
53 <div class="container">
69 </div><!-- /.container -->
H A Danimate.php32 <div class="container">
53 <div class="container">
100 </div><!-- /.container -->
H A Dsignature.php32 <div class="container">
53 <div class="container">
95 </div><!-- /.container -->
/external/clang/test/SemaTemplate/
H A Dtemp_arg_nontype.cpp274 namespace container namespace in namespace:PR10579::fcppt
318 typedef fcppt::container::bitfield::basic<
/external/doclava/res/assets/templates-sdk/
H A Dfooter.cs66 <div class="dac-modal-container">
72 <div class="dac-swap" data-swap-container>
82 <div class="dac-swap" data-swap-container>
184 <div class="dac-modal-container">
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dloca_table.cc80 return index_ <= container()->num_glyphs_;
84 return container()->Loca(index_++);
/external/v8/src/
H A Dbootstrapper.h122 static void ExportFromRuntime(Isolate* isolate, Handle<JSObject> container);
124 Handle<JSObject> container);
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DHudFragment.java44 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
46 controlView = inflater.inflate(R.layout.fragment_hud, container, false);
/external/deqp/modules/gles3/functional/
H A Des3fLifetimeTests.cpp215 void attach (GLuint element, GLuint container);
216 void detach (GLuint element, GLuint container);
219 GLuint getAttachment (GLuint container);
294 void drawContainer (GLuint container, Surface& dst);
359 void setupContainer (GLuint seed, GLuint container);
/external/protobuf/python/google/protobuf/pyext/
H A Dmap_container.cc80 // A pointer back to the container, so we can notice changes to the version.
82 MapContainer* container; member in struct:google::protobuf::python::MapIterator
86 // the ref on container (above) would guarantee outlive semantics. However in
104 // True if the container is empty. We signal this separately to avoid calling
353 // container can be released by passing it as both from and to (e.g. making it
411 "Could not allocate new container.");
586 "A scalar map container", // tp_doc
654 "Could not allocate new container.");
840 "A map container for message", // tp_doc
876 iter->container
[all...]
/external/sfntly/cpp/src/sfntly/table/core/
H A Dname_table.cc245 if (name_index_ < container()->NameCount()) {
250 for (; name_index_ < container()->NameCount(); ++name_index_) {
251 if (filter_->Accept(container()->PlatformId(name_index_),
252 container()->EncodingId(name_index_),
253 container()->LanguageId(name_index_),
254 container()->NameId(name_index_))) {
264 return container()->GetNameEntry(name_index_++);
/external/google-breakpad/src/testing/test/
H A Dgmock-matchers_test.cc1204 map<int, char> container; local
1205 container.insert(make_pair(1, 'a'));
1206 container.insert(make_pair(2, 'b'));
1207 container.insert(make_pair(4, 'c'));
1208 EXPECT_THAT(container, Contains(Key(1)));
1209 EXPECT_THAT(container, Not(Contains(Key(3))));
1213 multimap<int, char> container; local
1214 container.insert(make_pair(1, 'a'));
1215 container.insert(make_pair(2, 'b'));
1216 container
1322 map<int, char> container; local
[all...]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
H A DHolidayCalendarDemo.java144 void addWithFont(Container container, Component foo, Font font) { argument
147 container.add(foo);
173 private static void add(Container container, Component component, argument
177 container.add(component);
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_size_table.cc483 BitmapSizeTable::Builder* container)
484 : RefIterator<BitmapGlyphInfo, BitmapSizeTable::Builder>(container) {
485 sub_table_iter_ = container->IndexSubTableBuilders()->begin();
493 while (++sub_table_iter_ != container()->IndexSubTableBuilders()->end()) {
482 BitmapGlyphInfoIterator( BitmapSizeTable::Builder* container) argument
H A Dbitmap_size_table.h40 explicit BitmapGlyphInfoIterator(Builder* container);
H A Dindex_sub_table_format4.h59 explicit BitmapGlyphInfoIterator(Builder* container);
/external/mesa3d/src/glsl/
H A Dlist.h26 * \brief Doubly-linked list abstract container type.
277 #define foreach_iter(iter_type, iter, container) \
278 for (iter_type iter = (container) . iterator(); iter.has_next(); iter.next())
/external/owasp/sanitizer/empiricism/
H A Dhtml-containment.js240 function displayJson(data, container) {
241 container.innerHTML = formatDataToJsonHTML(data);
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
H A DEnvironmentCheck.java403 * @param container Node to append our report to
409 public void appendEnvironmentReport(Node container, Document factory, Hashtable h) argument
411 if ((null == container) || (null == factory))
420 container.appendChild(envCheckNode);
496 * @param container Node to append our report to
505 protected boolean appendFoundJars(Node container, Document factory, argument
535 container.appendChild(node);
542 container.appendChild(node);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_sender.cc117 PacketContainer* container)
125 container_(container) {}
803 PacketContainer container(transport_);
816 ntp_sec, ntp_frac, &container);
834 container.Append(packet.release());
845 size_t bytes_sent = container.SendPackets();
110 RtcpContext(const FeedbackState& feedback_state, int32_t nack_size, const uint16_t* nack_list, bool repeat, uint64_t picture_id, uint32_t ntp_sec, uint32_t ntp_frac, PacketContainer* container) argument
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2397 // Implements a matcher that checks the size of an STL-style container.
2428 virtual bool MatchAndExplain(Container container, argument
2430 SizeType size = container.size();
2450 // container.
2482 virtual bool MatchAndExplain(Container container, argument
2487 DistanceType distance = std::distance(begin(container), end(container));
2489 DistanceType distance = std::distance(container.begin(), container.end());
2510 // Implements an equality matcher for any STL-style container whos
2816 MatchAndExplainImpl(bool all_elements_should_match, Container container, MatchResultListener* listener) const argument
2862 MatchAndExplain(Container container, MatchResultListener* listener) const argument
2891 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3161 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3376 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3665 ElementsAreArray(const Container& container) argument
3708 UnorderedElementsAreArray(const Container& container) argument
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h2397 // Implements a matcher that checks the size of an STL-style container.
2428 virtual bool MatchAndExplain(Container container, argument
2430 SizeType size = container.size();
2450 // container.
2482 virtual bool MatchAndExplain(Container container, argument
2487 DistanceType distance = std::distance(begin(container), end(container));
2489 DistanceType distance = std::distance(container.begin(), container.end());
2510 // Implements an equality matcher for any STL-style container whos
2816 MatchAndExplainImpl(bool all_elements_should_match, Container container, MatchResultListener* listener) const argument
2862 MatchAndExplain(Container container, MatchResultListener* listener) const argument
2891 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3161 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3376 MatchAndExplain(Container container, MatchResultListener* listener) const argument
3665 ElementsAreArray(const Container& container) argument
3708 UnorderedElementsAreArray(const Container& container) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jar ... .eclipse.debug.core.sourcelookup.ISourceContainer container org.eclipse.jdt.launching.sourcelookup. ...

Completed in 715 milliseconds

1234567891011>>