Searched defs:index (Results 51 - 75 of 4630) sorted by relevance

1234567891011>>

/external/clang/include/clang/Index/
H A DCommentToXML.h24 namespace index { namespace in namespace:clang
48 } // namespace index
/external/clang/test/CodeGen/
H A Dblock-3.c6 __attribute__((__blocks__(byref))) int index = ({ int __a; int __b; __a < __b ? __b : __a; }); local
/external/clang/test/Index/
H A Dfix-its.c1 // RUN: c-index-test -test-load-source all -fspell-checking %s 2> %t
23 unsigned long index; local
26 MACRO(printf("%d", index));
/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c17 int index = 1; local
20 static int index; variable
23 return index << 2;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dheap-overflow-large.cc15 int index = atoi(argv[1]); local
16 int res = x[index];
/external/eigen/bench/btl/generic_bench/init/
H A Dinit_function.hh23 double simple_function(int index) argument
25 return index;
33 double pseudo_random(int index) argument
44 double null_function(int index) argument
/external/icu/icu4c/source/i18n/
H A Drbt_set.h54 * Now use rules[index[x]..index[x+1]-1]. This index table is created by
57 int32_t index[257]; member in class:TransliterationRuleSet
108 * Check this for masked rules and index it to optimize performance.
128 * @param index the position indices, which will be updated
130 * at index.limit, and return FALSE if thre is a partial match.
136 UTransPosition& index,
/external/icu/icu4c/source/test/intltest/
H A Ditmajor.cpp50 void MajorTestLevel::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
52 switch (index) {
214 void IntlTestNormalize::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) argument
220 switch (index) {
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DFwdRef.java30 int index; field in class:FwdRef
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dual_blend.h15 int index)
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
14 util_blend_state_is_dual(const struct pipe_blend_state *blend, int index) argument
/external/proguard/src/proguard/obfuscate/
H A DNumericNameFactory.java34 private int index; field in class:NumericNameFactory
41 index = 0;
47 return Integer.toString(++index);
/external/skia/tests/
H A DGrTBSearchTest.cpp32 int index = GrTBSearch<int, int>(array, n, array[i]); local
33 REPORTER_ASSERT(reporter, index == (int) i);
34 index = GrTBSearch<int, int>(array, n, -array[i]);
35 REPORTER_ASSERT(reporter, index < 0);
/external/valgrind/main/none/tests/mips64/
H A Dunaligned_load.c19 int i, index; local
35 index = (i / SOLL) % N;
37 i, index, memSrc[index], outLoad);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as57 * state can change before the exception is reported so current token index
67 /** What is index of token/char were we looking at when the error occurred? */
68 public var index:int; variable
104 this.index = input.index;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRecognitionException.h36 NSInteger index; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRecognitionException.h36 NSInteger index; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRecognitionException.h36 NSInteger index; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRecognitionException.h36 NSInteger index; variable
45 @property (assign) NSInteger index; variable
H A DANTLRStringStream.h36 NSInteger index; variable
83 - (void) seek:(NSInteger) index;
99 @property (assign) NSInteger index; variable
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeListBase.java62 * Returns the <code>index</code>th item in the collection. If
63 * <code>index</code> is greater than or equal to the number of nodes in
65 * @param index Index into the collection.
66 * @return The node at the <code>index</code>th position in the
68 * index.
70 public Node item(int index) { argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DOIDTokenizer.java12 private int index; field in class:OIDTokenizer
18 this.index = 0;
23 return (index != -1);
28 if (index == -1)
34 int end = oid.indexOf('.', index);
38 token = oid.substring(index);
39 index = -1;
43 token = oid.substring(index, end);
45 index = end + 1;
/external/chromium_org/base/metrics/
H A Dsample_vector_unittest.cc189 size_t index; local
198 EXPECT_TRUE(it.GetBucketIndex(&index));
199 EXPECT_EQ(0u, index);
206 EXPECT_TRUE(it.GetBucketIndex(&index));
207 EXPECT_EQ(2u, index);
227 size_t index; local
228 EXPECT_TRUE(it2->GetBucketIndex(&index));
229 EXPECT_EQ(static_cast<size_t>(i), index); local
/external/chromium_org/base/synchronization/
H A Dwaitable_event_unittest.cc121 size_t index = WaitableEvent::WaitMany(ev, 5); local
127 EXPECT_EQ(2u, index);
/external/chromium_org/base/win/
H A Denum_variant.cc23 VARIANT* EnumVariant::ItemAt(unsigned long index) { argument
24 DCHECK(index < count_);
25 return &items_[index];
/external/chromium_org/cc/quads/
H A Drender_pass_id.h17 int index; member in class:cc::RenderPassId
19 RenderPassId(int layer_id, int index) : layer_id(layer_id), index(index) {} argument
23 return layer_id == other.layer_id && index == other.index;
28 (layer_id == other.layer_id && index < other.index);

Completed in 552 milliseconds

1234567891011>>