Searched defs:index (Results 351 - 375 of 4630) sorted by relevance

<<11121314151617181920>>

/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.cons/
H A Ddtor.pass.cpp35 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
43 assert(index == 4);
48 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
56 assert(index == 5);
61 void f3(std::ios_base::event ev, std::ios_base& stream, int index) argument
69 assert(index == 6);
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
H A Dimbue.pass.cpp37 void f1(std::ios_base::event ev, std::ios_base& stream, int index) argument
45 assert(index == 4);
50 void f2(std::ios_base::event ev, std::ios_base& stream, int index) argument
58 assert(index == 5);
63 void f3(std::ios_base::event ev, std::ios_base& stream, int index) argument
71 assert(index == 6);
/external/libnl/src/lib/
H A Dlink.c57 uint32_t index = nl_cli_parse_u32(arg); local
58 rtnl_link_set_ifindex(link, index);
/external/lzma/CPP/Common/
H A DNewHandler.cpp47 static int index = 0; variable
54 if (index == 40)
58 if (index < kDebugSize)
60 a[index] = p;
61 index++;
91 for (int i = 0; i < index; i++)
/external/lzma/CPP/Windows/
H A DFileName.cpp35 int index = fullName.ReverseFind(kExtensionDelimiter); local
36 if (index < 0)
44 pureName = fullName.Left(index);
46 extension = fullName.Mid(index + 1);
/external/mdnsresponder/mDNSPosix/
H A DmDNSPosix.h44 int index; member in struct:PosixNetworkInterface
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_tgsi_to_rc.h35 unsigned index; member in struct:swizzled_imms
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_constants.c48 uint shader, uint index,
62 assert(index == 0);
47 svga_set_constant_buffer(struct pipe_context *pipe, uint shader, uint index, struct pipe_constant_buffer *cb) argument
H A Dsvga_state_vdecl.c61 * must calculate a common negative additional index bias, and modify
64 * Note that the exact value of the negative index bias is not that
96 unsigned usage, index; local
103 svga_generate_vdecl_semantics( i, &usage, &index );
110 decl.identity.usageIndex = index;
114 * for the negative index bias.
/external/mesa3d/src/glx/
H A Dclientattrib.c44 unsigned index = 0; local
47 index = __glXGetActiveTextureUnit(state);
50 if (!__glXSetArrayEnable(state, array, index, val)) {
/external/mesa3d/src/mesa/main/
H A Dgetstring.c165 _mesa_GetStringi(GLenum name, GLuint index) argument
176 if (index >= _mesa_get_extension_count(ctx)) {
177 _mesa_error(ctx, GL_INVALID_VALUE, "glGetStringi(index=%u)", index);
180 return _mesa_get_enabled_extension(ctx, index);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DLocalVariableNode.java69 * The local variable's index.
71 public int index; field in class:LocalVariableNode
84 * @param index the local variable's index.
92 final int index)
99 this.index = index;
113 index);
86 LocalVariableNode( final String name, final String desc, final String signature, final LabelNode start, final LabelNode end, final int index) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DFactory.java55 * Return the <code>Callback</code> implementation at the specified index.
56 * @param index the callback index
59 Callback getCallback(int index); argument
63 * @param index the callback index to replace
66 void setCallback(int index, Callback callback); argument
H A DLazyLoaderGenerator.java39 int index = context.getIndex(method);
40 indexes.add(new Integer(index));
44 e.invoke_virtual_this(loadMethod(index));
54 int index = ((Integer)it.next()).intValue();
56 String delegate = "CGLIB$LAZY_LOADER_" + index;
62 loadMethod(index),
71 context.emitCallback(e, index);
82 private Signature loadMethod(int index) { argument
83 return new Signature("CGLIB$LOAD_PRIVATE_" + index,
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DFieldProvider.java24 void setField(int index, Object value); argument
26 Object getField(int index); argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
H A DParallelSorterEmitter.java45 private String getFieldName(int index) { argument
46 return "FIELD_" + index;
/external/openssl/crypto/
H A DLPdir_win.c103 size_t index = 0,len_0 = strlen(extdir) + 1; local
121 for (index = 0; index < len_0; index++)
122 wdir[index] = (TCHAR)extdir[index];
155 size_t index, len_0 = 0; local
164 for (index = 0; index < len_0; index
[all...]
/external/oprofile/libdb/
H A Ddb_debug.c26 odb_index_t index = data->hash_base[pos]; local
27 if (index && !do_abort) {
28 while (index) {
29 if (bitmap[index])
32 bitmap[index] = 1;
33 index = data->node_base[index].next;
43 index = data->hash_base[pos];
44 while (index) {
45 printf("%d ", index);
99 odb_index_t index = data->hash_base[pos]; local
[all...]
H A Ddb_insert.c25 odb_index_t index; local
42 index = odb_do_hash(data, key);
43 node->next = data->hash_base[index];
44 data->hash_base[index] = new_node;
61 odb_index_t index; local
66 index = data->hash_base[odb_do_hash(data, key)];
67 while (index) {
68 node = &data->node_base[index];
99 index = node->next;
/external/oprofile/libutil++/
H A Dgrowable_vector.h30 * bounds index will return a default-constructed value.
32 T operator[](size_type index) const {
33 if (index >= container.size())
35 return container[index];
40 * Index into the vector for a value. If the index is larger than
41 * the current max index, the array is expanded, default-filling
44 T & operator[](size_type index) { argument
45 if (index >= container.size())
46 container.resize(index + 1);
47 return container[index];
[all...]
H A Dsparse_array.h28 T operator[](size_type index) const {
29 typename container_type::const_iterator it = container.find(index);
38 * Index into the vector for a value. If the index is larger than
39 * the current max index, a new array entry is created.
41 T & operator[](size_type index) { argument
42 return container[index];
74 * return the maximum index of the array + 1 or 0 if the array
/external/oprofile/module/
H A Dop_dcache.h73 inline static char * get_from_pool(uint index) argument
75 return op_pool_start + index;
/external/proguard/src/proguard/
H A DClassPath.java41 for (int index = 0; index < classPathEntries.size(); index++)
43 if (((ClassPathEntry)classPathEntries.get(index)).isOutput())
60 public void add(int index, ClassPathEntry classPathEntry) argument
62 classPathEntries.add(index, classPathEntry);
75 public ClassPathEntry get(int index) argument
77 return (ClassPathEntry)classPathEntries.get(index);
80 public ClassPathEntry remove(int index) argument
82 return (ClassPathEntry)classPathEntries.remove(index);
[all...]
/external/proguard/src/proguard/classfile/util/
H A DDescriptorClassEnumeration.java37 private int index; field in class:DescriptorClassEnumeration
70 index = 0;
82 return index < descriptor.length();
91 int fluffStartIndex = index;
94 loop: while (index < descriptor.length())
96 switch (descriptor.charAt(index++))
148 while (descriptor.charAt(index++) != ClassConstants.INTERNAL_TYPE_CLASS_END);
154 descriptor.charAt(index) != ClassConstants.INTERNAL_TYPE_GENERIC_END)
158 while (descriptor.charAt(index++) != ClassConstants.INTERNAL_TYPE_GENERIC_BOUND);
162 return descriptor.substring(fluffStartIndex, index);
[all...]
H A DExternalTypeEnumeration.java40 private int index; field in class:ExternalTypeEnumeration
64 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN) + 1;
66 if (index < 1)
75 return index < descriptor.length() - 1;
81 int startIndex = index;
84 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_SEPARATOR,
88 if (index < 0)
90 index = descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_CLOSE,
92 if (index < 0)
98 return descriptor.substring(startIndex, index
[all...]

Completed in 488 milliseconds

<<11121314151617181920>>