HomeSort by relevance Sort by last modified time
    Searched defs:ary (Results 1 - 15 of 15) sorted by null

  /external/clang/test/Parser/
builtin_classify_type.c 11 static int ary[__builtin_classify_type(a)]; local
  /external/clang/test/Sema/
incomplete-decl.c 15 int ary[]; // expected-warning {{tentative array definition assumed to have one element}} variable
19 int ary[]; // expected-error{{definition of variable with array type needs an explicit size or an initializer}} local
array-init.c 9 static int ary[] = { x, y, z }; // expected-error{{initializer element is not a compile-time constant}} variable
  /external/selinux/libselinux/src/
compute_user.c 16 char **ary; local
54 ary = malloc((nel + 1) * sizeof(char *));
55 if (!ary) {
62 ary[i] = strdup(ptr);
63 if (!ary[i]) {
64 freeconary(ary);
70 ary[nel] = NULL;
71 *con = ary;
  /external/capstone/bindings/vb6/
mMisc.bas 147 Function AryIsEmpty(ary) As Boolean
151 i = UBound(ary) '<- throws error if not initalized
210 Private Sub bpush(bAry() As Byte, b As Byte) 'this modifies parent ary object
226 Sub push(ary, value) 'this modifies parent ary object
230 x = UBound(ary)
231 ReDim Preserve ary(x + 1)
234 Set ary(x + 1) = value
236 ary(x + 1) = value
241 ReDim ary(0)
282 Dim ary() As Byte variable
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 18 int ary[a]; // expected-error {{size of array has non-integer type 'const std_example::A'}} member in namespace:std_example
  /external/protobuf/ruby/ext/google/protobuf_c/
message.c 211 VALUE ary; local
217 ary = layout_get(self->descriptor->layout, Message_data(self), f);
219 RepeatedField_push(ary, rb_ary_entry(val, i));
repeated_field.c 69 VALUE ary = rb_ary_new2(len); local
73 rb_ary_push(ary, elem);
75 return ary;
379 VALUE ary = rb_ary_new2(self->size); local
383 rb_ary_push(ary, elem);
385 return ary;
542 VALUE ary = Qnil; local
555 ary = argv[2];
563 ary = argv[1];
567 if (ary != Qnil)
    [all...]
storage.c 685 VALUE ary = Qnil; local
694 ary = rb_class_new_instance(2, args, cRepeatedField);
697 ary = rb_class_new_instance(1, args, cRepeatedField);
700 DEREF(memory, VALUE) = ary;
encode_decode.c 118 VALUE ary = (VALUE)closure; \
119 RepeatedField_push_native(ary, &val); \
135 VALUE ary = (VALUE)closure; local
138 RepeatedField_push(ary, str);
146 VALUE ary = (VALUE)closure; local
149 RepeatedField_push(ary, str);
187 VALUE ary = (VALUE)closure; local
195 RepeatedField_push(ary, submsg_rb);
893 static void putary(VALUE ary, const upb_fielddef *f, upb_sink *sink,
900 if (ary == Qnil) return
1074 VALUE ary = DEREF(msg, offset, VALUE); local
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyRepeatedField.java 75 IRubyObject ary = null; local
86 ary = args[2];
92 ary = args[1];
94 if (ary != null) {
95 RubyArray arr = ary.convertToArray();
RubyMessage.java 657 RubyArray ary = value.convertToArray(); local
658 RubyRepeatedField repeatedField = rubyToRepeatedField(context, fieldDescriptor, ary);
    [all...]
  /external/ltp/pan/
ltp-pan.c 83 struct coll_entry **ary; member in struct:collection
547 run_child(coll->ary[c], running + i, quiet_mode,
1249 coll->ary = malloc(coll->cnt * sizeof(struct coll_entry *));
1255 coll->ary[i] = n;
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 3130 const float arx = fabsf(rx), ary = fabsf(ry), arz = fabsf(rz); local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 2362 const GLfloat arx = fabsf(rx), ary = fabsf(ry), arz = fabsf(rz); local
    [all...]

Completed in 3332 milliseconds