Searched defs:View (Results 1 - 25 of 25) sorted by relevance

/external/pdfium/core/fpdfdoc/
H A Dcpdf_occontext.h25 enum UsageType { View = 0, Design, Print, Export }; enumerator in enum:CPDF_OCContext::UsageType
/external/autotest/frontend/client/src/autotest/moblab/wizard/
H A DConfigWizard.java77 setMode(Mode.View);
172 setMode(Mode.View);
176 setMode(Mode.View);
185 headerContainer.setVisible(Mode.View == mode);
186 footerContainer.setVisible(Mode.View == mode);
196 case View:
204 View, enum constant in enum:ConfigWizard.Mode
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_page.h39 class View {}; // Caller implements as desired, empty here due to layering. class in class:CPDF_Page
66 View* GetView() const { return m_pView; }
67 void SetView(View* pView) { m_pView = pView; }
78 View* m_pView;
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp126 std::unique_ptr<SourceCoverageView> View) {
127 ExpansionSubViews.emplace_back(Region, std::move(View));
132 std::unique_ptr<SourceCoverageView> View) {
133 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View));
124 addExpansion( const coverage::CounterMappingRegion &Region, std::unique_ptr<SourceCoverageView> View) argument
130 addInstantiation( StringRef FunctionName, unsigned Line, std::unique_ptr<SourceCoverageView> View) argument
H A DSourceCoverageView.h29 std::unique_ptr<SourceCoverageView> View; member in struct:llvm::ExpansionView
32 std::unique_ptr<SourceCoverageView> View)
33 : Region(Region), View(std::move(View)) {}
35 : Region(std::move(RHS.Region)), View(std::move(RHS.View)) {}
38 View = std::move(RHS.View);
55 std::unique_ptr<SourceCoverageView> View; member in struct:llvm::InstantiationView
58 std::unique_ptr<SourceCoverageView> View)
31 ExpansionView(const coverage::CounterMappingRegion &Region, std::unique_ptr<SourceCoverageView> View) argument
57 InstantiationView(StringRef FunctionName, unsigned Line, std::unique_ptr<SourceCoverageView> View) argument
[all...]
H A DCodeCoverage.cpp68 void attachExpansionSubViews(SourceCoverageView &View,
172 CodeCoverageTool::attachExpansionSubViews(SourceCoverageView &View, argument
190 View.addExpansion(Expansion.Region, std::move(SubView));
205 auto View = SourceCoverageView::create(Function.Name, SourceBuffer.get(), local
207 attachExpansionSubViews(*View, Expansions, Coverage);
209 return View;
223 auto View = SourceCoverageView::create(SourceFile, SourceBuffer.get(), local
225 attachExpansionSubViews(*View, Expansions, Coverage);
241 View->addInstantiation(Function->Name, Line, std::move(SubView));
244 return View;
[all...]
/external/toolchain-utils/automation/clients/helper/
H A Dperforce.py81 class View(collections.MutableSet): class in inherits:collections.MutableSet
/external/vulkan-validation-layers/libs/glm/detail/
H A Ddummy.cpp94 glm::mat4 View = glm::rotate(ViewRotateX, Rotate.x, glm::vec3(0.0f, 1.0f, 0.0f));
96 glm::mat4 MVP = Projection * View * Model;
160 glm::vec3 const & View
180 float Dot = glm::dot(Reflect, View);
92 glm::mat4 View = glm::rotate(ViewRotateX, Rotate.x, glm::vec3(0.0f, 1.0f, 0.0f)); local
/external/opencv/cxcore/include/
H A Dcvwimage.h83 // im.View(0,0, w,1).CopyFrom(im.View(0,1, w,1));
235 WImageView<T> View(int c, int r, int width, int height);
271 WImageViewC<T, C> View(int c, int r, int width, int height);
415 // View into an image class which allows treating a subimage as an image
608 WImageView<T> WImage<T>::View(int c, int r, int width, int height) { function in class:cv::WImage
613 WImageViewC<T, C> WImageC<T, C>::View(int c, int r, int width, int height) { function in class:cv::WImageC
/external/llvm/tools/gold/
H A Dgold-plugin.cpp654 const void *View; local
655 if (get_view(F.handle, &View) != LDPS_OK)
658 return View;
663 const void *View = getSymbolsAndView(F); local
664 if (!View)
667 MemoryBufferRef BufferRef(StringRef((const char *)View, F.filesize), F.name);
690 getModuleForFile(LLVMContext &Context, claimed_file &F, const void *View, argument
694 MemoryBufferRef BufferRef(StringRef((const char *)View, F.filesize), Name);
1138 /// Links the module in \p View from file \p F into the combined module
1141 const void *View, StringRe
1140 linkInModule(LLVMContext &Context, IRMover &L, claimed_file &F, const void *View, StringRef Name, raw_fd_ostream *ApiFile, StringSet<> &Internalize, bool SetName = false) argument
1180 thinLTOBackendTask(claimed_file &F, const void *View, StringRef Name, raw_fd_ostream *ApiFile, const ModuleSummaryIndex &CombinedIndex, raw_fd_ostream *OS, unsigned TaskID, StringMap<MemoryBufferRef> &ModuleMap, FunctionImporter::ImportMapTy &ImportList, std::map<GlobalValue::GUID, GlobalValueSummary *> &DefinedGlobals) argument
1229 const void *View = getSymbolsAndView(F); local
1329 const void *View = getSymbolsAndView(F); local
1488 const void *View = getSymbolsAndView(F); local
[all...]
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-matchers.h1939 typedef internal::StlContainerView<Container> View; typedef in class:testing::internal::ContainerEqMatcher
1940 typedef typename View::type StlContainer;
1941 typedef typename View::const_reference StlContainerReference;
1945 explicit ContainerEqMatcher(const Container& rhs) : rhs_(View::Copy(rhs)) {
2214 typedef StlContainerView<RawContainer> View; typedef in class:testing::internal::QuantifierMatcherImpl
2215 typedef typename View::type StlContainer;
2216 typedef typename View::const_reference StlContainerReference;
2230 StlContainerReference stl_container = View::ConstReference(container);
2522 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::ElementsAreMatcherImpl
2523 typedef typename View
[all...]
/external/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2523 typedef internal::StlContainerView<Container> View; typedef in class:testing::internal::ContainerEqMatcher
2524 typedef typename View::type StlContainer;
2525 typedef typename View::const_reference StlContainerReference;
2530 : expected_(View::Copy(expected)) {
2803 typedef StlContainerView<RawContainer> View; typedef in class:testing::internal::QuantifierMatcherImpl
2804 typedef typename View::type StlContainer;
2805 typedef typename View::const_reference StlContainerReference;
2819 StlContainerReference stl_container = View::ConstReference(container);
3111 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::ElementsAreMatcherImpl
3112 typedef typename View
3349 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::UnorderedElementsAreMatcherImpl
3458 typedef typename internal::StlContainerView<RawContainer>::type View; typedef
3483 typedef typename internal::StlContainerView<RawContainer>::type View; typedef
[all...]
/external/v8/testing/gmock/include/gmock/
H A Dgmock-matchers.h2523 typedef internal::StlContainerView<Container> View; typedef in class:testing::internal::ContainerEqMatcher
2524 typedef typename View::type StlContainer;
2525 typedef typename View::const_reference StlContainerReference;
2530 : expected_(View::Copy(expected)) {
2803 typedef StlContainerView<RawContainer> View; typedef in class:testing::internal::QuantifierMatcherImpl
2804 typedef typename View::type StlContainer;
2805 typedef typename View::const_reference StlContainerReference;
2819 StlContainerReference stl_container = View::ConstReference(container);
3111 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::ElementsAreMatcherImpl
3112 typedef typename View
3350 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::UnorderedElementsAreMatcherImpl
3459 typedef typename internal::StlContainerView<RawContainer>::type View; typedef
3484 typedef typename internal::StlContainerView<RawContainer>::type View; typedef
[all...]
/external/fmtlib/test/gmock/
H A Dgmock.h6939 typedef internal::StlContainerView<Container> View; typedef in class:testing::internal::ContainerEqMatcher
6940 typedef typename View::type StlContainer;
6941 typedef typename View::const_reference StlContainerReference;
6945 explicit ContainerEqMatcher(const Container& rhs) : rhs_(View::Copy(rhs)) {
7218 typedef StlContainerView<RawContainer> View; typedef in class:testing::internal::QuantifierMatcherImpl
7219 typedef typename View::type StlContainer;
7220 typedef typename View::const_reference StlContainerReference;
7234 StlContainerReference stl_container = View::ConstReference(container);
7526 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::ElementsAreMatcherImpl
7527 typedef typename View
7765 typedef internal::StlContainerView<RawContainer> View; typedef in class:testing::internal::UnorderedElementsAreMatcherImpl
7874 typedef typename internal::StlContainerView<RawContainer>::type View; typedef
7899 typedef typename internal::StlContainerView<RawContainer>::type View; typedef
[all...]
/external/vulkan-validation-layers/tests/
H A Dlayer_validation_tests.cpp414 glm::mat4 View = glm::mat4(1.0f); local
416 glm::mat4 MVP = Projection * View * Model;
13735 // View can't have baseMipLevel >= image's mipLevels - Expect
13743 // View can't have baseArrayLayer >= image's arraySize - Expect
13753 // View's levelCount can't be 0 - Expect VIEW_CREATE_ERROR
13762 // View's layerCount can't be 0 - Expect VIEW_CREATE_ERROR
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/guice/extensions/struts2/lib/
H A Djetty-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/jetty/ org/mortbay/jetty/webapp/ ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
H A Dhsqldb.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hsqldb/ org/hsqldb/index/ org/hsqldb/jdbc/ org/ ...

Completed in 794 milliseconds