/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'}}
|
cxx0x-initializer-scalars.cpp | 56 (void) ar[{1}]; // expected-error {{array subscript is not an integer}}
|
/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 | 221 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}} 222 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}} 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}} 225 [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}} 226 [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}} 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}} 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...] |
/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 | 163 /// if no subscript in the source or destination mention the induction 232 /// if no subscript in the source or destination mention the induction 308 /// Subscript - This private struct represents a pair of subscripts from 310 /// vector of them to guide subscript partitioning. 311 struct Subscript { 492 /// removeMatchingExtensions - Examines a subscript pair. 496 void removeMatchingExtensions(Subscript *Pair); 536 /// classifyPair - Examines the subscript pair (the Src and Dst SCEVs) 539 Subscript::ClassificationKind classifyPair(const SCEV *Src, 545 /// testZIV - Tests the ZIV subscript pair (Src and Dst) for dependence [all...] |
/external/webkit/Source/JavaScriptCore/parser/ |
NodeConstructors.h | 184 inline BracketAccessorNode::BracketAccessorNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, bool subscriptHasAssignments) 187 , m_subscript(subscript) 261 inline FunctionCallBracketNode::FunctionCallBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset) 265 , m_subscript(subscript) 302 inline PostfixBracketNode::PostfixBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) 306 , m_subscript(subscript) 335 inline DeleteBracketNode::DeleteBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, unsigned divot, unsigned startOffset, unsigned endOffset) 339 , m_subscript(subscript) 381 inline PrefixBracketNode::PrefixBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, Operator oper, unsigned divot, unsigned startOffset, unsigned endOffset) 385 , m_subscript(subscript) [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...] |
/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 | 40 BT.reset(new BuiltinBug("Array subscript is undefined"));
|
/external/e2fsprogs/lib/ss/ |
request_tbl.c | 35 /* size == C subscript of NULL == #elements */
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebEditCommandProxy.cpp | 115 return WEB_UI_STRING_KEY("Subscript", "Subscript (Undo action name)", "Undo action name");
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
Python.g | 338 : subscript (options {greedy=true;}:COMMA subscript)* (COMMA)? 341 subscript
|
/external/llvm/docs/HistoricalNotes/ |
2000-12-06-MeetingSummary.txt | 11 of the original variable and the SSA instance subscript.
|
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGAliasTracker.h | 60 // This check ensures the accesses alias, provided that the subscript is an
|
/external/webkit/Source/JavaScriptCore/jit/ |
JITStubs.cpp | 2346 JSValue subscript = stackFrame.args[1].jsValue(); local 2392 JSValue subscript = stackFrame.args[1].jsValue(); local 2422 JSValue subscript = stackFrame.args[1].jsValue(); local 2471 JSValue subscript = stackFrame.args[1].jsValue(); local 2519 JSValue subscript = stackFrame.args[1].jsValue(); local 3497 JSValue subscript = stackFrame.args[1].jsValue(); local [all...] |