/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | validationGL45_autogen.h | 153 GLuint index); 156 GLuint index); 277 GLuint index, 282 GLuint index, 290 GLuint index, 295 GLuint index, 556 GLuint index, 560 GLuint index,
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | runtime.py | 205 index = blocks.index(current) + 1 206 blocks[index] 211 return BlockReference(name, self, blocks, index) 428 self._length = len(iterable) + self.index + (self._after is not missing) 441 def index(self): member in LoopContext 451 return self.length - self.index 567 return "<%s %d/%d>" % (self.__class__.__name__, self.index, self.length)
|
/third_party/skia/src/sksl/ |
H A D | SkSLConstantFolder.cpp | 159 for (int index = 0; index < numSlots; ++index) { in contains_constant_zero() 160 skstd::optional<double> slotVal = expr.getConstantValue(index); in contains_constant_zero() 170 for (int index = 0; index < numSlots; ++index) { in is_constant_value() 171 skstd::optional<double> slotVal = expr.getConstantValue(index); in is_constant_value()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | duplicateLocalVariable1.js | 18 return (arg1.every(function (val, index) { return val === arg2[index] })); 183 fb.index = 0; 207 savedFile.index = 0; 288 }, "Invalid UTF8 byte sequence at index: 4")); 295 }, "Trailing byte invalid at index: 8")); 302 }, "Trailing byte invalid at index: 6")); 340 }, "Codepoint at index: 3 has control value: 8")); 367 return (arg1.every(function (val, index) { return val === arg2[index]; }));
[all...] |
/third_party/python/Lib/ |
H A D | tracemalloc.py | 203 def __getitem__(self, index): 204 if isinstance(index, slice): 205 return tuple(Frame(trace) for trace in self._frames[index]) 207 return Frame(self._frames[index]) 320 def __getitem__(self, index): 321 if isinstance(index, slice): 322 return tuple(Trace(trace) for trace in self._traces[index]) 324 return Trace(self._traces[index])
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fProgramInterfaceDefinition.cpp | 108 const int index = (int)(it - DE_ARRAY_BEGIN(s_shaderStageOrder)); in getShaderStageIndex() local 109 return index; in getShaderStageIndex() 502 const int index = getShaderStageIndex(m_shaders[shaderNdx]->getType()); 503 if (index != -1) 504 firstStage = de::min(firstStage, index); 520 const int index = getShaderStageIndex(m_shaders[shaderNdx]->getType()); 521 if (index != -1) 522 lastStage = de::max(lastStage, index);
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fDefaultVertexAttributeTests.cpp | 82 virtual tcu::Vec4 load (glu::CallLogWrapper& gl, int index, const tcu::Vec4& v) const = 0; 99 tcu::Vec4 load (glu::CallLogWrapper& gl, int index, const tcu::Vec4& v) const \ 133 tcu::Vec4 load (glu::CallLogWrapper& gl, int index, const tcu::Vec4& v) const \ 138 gl.glVertexAttrib ##COMPS ##TYPECODE (index, value.getPtr()); \ 153 GEN_DIRECT_FLOAT_LOADER(float, 1, f, "vertex_attrib_1f", (index, value.x())); 154 GEN_DIRECT_FLOAT_LOADER(float, 2, f, "vertex_attrib_2f", (index, value.x(), value.y())); 155 GEN_DIRECT_FLOAT_LOADER(float, 3, f, "vertex_attrib_3f", (index, value.x(), value.y(), value.z())); 156 GEN_DIRECT_FLOAT_LOADER(float, 4, f, "vertex_attrib_4f", (index, value.x(), value.y(), value.z(), value.w()));
|
/foundation/ai/neural_network_runtime/interfaces/kits/c/neural_network_runtime/ |
H A D | neural_network_core.h | 867 * You can get the input tensor count from the executor, and then create an input tensor descriptor with its index by 883 * You can get the output tensor count from the executor, and then create an output tensor descriptor with its index by 897 * @brief Creates an input tensor descriptor with its index. 900 * If the <b>index</b> is greater than or equal to the input tensor number, this method will return error code. 904 * @param index Input tensor index. 909 NN_TensorDesc *OH_NNExecutor_CreateInputTensorDesc(const OH_NNExecutor *executor, size_t index); 912 * @brief Creates an output tensor descriptor with its index. 915 * If the <b>index</b> is greater than or equal to the output tensor number, this method will return error code. 919 * @param index Outpu [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/ |
H A D | layout_wrapper_node.h | 104 uint32_t index, bool addToRenderTree = true, bool isCache = false) override; 106 RefPtr<LayoutWrapper> GetChildByIndex(uint32_t index, bool isCache = false) override 118 void RemoveChildInRenderTree(uint32_t index) override; 230 // Used to save a persist wrapper created by child, ifElse, ForEach, the map stores [index, Wrapper]. 232 // Speed up the speed of getting child by index.
|
/foundation/arkui/ace_engine/adapter/ohos/osal/ |
H A D | image_source_ohos.cpp | 88 uint32_t index, const Size& size, AIImageQuality imageQuality, bool isHdrDecoderNeed) in CreatePixelMap() 102 auto pixmap = imageSource_->CreatePixelMapEx(index, options, errorCode); in CreatePixelMap() 105 "create PixelMap from ImageSource failed, index = %{public}u, errorCode = %{public}u", index, errorCode); in CreatePixelMap() 87 CreatePixelMap( uint32_t index, const Size& size, AIImageQuality imageQuality, bool isHdrDecoderNeed) CreatePixelMap() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/ |
H A D | text_base.cpp | 162 auto index = GetTouchIndex({ localOffset.GetX(), localOffset.GetY() }); in DoTextSelectionTouchMove() local 163 auto start = std::min(index, start_); in DoTextSelectionTouchMove() 164 auto end = std::max(index, end_); in DoTextSelectionTouchMove()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/ |
H A D | tab_bar_layout_algorithm.h | 102 void MeasureItem(LayoutWrapper* layoutWrapper, LayoutConstraintF& childLayoutConstraint, int32_t index); 123 void SetTabBarMargin(RefPtr<LayoutWrapper> layoutWrapper, int32_t index); 124 void UpdateMaxLines(LayoutWrapper* layoutWrapper, int32_t index);
|
/foundation/arkui/ace_engine/interfaces/napi/kits/overlay/ |
H A D | js_overlay.cpp | 62 int32_t index = 0; in JSAddFrameNode() local 63 napi_get_value_int32(env, argv[1], &index); in JSAddFrameNode() 64 delegate->AddFrameNodeToOverlay(AceType::Claim(frameNode), index); in JSAddFrameNode() local
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | repeat_virtual_scroll_node.h | 78 * - start: the first visible index 79 * - end: the last visible index 86 * those items with index in range [ start ... end ] are marked active 94 bool CheckNode4IndexInL1(int32_t index, int32_t start, int32_t end, int32_t cacheStart, int32_t cacheEnd, 98 * those items with index in cachedItems are marked active 99 * those items with index in cachedItems are marked inactive 100 * baseIndex is repeat first node index 106 // meant to inform which items with index [ from .. to ] can be recycled / updated 113 for given index 114 either returns existing item for index fro [all...] |
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/quick_fix/ |
H A D | quick_fix_result_info.cpp | 45 for (int32_t index = 0; index < moduleNameSize; ++index) { in ReadFromParcel()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/ |
H A D | tabs_test_ng.h | 85 TabsModelNG CreateTabs(BarPosition barPosition = BarPosition::START, int32_t index = 0); 93 void SwipeToWithoutAnimation(int32_t index); 94 void HandleClick(Offset offset, int32_t index);
|
/foundation/multimedia/av_codec/services/media_engine/filters/ |
H A D | surface_encoder_adapter.h | 84 void TransCoderOnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer);
85 void OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer);
89 void OnInputParameterWithAttrAvailable(uint32_t index, std::shared_ptr<Format> &attribute,
|
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/systems/ |
H A D | intf_node_system.h | 108 /** Add the given node as a child of this node. The node will be inserted to the given index, or last if the index 110 * @param index Insert location. 114 virtual bool InsertChild(size_t index, ISceneNode& node) = 0; 122 /** Remove the node at the given index from this node. 123 * @param index Location to remove. 124 * @return true if node could be removed, false if index is out of bounds. 126 virtual bool RemoveChild(size_t index) = 0; 246 * @param index Index where node was added or removed. 249 const ISceneNode& parent, EventType type, const ISceneNode& child, size_t index) [all...] |
/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/include/ecs_serializer/ |
H A D | intf_entity_collection.h | 77 virtual IEntityCollection* GetSubCollection(size_t index) = 0; 78 virtual const IEntityCollection* GetSubCollection(size_t index) const = 0; 83 virtual void RemoveSubCollection(size_t index) = 0;
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/ |
H A D | mesh_component_manager.cpp | 112 const Property* MetaData(size_t index) const override 114 if (index < componentMetaData_.size()) { 115 return &componentMetaData_[index];
|
H A D | camera_component_manager.cpp | 130 const Property* MetaData(size_t index) const override 132 if (index < componentMetaData_.size()) { 133 return &componentMetaData_[index];
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_node_stats.cpp | 114 std::pair<RSNodeDescription, RSNodeCount> RSNodeStats::GetNodeStatsToReportByIndex(size_t index) const in GetNodeStatsToReportByIndex() 116 if (index < rsNodeStatsVec_.size()) { in GetNodeStatsToReportByIndex() 117 const RSNodeStatsType& nodeStats = rsNodeStatsVec_.at(index); in GetNodeStatsToReportByIndex()
|
/foundation/graphic/graphic_2d/rosen/samples/text/renderservice/ |
H A D | drawing_text_c_sample.cpp | 38 void DoDraw(uint8_t *addr, uint32_t width, uint32_t height, size_t index) in DoDraw() argument 94 void DrawSurface(std::shared_ptr<RSSurfaceNode> surfaceNode, int32_t width, int32_t height, size_t index) in DrawSurface() argument 125 DoDraw(addr, buffer->GetWidth(), buffer->GetHeight(), index); in DrawSurface()
|
H A D | main.cpp | 65 void DoDraw(uint8_t *addr, uint32_t width, uint32_t height, size_t index)
in DoDraw() argument 110 void DrawSurface(std::shared_ptr<RSSurfaceNode> surfaceNode, int32_t width, int32_t height, size_t index)
in DrawSurface() argument 142 DoDraw(addr, buffer->GetWidth(), buffer->GetHeight(), index);
in DrawSurface()
|
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/export/rosen_text/ |
H A D | typography.h | 61 size_t index; member 136 virtual float DetectIndents(size_t index) = 0; 146 virtual Boundary GetWordBoundaryByIndex(size_t index) = 0;
|