HomeSort by relevance Sort by last modified time
    Searched full:subscript (Results 1 - 25 of 511) 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'}}
cxx0x-initializer-scalars.cpp 56 (void) ar[{1}]; // expected-error {{array subscript is not an integer}}
  /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}}
  /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/
LoopDependenceAnalysis.h 49 struct Subscript {
59 SmallVector<Subscript, 4> Subscripts;
86 DependenceResult analyseZIV(const SCEV*, const SCEV*, Subscript*) const;
87 DependenceResult analyseSIV(const SCEV*, const SCEV*, Subscript*) const;
88 DependenceResult analyseMIV(const SCEV*, const SCEV*, Subscript*) const;
89 DependenceResult analyseSubscript(const SCEV*, const SCEV*, Subscript*) const;
  /external/llvm/lib/Analysis/
LoopDependenceAnalysis.cpp 18 // TODO: document lingo (pair, subscript, index)
170 Subscript *S) const {
178 Subscript *S) const {
185 Subscript *S) const {
192 Subscript *S) const {
193 DEBUG(dbgs() << " Testing subscript: " << *A << ", " << *B << "\n");
271 // to the first subscript. If we have e.g. (GEP x,0,i; GEP x,2,-i) and we
272 // know that x is a [100 x i8]*, we could modify the first subscript to be
280 Subscript subscript; local
    [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...]
Nodes.h 452 BracketAccessorNode(JSGlobalData*, ExpressionNode* base, ExpressionNode* subscript, bool subscriptHasAssignments);
455 ExpressionNode* subscript() const { return m_subscript; } function in class:JSC::BracketAccessorNode
553 FunctionCallBracketNode(JSGlobalData*, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
612 PostfixBracketNode(JSGlobalData*, ExpressionNode* base, ExpressionNode* subscript, Operator, unsigned divot, unsigned startOffset, unsigned endOffset);
657 DeleteBracketNode(JSGlobalData*, ExpressionNode* base, ExpressionNode* subscript, unsigned divot, unsigned startOffset, unsigned endOffset);
731 PrefixBracketNode(JSGlobalData*, ExpressionNode* base, ExpressionNode* subscript, Operator, unsigned divot, unsigned startOffset, unsigned endOffset);
    [all...]
  /external/clang/docs/
ObjectiveCLiterals.html 247 Objective-C supports two kinds of subscript expressions: <i>array-style</i> subscript expressions use integer typed subscripts; <i>dictionary-style</i> subscript expressions use Objective-C object pointer typed subscripts. Each type of subscript expression is mapped to a message send using a predefined selector. The advantage of this design is flexibility: class designers are free to introduce subscripting by declaring methods or by adopting protocols. Moreover, because the method names are selected by the type of the subscript, an object can be subscripted using both array and dictionary styles.
251 When the subscript operand has an integral type, the expression is rewritten to use one of two different selectors, depending on whether the element is being read or written. When an expression reads an element using an integral index, as in the following example:<p>
284 When the subscript operand has an Objective-C object pointer type, the expression is rewritten to use one of two different selectors, depending on whether the element is being read from or written to. When an expression reads an element using an Objective-C object pointer subscript operand, as in the following example:<p>
297 When an expression writes an element using an Objective-C object pointer subscript:<p>
313 An Objective-C subscript expression occurs when the base operand of the C subscript operator has an Objective-C object poin (…)
    [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...]
harfbuzz-myanmar.c 34 Mymr_CC_CONSONANT = 1, /* Consonant of type 1, that has subscript form */
35 Mymr_CC_CONSONANT2 = 2, /* Consonant of type 2, that has no subscript form */
43 Mymr_CC_VIRAMA = 10, /* Subscript consonant combining character */
173 {-2, -2, -2, -2, 26, 26, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2, -2}, /* 25 - Virama after subscript consonant */
174 {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 12, 17, 18, 19, 20, 21, -1, 1, -1}, /* 26 - ra/ya after subscript consonant + virama */
  /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...]
  /cts/tests/tests/text/src/android/text/cts/
HtmlTest.java 175 s = new SpannableString("Hello subscript world");
178 assertEquals("<p dir=ltr>Hello <sub>subscript</sub> world</p>\n", Html.toHtml(s));
  /dalvik/vm/compiler/
Dataflow.cpp 810 /* Return the Dalvik register/subscript pair of a given SSA register */
818 * and subscript pair. Each SSA register can be used to index the
819 * ssaToDalvikMap list to get the subscript[31..16]/dalvik_reg[15..0] mapping.
1048 * and subscript pair. Each SSA register can be used to index the
1049 * ssaToDalvikMap list to get the subscript[31..16]/dalvik_reg[15..0] mapping.
1172 /* Bump up the subscript */
    [all...]

Completed in 1930 milliseconds

1 2 3 4 5 6 7 8 91011>>