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

1234567891011>>

/macosx-10.10.1/ruby-106/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...]
H A Dlistbox.rb66 def selection_anchor(index)
67 tk_send_without_enc('selection', 'anchor', index)
74 def selection_includes(index)
75 bool(tk_send_without_enc('selection', 'includes', index))
82 def index(idx) method in class:Tk
83 tk_send_without_enc('index', idx).to_i
107 def itemcget(index, key)
110 _fromUTF8(tk_send_without_enc('itemcget', index, "-#{key}"))
112 #fnt = tk_tcl2ruby(tk_send('itemcget', index, "-#{key}"))
113 fnt = tk_tcl2ruby(_fromUTF8(tk_send_without_enc('itemcget', index,
[all...]
/macosx-10.10.1/ICU-531.30/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.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DMIMETypeUtilities.js32 var index = lastPathComponent.indexOf(".");
33 if (index === -1)
36 return lastPathComponent.substr(index + 1);
/macosx-10.10.1/mail_cmds-30/mail/
H A Dstrings.c69 int s, index; local
75 index = 0;
77 if (sp->s_topFree == NULL && (STRINGSIZE << index) >= s)
81 index++;
86 index = sp - &stringdope[0];
87 if ((sp->s_topFree = malloc(STRINGSIZE << index)) == NULL)
88 err(1, "No room for space %d", index);
90 sp->s_nleft = STRINGSIZE << index;
107 int index; local
111 index
[all...]
/macosx-10.10.1/tcl-105/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.10.1/JavaScriptCore-7600.1.17/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.10.1/ICU-531.30/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.10.1/ICU-531.30/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.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGVariableAccessDataDump.cpp45 unsigned index = std::numeric_limits<unsigned>::max(); local
48 index = i;
53 ASSERT(index != std::numeric_limits<unsigned>::max());
55 if (!index) {
60 while (index) {
61 out.print(CharacterDump('A' + (index % 26)));
62 index /= 26;
H A DDFGInsertionSet.h48 ASSERT(!m_insertions.size() || m_insertions.last().index() <= insertion.index());
53 Node* insert(size_t index, Node* element) argument
55 return insert(Insertion(index, element));
59 Node* insertNode(size_t index, SpeculatedType type, Params... params) argument
61 return insert(index, m_graph.addNode(type, params...));
65 size_t index, NodeOrigin origin, JSValue value,
71 index, speculationFromValue(value), op, origin, OpInfo(constantReg));
75 size_t index, CodeOrigin origin, JSValue value, NodeType op = JSConstant)
77 return insertConstant(index, NodeOrigi
64 insertConstant( size_t index, NodeOrigin origin, JSValue value, NodeType op = JSConstant) argument
74 insertConstant( size_t index, CodeOrigin origin, JSValue value, NodeType op = JSConstant) argument
80 insertConstantForUse( size_t index, NodeOrigin origin, JSValue value, UseKind useKind) argument
93 insertConstantForUse( size_t index, CodeOrigin origin, JSValue value, UseKind useKind) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/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.10.1/ruby-106/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.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
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...]
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 Dpromptdialog.rb21 # index method is not available, because it shows index of the entry field
69 def cursor=(index)
70 tk_send_without_enc('icursor', index)
72 index
76 def index(idx) method in class:Tk
77 number(tk_send_without_enc('index', idx))
93 def selection_adjust(index)
94 tk_send_without_enc('selection', 'adjust', index)
101 def selection_from(index)
[all...]
/macosx-10.10.1/ICU-531.30/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.10.1/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...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DTempRegisterSet.h59 void setGPRByIndex(unsigned index) argument
61 ASSERT(index < GPRInfo::numberOfRegisters);
62 setBit(index);
75 bool getGPRByIndex(unsigned index) const
77 ASSERT(index < GPRInfo::numberOfRegisters);
78 return getBit(index);
81 // Return the index'th free GPR.
82 GPRReg getFreeGPR(unsigned index = 0) const
85 if (!getGPRByIndex(i) && !index--)
96 void setFPRByIndex(unsigned index)
[all...]
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWUserObjectExporter.cpp270 unsigned index = 0 ; local
272 while ( index < fCapacity )
274 if ( ! fObjects [ index ] )
277 fObjects[ index ] = obj ;
278 fCleanupFunctions[ index ] = (CleanupFunctionWithExporter)cleanupFunction ;
279 *outHandle = (IOFireWireLib::UserObjectHandle)(index + 1) ; // return index + 1; this means 0 is always an invalid/NULL index...
285 ++index ;
308 unsigned index local
356 unsigned index = 0 ; local
386 unsigned index = (unsigned)handle - 1 ; local
414 unsigned index = (unsigned)handle - 1; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/ipc/
H A Dipc_hash.c93 mach_port_index_t index,
131 mach_port_index_t index; local
133 index = MACH_PORT_INDEX(name);
134 ipc_hash_table_insert(space->is_table, space->is_table_size, obj, index, entry);
152 mach_port_index_t index; local
154 index = MACH_PORT_INDEX(name);
155 ipc_hash_table_delete(space->is_table, space->is_table_size, obj, index, entry);
171 * Because at least one entry in the table (index 0) is always unused,
207 mach_port_index_t hindex, index; local
222 while ((index
250 ipc_hash_table_insert( ipc_entry_t table, ipc_entry_num_t size, ipc_object_t obj, mach_port_index_t index, __assert_only ipc_entry_t entry) argument
290 ipc_hash_table_delete( ipc_entry_t table, ipc_entry_num_t size, ipc_object_t obj, mach_port_index_t index, __assert_only ipc_entry_t entry) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/samples/uciter8/
H A Duit_len8.c91 * start current UTF-8 index
92 * index current UTF-16 index; may be -1="unknown" after setState()
99 * point to after the corresponding byte sequence. The UTF-16 index will be
100 * one less than what it would otherwise be corresponding to the UTF-8 index.
116 if(iter->index<0) {
117 /* the current UTF-16 index is unknown after setState(), count from the beginning */
120 int32_t i, limit, index; local
123 i=index=0;
124 limit=iter->start; /* count up to the UTF-8 index */
408 int32_t index; local
445 int32_t index; local
497 int32_t index=(int32_t)(state>>1); /* UTF-8 index */ local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_regen11 rm index.php
12 ln -s index.html index.php
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/tools/
H A Dhtdocs_regen11 rm index.php
12 ln -s index.html index.php
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dmessagepattern.cpp352 modified.insert(part.index, (UChar)part.value);
372 * @param pluralStart the index of the first PluralFormat argument style part. (0..countParts()-1)
395 index==other.index &&
432 MessagePattern::parseMessage(int32_t index, int32_t msgStartLength, argument
443 addPart(UMSGPAT_PART_TYPE_MSG_START, index, msgStartLength, nestingLevel, errorCode);
444 index+=msgStartLength;
445 for(;;) { // while(index<msg.length()) with U_FAILURE(errorCode) check
449 if(index>=msg.length()) {
452 UChar c=msg.charAt(index
537 parseArg(int32_t index, int32_t argStartLength, int32_t nestingLevel, UParseError *parseError, UErrorCode &errorCode) argument
657 parseSimpleStyle(int32_t index, UParseError *parseError, UErrorCode &errorCode) argument
700 parseChoiceStyle(int32_t index, int32_t nestingLevel, UParseError *parseError, UErrorCode &errorCode) argument
768 parsePluralOrSelectStyle(UMessagePatternArgType argType, int32_t index, int32_t nestingLevel, UParseError *parseError, UErrorCode &errorCode) argument
1147 setParseError(UParseError *parseError, int32_t index) argument
1212 int32_t index=part.getIndex(); local
[all...]

Completed in 268 milliseconds

1234567891011>>