Home
last modified time | relevance | path

Searched refs:index (Results 2826 - 2850 of 9059) sorted by relevance

1...<<111112113114115116117118119120>>...363

/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DAbstractPathValueMapper.java38 // optional index separately. Note that this is very sloppy matching and the path string will
143 * having an array index) then the referenced value is assumed to be an existing path whose
218 // If no index is given (e.g. "/foo/bar") then treat it as index 0 (i.e. "/foo/bar[0]"). in parse()
219 int index = m.group(2) != null ? Integer.parseUnsignedInt(m.group(2)) : 0; in parse()
224 checkArgument(index < values.size(), in parse()
225 "index for alias /%s[%s] is out of bounds", path, index); in parse()
230 return values.get(index).resolve(null); in parse()
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dutils.h275 T& operator[](int index) const {
276 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_);
277 return start_[index];
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DgenIndexFilters.bat25 # This perl script updates the filters in the transliterator index file.
32 # will have to hand-edit the index file.
34 # This script writes a new index file. The new file has to then be
71 # Convert the index file from Java to C format
/third_party/icu/icu4c/source/i18n/
H A Dcollationdatabuilder.h179 inline ConditionalCE32 *getConditionalCE32(int32_t index) const { in getConditionalCE32()
180 return static_cast<ConditionalCE32 *>(conditionalCE32s[index]); in getConditionalCE32()
186 static uint32_t makeBuilderContextCE32(int32_t index) { in makeBuilderContextCE32() argument
187 return Collation::makeCE32FromTagAndIndex(Collation::BUILDER_DATA_TAG, index); in makeBuilderContextCE32()
201 * Sets cond->next to the index of the first new item
202 * and returns the index of the last new item.
H A Ddouble-conversion-utils.h288 T& operator[](int index) const {
289 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_);
290 return start_[index];
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-string.c292 for (ecma_length_t index = 0; index < args_number; index++) in ecma_builtin_string_object_from_code_point()
294 ecma_value_t to_number_value = ecma_op_to_number (args[index]); in ecma_builtin_string_object_from_code_point()
/third_party/jerryscript/jerry-core/vm/
H A Dvm-stack.c103 for (uint32_t index = vm_stack_top_p[-3]; index < collection_p->item_count; index++) in vm_stack_context_abort()
105 ecma_free_value (buffer_p[index]); in vm_stack_context_abort()
/third_party/mesa3d/src/gtest/src/
H A Dgtest-printers.cc273 for (size_t index = 0; index < len; ++index) { in PrintCharsAsStringTo()
274 const CharType cur = begin[index]; in PrintCharsAsStringTo()
/third_party/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_query.c96 unsigned query_type, unsigned index) in virgl_create_query()
122 pipe_to_virgl_query(query_type), index, query->buf, 0); in virgl_create_query()
242 int index, in virgl_get_query_result_resource()
250 virgl_encode_get_query_result_qbo(vctx, query->handle, qbo, (flags & PIPE_QUERY_WAIT), result_type, offset, index); in virgl_get_query_result_resource()
95 virgl_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) virgl_create_query() argument
238 virgl_get_query_result_resource(struct pipe_context *ctx, struct pipe_query *q, enum pipe_query_flags flags, enum pipe_query_value_type result_type, int index, struct pipe_resource *resource, unsigned offset) virgl_get_query_result_resource() argument
/third_party/node/lib/
H A Dpunycode.js234 for (let index = basic > 0 ? basic + 1 : 0; index < inputLength; /* no final expression */) {
236 // `index` is the index of the next character to be consumed.
244 if (index >= inputLength) {
248 const digit = basicToDigit(input.charCodeAt(index++));
/third_party/musl/porting/linux/user/include/fortify/
H A Dunistd.h35 #define __DIAGNOSE_BOS_TRIVIALLY_GE_NO_OVERFLOW(bos_val, index) \
36 ((__DIAGNOSE_BOS_DYNAMIC_CHECK_IMPL_AND((bos_val), >=, (index), (bos_val) <= (FORTIFY_SSIZE_MAX)) && \
37 __builtin_constant_p(index) && (index) <= (FORTIFY_SSIZE_MAX)))
/third_party/node/deps/icu-small/source/i18n/
H A Dcollationdatabuilder.h179 inline ConditionalCE32 *getConditionalCE32(int32_t index) const { in getConditionalCE32()
180 return static_cast<ConditionalCE32 *>(conditionalCE32s[index]); in getConditionalCE32()
186 static uint32_t makeBuilderContextCE32(int32_t index) { in makeBuilderContextCE32() argument
187 return Collation::makeCE32FromTagAndIndex(Collation::BUILDER_DATA_TAG, index); in makeBuilderContextCE32()
201 * Sets cond->next to the index of the first new item
202 * and returns the index of the last new item.
H A Ddouble-conversion-utils.h288 T& operator[](int index) const {
289 DOUBLE_CONVERSION_ASSERT(0 <= index && index < length_);
290 return start_[index];
H A Dtransreg.h275 * Return the index-th available ID. index must be between 0
276 * and countAvailableIDs() - 1, inclusive. If index is out of
278 * @param index the given index.
279 * @return the index-th available ID. index must be between 0
280 * and countAvailableIDs() - 1, inclusive. If index is out of
284 const UnicodeString& getAvailableID(int32_t index) const;
294 * @param index whic
[all...]
/third_party/node/deps/v8/src/ast/
H A Dmodules.h95 // requested. It also functions as an index into the SourceTextModuleInfo's
103 // variable allocation, this will be be copied into the variable's index
129 int index) in AstModuleRequest()
133 index_(index) {} in AstModuleRequest()
144 int index() const { return index_; } in index() function in v8::internal::SourceTextModuleDescriptor::AstModuleRequest
153 // The index at which we will place the request in SourceTextModuleInfo's
276 return (*it)->index(); in AddModuleRequest()
127 AstModuleRequest(const AstRawString* specifier, const ImportAssertions* import_assertions, int position, int index) AstModuleRequest() argument
/third_party/node/deps/v8/src/execution/
H A Dmessages.h92 Isolate* isolate, Handle<JSFunction> constructor, MessageTemplate index,
124 V8_EXPORT_PRIVATE static const char* TemplateString(MessageTemplate index);
127 MessageTemplate index,
132 static Handle<String> Format(Isolate* isolate, MessageTemplate index,
/third_party/node/deps/v8/src/heap/
H A Dobjects-visiting.cc149 WeakObjectRetainer* retainer, int index) { in DoWeakList()
151 Object list_head = VisitWeakList<T>(heap, context.get(index), retainer); in DoWeakList()
154 context.set(index, list_head, UPDATE_WRITE_BARRIER); in DoWeakList()
158 ObjectSlot head_slot = context.RawField(FixedArray::SizeFor(index)); in DoWeakList()
/third_party/node/deps/v8/src/interpreter/
H A Dcontrol-flow-builders.cc110 void SwitchBuilder::BindCaseTargetForCompareJump(int index, in BindCaseTargetForCompareJump() argument
112 builder()->Bind(&case_sites_.at(index)); in BindCaseTargetForCompareJump()
117 int index) { in JumpToCaseIfTrue()
118 builder()->JumpIfTrue(mode, &case_sites_.at(index)); in JumpToCaseIfTrue()
116 JumpToCaseIfTrue(BytecodeArrayBuilder::ToBooleanMode mode, int index) JumpToCaseIfTrue() argument
/third_party/node/deps/v8/src/maglev/
H A Dmaglev-compiler.cc116 int index = 0; in MarkCheckpointNodes() local
121 node->mark_use(use_id, &deopt_info->input_locations[index++]); in MarkCheckpointNodes()
129 int index = 0; in MarkCheckpointNodes() local
136 node->mark_use(use_id, &deopt_info->input_locations[index++]); in MarkCheckpointNodes()
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_image.c223 unsigned index = u_bit_scan(&enabled_mask); in fd5_emit_images() local
226 translate_image(&img, &so->si[index]); in fd5_emit_images()
228 emit_image_tex(ring, m->image_to_tex[index] + m->tex_base, &img, shader); in fd5_emit_images()
229 emit_image_ssbo(ring, v->num_ssbos + index, &img, in fd5_emit_images()
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dcodegen.h85 unsigned index : 6; member
120 unsigned index : 12; member
136 unsigned index : 16; member
283 unsigned index : 16; member
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_descriptor_pool.cpp160 const uint32_t index = handle->cpu_handle.ptr - handle->heap->cpu_base; in d3d12_descriptor_handle_free() local
161 if (index + handle->heap->desc_size == handle->heap->next) { in d3d12_descriptor_handle_free()
162 handle->heap->next = index; in d3d12_descriptor_handle_free()
164 util_dynarray_append(&handle->heap->free_list, uint32_t, index); in d3d12_descriptor_handle_free()
/third_party/musl/include/fortify/linux/
H A Dunistd.h35 #define __DIAGNOSE_BOS_TRIVIALLY_GE_NO_OVERFLOW(bos_val, index) \
36 ((__DIAGNOSE_BOS_DYNAMIC_CHECK_IMPL_AND((bos_val), >=, (index), (bos_val) <= (FORTIFY_SSIZE_MAX)) && \
37 __builtin_constant_p(index) && (index) <= (FORTIFY_SSIZE_MAX)))
/third_party/musl/libc-test/src/functionalext/unittest/
H A Dunit_test_hilog_adapter.c57 void GenerateRandomString(char* randomString, int index) in GenerateRandomString() argument
63 (void)sprintf_s(randomString, STR_LENGTH, "%02d", index); in GenerateRandomString()
176 int index = (int)arg; in FunctionPrintLog() local
178 "FunctionPrintLog %{public}s", str[index]); in FunctionPrintLog()
/third_party/python/Lib/idlelib/
H A Dcalltip_w.py37 curline = int(self.anchor_widget.index("insert").split('.')[0])
52 curline = int(self.anchor_widget.index("insert").split('.')[0])
63 parenleft: index of the opening parenthesis in the text widget
64 parenright: index of the closing parenthesis in the text widget,
74 int, self.anchor_widget.index(parenleft).split("."))
98 curline, curcol = map(int, self.anchor_widget.index("insert").split('.'))

Completed in 16 milliseconds

1...<<111112113114115116117118119120>>...363