Searched refs:index (Results 26 - 50 of 4102) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOInterleavedMemoryDescriptor.cpp97 UInt32 index; local
99 for ( index = 0; index < _descriptorCount; index++ )
102 _descriptors[index]->complete(getDirection());
104 _descriptors[index]->release();
105 _descriptors[index] = 0;
107 _descriptorOffsets[index] = 0;
108 _descriptorLengths[index] = 0;
160 for ( unsigned index
186 unsigned index; local
[all...]
H A DIOMultiMemoryDescriptor.cpp83 for ( unsigned index = 0; index < _descriptorsCount; index++ )
84 _descriptors[index]->release();
120 for ( unsigned index = 0; index < withCount; index++ )
122 descriptors[index]->retain();
123 _length += descriptors[index]->getLength();
124 if ( _tag == 0 ) _tag = descriptors[index]
160 unsigned index; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-111557.js5153 var index = 0;
5229 levelParents[currentLevel + 1] = index;
5231 // levelIndex is the child index under a branch
5273 // NOTE, index to add to is the parent index + 1 for node tree offset of root=0
5330 var navElement = navigationLink("NDS Libraries for C ","http://developer.novell.com/ndk/doc/ndslib/treetitl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
5331 navigationTree[index] = navElement;
5332 index++;
5337 var navElement = navigationLink("NDS Backup Services ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hevgtl7k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
5338 navigationTree[index]
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/common/funcs/
H A Dtst.substr.d33 int index;
48 command[i].index = 3;
52 command[i].index = 300;
56 command[i].index = -10;
60 command[i].index = 0;
64 command[i].index = 1;
68 command[i].index = strlen(str) - 1;
72 command[i].index = strlen(str);
76 command[i].index = strlen(str) + 1;
80 command[i].index
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dtextimage.rb10 def initialize(parent, index, keys)
15 if index == 'end' || index == :end
16 @path = TkTextMark.new(@t, tk_call(@t.path, 'index', 'end - 1 chars'))
17 elsif index.kind_of? TkTextMark
18 if tk_call_without_enc(@t.path,'index',index.path) == tk_call_without_enc(@t.path,'index','end')
19 @path = TkTextMark.new(@t, tk_call_without_enc(@t.path, 'index',
22 @path = TkTextMark.new(@t, tk_call_without_enc(@t.path, 'index',
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dalphaindextst.cpp30 UnicodeString joinLabelsAndAppend(AlphabeticIndex::ImmutableIndex &index, UnicodeString &dest) { argument
33 for (int32_t i = 0; (bucket = index.getBucket(i)) != NULL; ++i) {
50 void AlphabeticIndexTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
83 AlphabeticIndex *index = new AlphabeticIndex(Locale::getEnglish(), status); local
85 lc = index->getBucketCount(status);
89 delete index;
97 index = new AlphabeticIndex(coll, status);
99 TEST_ASSERT(coll == &index->getCollator());
100 assertEquals("only the underflow label in an index built from a collator",
101 1, index
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dparsepos.h37 * you can use the same <code>ParsePosition</code>, since the index parameter
50 * Default constructor, the index starts with 0 as default.
55 index(0),
60 * Create a new ParsePosition with the given initial index.
66 index(newIndex),
77 index(copy.index),
122 * is the index of the character at which parsing will begin; on output, it
123 * is the index of the character following the last character parsed.
124 * @return the current index
173 int32_t index; member in class:ParsePosition
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/speech/
H A DSpeechRecognitionResultList.cpp39 SpeechRecognitionResult* SpeechRecognitionResultList::item(unsigned long index) argument
41 if (index >= m_results.size())
44 return m_results[index].get();
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DFileList.cpp37 File* FileList::item(unsigned index) const
39 if (index >= m_files.size())
41 return m_files[index].get();
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DSpeechInputResultList.cpp43 SpeechInputResult* SpeechInputResultList::item(unsigned index) argument
45 return index >= m_results.size() ? 0 : m_results[index].get();
/macosx-10.9.5/mail_cmds-29/mail/
H A Dstrings.c68 int s, index; local
74 index = 0;
76 if (sp->s_topFree == NULL && (STRINGSIZE << index) >= s)
80 index++;
85 index = sp - &stringdope[0];
86 if ((sp->s_topFree = malloc(STRINGSIZE << index)) == NULL)
87 err(1, "No room for space %d", index);
89 sp->s_nleft = STRINGSIZE << index;
106 int index; local
110 index
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/gen_bridge_doc/lib/lib/
H A Dhpricot_proxy.rb26 def start_of_method_def?(index)
27 @elements[index].name == 'h3' and tight?(index) and @elements[index + 1].spacer?
30 def tight?(index)
31 @elements[index].get_attribute('class') == 'tight' or @elements[index].get_attribute('class') == 'verytight'
36 def start_of_framework_constant_def?(index)
37 @elements[index].name == 'h4' and @elements[index
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dradiobox.itk5 # selecting, and deselecting of radiobuttons by tag and index.
61 method buttonconfigure {index args}
63 method delete {index}
64 method deselect {index}
65 method flash {index}
67 method index {index}
68 method insert {index tag args}
69 method select {index}
75 method gettag {index} ;# Ge
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Array/
H A D15.4.2.1-2.js67 for ( var index = 0; index < TEST_LENGTH; index++ ) {
68 ARGUMENTS += index;
69 ARGUMENTS += (index == (TEST_LENGTH-1) ) ? "" : ",";
/macosx-10.9.5/ICU-511.35/icuSources/samples/translit/answers/
H A Dunaccent.cpp42 UTransPosition& index,
45 while (index.start < index.limit) {
46 UChar c = text.charAt(index.start);
50 text.handleReplaceBetween(index.start, index.start+1, str);
52 index.start++;
41 handleTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument
/macosx-10.9.5/ICU-511.35/icuSources/samples/translit/
H A Dunaccent.cpp44 UTransPosition& index,
47 while (index.start < index.limit) {
48 UChar c = text.charAt(index.start);
52 text.handleReplaceBetween(index.start, index.start+1, str);
54 index.start++;
43 handleTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGVariableAccessDataDump.cpp44 unsigned index = std::numeric_limits<unsigned>::max(); local
47 index = i;
52 ASSERT(index != std::numeric_limits<unsigned>::max());
54 if (!index) {
59 while (index) {
60 out.print(CharacterDump('A' + (index % 26)));
61 index /= 26;
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DTokenWithIndex.hpp22 TokenWithIndex() : CommonToken(), index(0)
29 , index(0)
36 , index(0)
47 index = idx;
51 return index;
57 index+
71 size_t index; member in class:antlr::TokenWithIndex
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dspinner.rb13 index = Months.index(@spinner.get) + step
14 index = 11 if index < 0
15 index = 0 if index > 11
17 @spinner.value = Months[index]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDEventOverrideDriver.cpp47 int index; local
49 for ( index=0; index<maps->getCount(); index++ ) {
57 map = OSDynamicCast(OSDictionary, maps->getObject(index));
106 int index; local
108 for ( index=0; index<32; index++ ) {
110 if ( (pointerButtonMaskDelta & (1<<index))
[all...]
/macosx-10.9.5/IOUSBMassStorageClass-360.0.3/UMCLogger/
H A DUMCLogger.cpp232 ProcessSubclassTracePoint ( int index );
235 ProcessAppleUSBCardReaderUMCSubclassTracePoint ( int index, UInt32 intSubclassCode );
238 ProcessAppleUSBODDSubclassTracePoint ( int index, UInt32 intSubclassCode );
800 int index; local
829 for ( index = 0; index < count; index++ )
837 debugID = gTraceBuffer[index].debugid;
840 now = gTraceBuffer[index].timestamp & KDBG_TIMESTAMP_MASK;
857 printf ( "[%10p] Task %p Aborted!!!\n", ( void * ) gTraceBuffer[index]
1497 ProcessAppleUSBODDSubclassTracePoint( int index, UInt32 inSubclassCode ) argument
1568 ProcessAppleUSBCardReaderUMCSubclassTracePoint( int index, UInt32 inSubclassCode ) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dscrolledtext.rb60 tk_call(@path, 'import', file, index(idx))
85 def bbox(index)
86 list(tk_send('bbox', index))
107 def dlineinfo(index)
108 list(tk_send_without_enc('dlineinfo', _get_eval_enc_str(index)))
111 def get(*index)
112 _fromUTF8(tk_send_without_enc('get', *index))
114 def get_displaychars(*index)
116 get('-displaychars', *index)
119 def image_cget_tkstring(index, slo
287 def index(idx) method in class:Tk
[all...]
H A Dscrolledlistbox.rb92 def bbox(index)
93 list(tk_send_without_enc('bbox', index))
99 def get(*index)
100 _fromUTF8(tk_send_without_enc('get', *index))
102 def insert(index, *args)
103 tk_send('insert', index, *args)
114 def see(index)
115 tk_send_without_enc('see', index)
156 def selection_anchor(index)
157 tk_send_without_enc('selection', 'anchor', index)
172 def index(idx) method in class:Tk
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DGlyphPositionAdjustments.h106 inline le_bool isCursiveGlyph(le_int32 index) const;
107 inline le_bool baselineIsLogicalEnd(le_int32 index) const;
109 const LEPoint *getEntryPoint(le_int32 index, LEPoint &entryPoint) const;
110 const LEPoint *getExitPoint(le_int32 index, LEPoint &exitPoint) const;
112 inline float getXPlacement(le_int32 index) const;
113 inline float getYPlacement(le_int32 index) const;
114 inline float getXAdvance(le_int32 index) const;
115 inline float getYAdvance(le_int32 index) const;
117 inline le_int32 getBaseOffset(le_int32 index) const;
119 inline void setXPlacement(le_int32 index, floa
325 setXPlacement(le_int32 index, float newXPlacement) argument
330 setYPlacement(le_int32 index, float newYPlacement) argument
335 setXAdvance(le_int32 index, float newXAdvance) argument
340 setYAdvance(le_int32 index, float newYAdvance) argument
345 setBaseOffset(le_int32 index, le_int32 newBaseOffset) argument
350 adjustXPlacement(le_int32 index, float xAdjustment) argument
355 adjustYPlacement(le_int32 index, float yAdjustment) argument
360 adjustXAdvance(le_int32 index, float xAdjustment) argument
365 adjustYAdvance(le_int32 index, float yAdjustment) argument
[all...]
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCList.cpp70 void* CList::At(ArrayIndex index) argument
72 uintptr_t * itemPtr = (uintptr_t *)SafeElementPtrAt(index);
81 IrDAErr CList::InsertAt(ArrayIndex index, void* item) argument
85 return InsertElementsBefore(index, &data, 1);
96 ArrayIndex index = GetIdentityIndex(item); local
98 if (index != kEmptyIndex)
99 result = RemoveAt(index);
132 ArrayIndex index = GetIdentityIndex(oldItem); local
134 if (index != kEmptyIndex)
135 result = ReplaceAt(index, newIte
150 ReplaceAt(ArrayIndex index, void* newItem) argument
162 ArrayIndex index = -1; local
180 Search(CItemComparer* test, ArrayIndex& index) argument
[all...]

Completed in 214 milliseconds

1234567891011>>