HomeSort by relevance Sort by last modified time
    Searched full:subscript (Results 1 - 25 of 373) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
warn-char-subscripts.c 5 char subscript = 0; local
6 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
11 char subscript = 0; local
12 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
17 char subscript = 0; local
18 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
23 char subscript = 0 local
35 signed char subscript = 0; local
41 unsigned char subscript = 0; local
48 CharTy subscript = 0; local
55 SignedCharTy subscript = 0; local
62 UnsignedCharTy subscript = 0; local
    [all...]
vector-ops.c 23 (void)(array2[v2ua]); // expected-error{{array subscript is not an integer}}
pointer-addition.c 12 (void) c[1]; // expected-warning {{subscript of a pointer to void is a GNU extension}}
  /external/clang/test/SemaCXX/
warn-char-subscripts.cpp 6 T subscript = 0; local
7 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
13 T subscript = 0; local
14 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
  /external/chromium_org/v8/test/webkit/
tostring-exception-in-property-access.js 24 description("This tests that the various subscript operators handle subscript string conversion exceptions correctly.");
27 var target = {"" : "Did not assign to property when setter subscript threw"};
30 target[toStringThrower] = "Assigned to property on object when subscript threw";
34 shouldBe('target[""]', "'Did not assign to property when setter subscript threw'");
36 target[""] = "Did not delete property when subscript threw";
42 shouldBe('target[""]', "'Did not delete property when subscript threw'");
47 testFailed('FAIL: Loaded property from object when subscript threw.');
48 return "FAIL: Assigned to result when subscript threw.";
50 var localTest = "Did not assign to result when subscript threw."
    [all...]
tostring-exception-in-property-access-expected.txt 24 This tests that the various subscript operators handle subscript string conversion exceptions correctly.
30 PASS target[""] is 'Did not assign to property when setter subscript threw'
32 PASS target[""] is 'Did not delete property when subscript threw'
34 PASS localTest is 'Did not assign to result when subscript threw.'
  /external/clang/test/Analysis/
objc-subscript.m 51 if (o[self]) // expected-warning {{Subscript access on an uninitialized object pointer}}
54 if (o[0]) // expected-warning {{Subscript access on an uninitialized object pointer}}
66 self[0] = o; // expected-warning {{Argument for subscript setter is an uninitialized value}}
69 self[i] = input; // expected-warning {{Subscript index is an uninitialized value}}
72 (void)self[i]; // expected-warning {{Subscript index is an uninitialized value}}
75 self[input] = o; // expected-warning {{Argument for subscript setter is an uninitialized value}}
78 self[o] = input; // expected-warning {{Subscript index is an uninitialized value}}
81 (void)self[o]; // expected-warning {{Subscript index is an uninitialized value}}
  /external/clang/test/SemaObjC/
objc-container-subscripting-2.m 19 array[f] = array; // expected-error {{indexing expression is invalid because subscript type 'float' is not an integral or Objective-C pointer type}}
20 return array[3.14]; // expected-error {{indexing expression is invalid because subscript type 'double' is not an integral or Objective-C pointer type}}
objc-dictionary-literal.m 30 dict["name"] = @666; // expected-error {{indexing expression is invalid because subscript type 'char *' is not an Objective-C pointer}}
arc-dict-bridged-cast.m 31 infoDictionary[kCFBundleNameKey] = 0; // expected-error {{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}} \
35 return infoDictionary[CFStringCreateMutable(((void*)0), 100)]; // expected-error {{indexing expression is invalid because subscript type 'CFMutableStringRef' (aka 'struct __CFString *') is not an integral or Objective-C pointer type}} \
format-strings-objc.m 222 NSLog(@"no specifiers", dict[CFSTR("abc")]); // expected-error{{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}}
223 NSLog(@"%@", dict[CFSTR("abc")]); // expected-error{{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}}
224 NSLog(@"%@ %@", dict[CFSTR("abc")]); // expected-error{{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}}
226 [Foo fooWithFormat:@"no specifiers", dict[CFSTR("abc")]]; // expected-error{{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}}
227 [Foo fooWithFormat:@"%@", dict[CFSTR("abc")]]; // expected-error{{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}}
228 [Foo fooWithFormat:@"%@ %@", dict[CFSTR("abc")]]; // expected-error{{indexing expression is invalid because subscript type 'CFStringRef' (aka 'const struct __CFString *') is not an integral or Objective-C pointer type}} expected-warning{{more '%' conversions than data arguments}}
  /external/icu4c/layout/
KhmerReordering.h 25 // Base -> A consonant or an independent vowel in its full (not subscript) form. It is the
26 // center of the syllable, it can be souranded by coeng (subscript) consonants, vowels,
34 // coeng --> modifier used in Khmer to construct coeng (subscript) consonants
36 // not the one preceding it Each consonant has two forms, the base form and the subscript form
37 // the base form is the normal one (using the consonants code-point), the subscript form is
39 // Consonant of type 1 -> A consonant which has subscript for that only occupies space under a base consonant
40 // Consonant of type 2.-> Its subscript form occupies space under and before the base (only one, RO)
41 // Consonant of Type 3 -> Its subscript form occupies space under and after the base (KHO, CHHO, THHO, BA, YO, SA)
51 // superscript, they change shape and take the form of subscript dependent vowel SRA U.
74 CC_COENG = 7, // Subscript consonant combining characte
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
29 attr.append(Subscript(index))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
29 attr.append(Subscript(index))
  /external/clang/test/SemaObjCXX/
objc-container-subscripting.mm 35 base[index] = obj; // expected-error {{indexing expression is invalid because subscript type 'double' is not an integral or Objective-C pointer type}}
36 obj = base[index]; // expected-error {{indexing expression is invalid because subscript type 'double' is not an integral or Objective-C pointer type}}
75 toArrayExplicit[2] = toId; // expected-error {{type 'ExplicitlyConvertibleTo<NSMutableArray *>' does not provide a subscript operator}}
136 return array[w]; // expected-error {{indexing expression is invalid because subscript type 'WeirdIndex' has multiple type conversion functions}}
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 172 /// if no subscript in the source or destination mention the induction
266 /// if no subscript in the source or destination mention the induction
342 /// Subscript - This private struct represents a pair of subscripts from
344 /// vector of them to guide subscript partitioning.
345 struct Subscript {
526 /// removeMatchingExtensions - Examines a subscript pair.
530 void removeMatchingExtensions(Subscript *Pair);
570 /// classifyPair - Examines the subscript pair (the Src and Dst SCEVs)
573 Subscript::ClassificationKind classifyPair(const SCEV *Src,
579 /// testZIV - Tests the ZIV subscript pair (Src and Dst) for dependence
    [all...]
  /external/clang/docs/
ObjectiveCLiterals.rst 312 Objective-C supports two kinds of subscript expressions: *array-style*
313 subscript expressions use integer typed subscripts; *dictionary-style*
314 subscript expressions use Objective-C object pointer typed subscripts.
315 Each type of subscript expression is mapped to a message send using a
319 the type of the subscript, an object can be subscripted using both array
325 When the subscript operand has an integral type, the expression is
380 When the subscript operand has an Objective-C object pointer type, the
384 subscript operand, as in the following example:
398 subscript:
418 An Objective-C subscript expression occurs when the base operand of th
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
graminit.h 71 #define subscript 324 macro
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
graminit.h 71 #define subscript 324 macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
Grammar.txt 134 subscriptlist: subscript (',' subscript)* [',']
135 subscript: test | [test] ':' [test] [sliceop]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
Grammar.txt 134 subscriptlist: subscript (',' subscript)* [',']
135 subscript: test | [test] ':' [test] [sliceop]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 23 // coupled RDIV subscripts and lacks a multi-subscript MIV test.
37 // Some non-linear subscript pairs can be handled by the GCD test
75 STATISTIC(SeparableSubscriptPairs, "Separable subscript pairs");
76 STATISTIC(CoupledSubscriptPairs, "Coupled subscript pairs");
77 STATISTIC(NonlinearSubscriptPairs, "Nonlinear subscript pairs");
213 // if no subscript in the source or destination mention the induction
252 // if no subscript in the source or destination mention the induction
781 // removeMatchingExtensions - Examines a subscript pair.
785 void DependenceAnalysis::removeMatchingExtensions(Subscript *Pair) {
835 // Examines the subscript pair (the Src and Dst SCEVs
    [all...]
  /external/harfbuzz/src/
harfbuzz-khmer.c 33 // Base -> A consonant or an independent vowel in its full (not subscript) form. It is the
34 // center of the syllable, it can be surrounded by coeng (subscript) consonants, vowels,
42 // coeng --> modifier used in Khmer to construct coeng (subscript) consonants
44 // not the one preceding it Each consonant has two forms, the base form and the subscript form
45 // the base form is the normal one (using the consonants code-point), the subscript form is
47 // Consonant of type 1 -> A consonant which has subscript for that only occupies space under a base consonant
48 // Consonant of type 2.-> Its subscript form occupies space under and before the base (only one, RO)
49 // Consonant of Type 3 -> Its subscript form occupies space under and after the base (KHO, CHHO, THHO, BA, YO, SA)
59 // superscript, they change shape and take the form of subscript dependent vowel SRA U.
80 CC_COENG = 7, /* Subscript consonant combining character *
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-khmer.c 33 // Base -> A consonant or an independent vowel in its full (not subscript) form. It is the
34 // center of the syllable, it can be surrounded by coeng (subscript) consonants, vowels,
42 // coeng --> modifier used in Khmer to construct coeng (subscript) consonants
44 // not the one preceding it Each consonant has two forms, the base form and the subscript form
45 // the base form is the normal one (using the consonants code-point), the subscript form is
47 // Consonant of type 1 -> A consonant which has subscript for that only occupies space under a base consonant
48 // Consonant of type 2.-> Its subscript form occupies space under and before the base (only one, RO)
49 // Consonant of Type 3 -> Its subscript form occupies space under and after the base (KHO, CHHO, THHO, BA, YO, SA)
59 // superscript, they change shape and take the form of subscript dependent vowel SRA U.
80 CC_COENG = 7, /* Subscript consonant combining character *
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefinedArraySubscriptChecker.cpp 53 BT.reset(new BuiltinBug("Array subscript is undefined"));

Completed in 969 milliseconds

1 2 3 4 5 6 7 8 91011>>