Searched refs:container (Results 51 - 75 of 202) sorted by relevance

123456789

/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table_format3.cc269 IndexSubTableFormat3::Builder* container)
271 IndexSubTable::Builder>(container) {
272 glyph_id_ = container->first_glyph_index();
276 if (glyph_id_ <= container()->last_glyph_index()) {
290 container()->image_data_offset(),
291 container()->GlyphStartOffset(glyph_id_),
292 container()->GlyphLength(glyph_id_),
293 container()->image_format());
268 BitmapGlyphInfoIterator( IndexSubTableFormat3::Builder* container) argument
H A Dindex_sub_table_format5.cc318 IndexSubTableFormat5::Builder* container)
320 IndexSubTable::Builder>(container),
325 if (offset_index_ < (int32_t)(container()->GetGlyphArray()->size())) {
338 output = new BitmapGlyphInfo(container()->GetGlyphArray()->at(offset_index_),
339 container()->image_data_offset(),
340 offset_index_ * container()->ImageSize(),
341 container()->ImageSize(),
342 container()->image_format());
317 BitmapGlyphInfoIterator( IndexSubTableFormat5::Builder* container) argument
/external/squashfs-tools/squashfs-tools/
H A Dcaches-queues-lists.h58 void insert_##NAME##_hash_table(TYPE *container, struct file_buffer *entry) \
62 entry->LINK##_next = container->hash_table[hash]; \
63 container->hash_table[hash] = entry; \
71 void remove_##NAME##_hash_table(TYPE *container, struct file_buffer *entry) \
76 container->hash_table[HASH_FUNCTION(entry->FIELD)] = \
/external/clang/test/SemaTemplate/
H A Ddefault-arguments.cpp131 template<template<typename U, typename = allocator<U> > class container,
133 container<DT> initializer(const DT& d) {
134 return container<DT>();
/external/deqp/framework/delibs/decpp/
H A DdeSTLUtil.hpp38 //! Test whether `item` is a member of `container`. The type `C` must be an
42 inline bool contains (const C& container, const typename C::key_type& item) argument
44 const typename C::const_iterator it = container.find(item);
45 return (it != container.end());
73 // Utilities for map-like container types
/external/droiddriver/src/io/appium/droiddriver/scroll/
H A DAccessibilityEventScrollStepStrategy.java172 protected AccessibilityEvent doScrollAndReturnEvent(final UiElement container, argument
179 doScroll(container, direction);
192 public void doScroll(final UiElement container, final PhysicalDirection direction) { argument
193 // We do not call container.scroll(direction) because it uses a SwipeAction
198 container
H A DScrollStepStrategy.java33 * @param containerFinder Finder for the container that can scroll, for instance a ListView
49 * @param containerFinder Finder for the container that can scroll, for instance a ListView
61 * @param containerFinder Finder for the container that can scroll, for instance a ListView
69 * Performs the scroll action on {@code container}. Subclasses can override this to customize the
72 * @param container the container that can scroll
75 void doScroll(UiElement container, PhysicalDirection direction); argument
H A DSentinelStrategy.java56 * Gets the sentinel, which must be an immediate child of {@code container}
57 * - not a descendant. Note sentinel may not exist if {@code container} has
61 public UiElement find(UiElement container) { argument
62 UiElement sentinel = getSentinel(container.getChildren(predicate));
207 public void doScroll(UiElement container, PhysicalDirection direction) { argument
208 container.scroll(direction);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DBuildMachineManager.java102 //create a temporary lock on marker container
126 File container = new File(markerContainer);
128 if (container.exists() && container.isDirectory()) {
130 File[] markerFiles = container.listFiles();
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iterator/
H A Dtypes.pass.cpp19 // Cont* container;
37 void test() {this->container = 0;}
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iterator/
H A Dtypes.pass.cpp19 // Container* container;
38 void test() {this->container = 0;}
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/insert.iterator/
H A Dtypes.pass.cpp19 // Cont* container;
40 this->container = 0;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/container/mp4/
H A DMovieCreator.java16 package com.googlecode.mp4parser.authoring.container.mp4;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestFragmentManager.java156 ViewGroup container = null;
159 container = (ViewGroup) activity.findViewById(shadowFragment.getContainerViewId());
162 View view = fragment.onCreateView(activity.getLayoutInflater(), container, shadowFragment.getSavedInstanceState());
166 if (container != null) {
168 container.removeAllViews();
171 container.addView(view);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractContainerTester.java31 * @param <C> the type of the container
32 * @param <E> the type of the container's contents
40 protected C container; field in class:AbstractContainerTester
49 * @return the contents of the container under test, for use by
55 * Replaces the existing container under test with a new container created
60 * @return the new container instance.
67 * Replaces the existing container under test with a new container.
74 * @return the new container instanc
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DVisitor.java128 abstract protected void doBefore(Object container, Object item); argument
129 abstract protected void doBetween(Object container, Object lastItem, Object nextItem); argument
130 abstract protected void doAfter(Object container, Object item); argument
/external/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.cc17 LightSymbol** container = getThreadFrameContainer(); local
19 parentFrame = *container;
20 *container = this; // shortcut for get+set current frame
/external/v8/tools/sodium/
H A Dsodium.js235 function makeContainerPosVisible(container, newTop) {
236 var height = container.offsetHeight;
238 if (newTop < container.scrollTop + margin) {
241 container.scrollTop = newTop;
244 if (newTop > (container.scrollTop + 3 * margin)) {
246 container.scrollTop = newTop;
251 var asmContainer = document.getElementById('asm-container');
256 var sourceContainer = document.getElementById('source-container');
/external/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc162 RepeatedCompositeContainer* container = local
168 container->owner = self->owner;
169 container->parent = self->parent;
170 container->message = self->parent->message;
171 container->parent_field = cdescriptor;
172 container->subclass_init = concrete_class;
/external/deqp/modules/glshared/
H A DglsLifetimeTests.cpp904 GLuint getAttachment (Attacher& attacher, GLuint container) argument
906 const GLuint queriedAttachment = attacher.getAttachment(container);
910 << container << ": " << queriedAttachment << "."
919 Name container (containerType);
927 m_attacher.attach(*element, *container);
928 errors.check(getAttachment(m_attacher, *container) == elementId,
932 // "Such a container or other context may continue using the object, and
935 // We here interpret "may" to mean that whenever the container has a
938 errors.check(getAttachment(m_attacher, *container) == elementId,
948 m_attacher.detach(elementId, *container);
[all...]
/external/clang/test/SemaCXX/
H A Dpragma-optimize.cpp79 float container (float par) { function
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-bcel.jar ... interfaceName int i String superClass java.io.File container org.apache.bcel.classfile.ClassParser parser ...
/external/icu/icu4c/source/i18n/
H A Didentifier_info.h177 UBool containsWithAlternates(const ScriptSet &container, const ScriptSet &containee) const;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentActivityTest.java64 ViewGroup container = (ViewGroup) activity.findViewById(R.id.fragment);
65 assertNotNull(container);
70 ViewGroup container = (ViewGroup) activity.findViewById(R.id.fragment);
71 View fragmentView = container.findViewById(TestFragment.FRAGMENT_VIEW_ID);
/external/protobuf/python/google/protobuf/internal/
H A Dcpp_message.py173 container = self._composite_fields.get(cdescriptor.name, None)
174 if container is None:
175 container = RepeatedScalarContainer(self, cdescriptor)
176 self._composite_fields[cdescriptor.name] = container
177 return container
278 container = self._composite_fields.get(cdescriptor.name, None)
279 if container is None:
280 container = RepeatedCompositeContainer(
282 self._composite_fields[cdescriptor.name] = container
283 return container
[all...]

Completed in 769 milliseconds

123456789