Home
last modified time | relevance | path

Searched refs:op (Results 1 – 25 of 82) sorted by relevance

1234

/AOO41X/main/rsc/source/rscpp/
H A Dcpp5.c88 char op; /* Operator */ member
96 isbinary(op) in isbinary() argument
97 register int op; in isbinary()
99 return (op >= FIRST_BINOP && op <= LAST_BINOP);
103 isunary(op) in isunary() argument
104 register int op; in isunary()
106 return (op >= FIRST_UNOP && op <= LAST_UNOP);
109 #define isbinary(op) (op >= FIRST_BINOP && op <= LAST_BINOP) argument
110 #define isunary(op) (op >= FIRST_UNOP && op <= LAST_UNOP) argument
225 register int op; /* Current operator */ in eval() local
[all …]
/AOO41X/main/sal/osl/unx/
H A Dsemaphor.c248 struct sembuf op; in osl_acquireSemaphore() local
251 op.sem_num= 0; in osl_acquireSemaphore()
252 op.sem_op= -1; in osl_acquireSemaphore()
253 op.sem_flg= SEM_UNDO; in osl_acquireSemaphore()
255 return semop(pSem->m_Id, &op, 1) >= 0; in osl_acquireSemaphore()
272 struct sembuf op; in osl_tryToAcquireSemaphore() local
275 op.sem_num= 0; in osl_tryToAcquireSemaphore()
276 op.sem_op= -1; in osl_tryToAcquireSemaphore()
277 op.sem_flg= SEM_UNDO | IPC_NOWAIT; in osl_tryToAcquireSemaphore()
279 return semop(pSem->m_Id, &op, 1) >= 0; in osl_tryToAcquireSemaphore()
[all …]
/AOO41X/main/ucb/source/ucp/gio/
H A Dgio_mount.cxx31 static void ooo_mount_operation_ask_password (GMountOperation *op,
35 static void ooo_mount_operation_init (OOoMountOperation *op) in ooo_mount_operation_init() argument
37 op->m_pPrevPassword = NULL; in ooo_mount_operation_init()
38 op->m_pPrevUsername = NULL; in ooo_mount_operation_init()
63 static void ooo_mount_operation_ask_password (GMountOperation *op, in ooo_mount_operation_ask_password() argument
69 OOoMountOperation *pThis = (OOoMountOperation*)op; in ooo_mount_operation_ask_password()
78 g_mount_operation_reply (op, G_MOUNT_OPERATION_ABORTED); in ooo_mount_operation_ask_password()
127 g_mount_operation_reply (op, G_MOUNT_OPERATION_ABORTED); in ooo_mount_operation_ask_password()
134 g_mount_operation_reply (op, G_MOUNT_OPERATION_ABORTED); in ooo_mount_operation_ask_password()
143 …g_mount_operation_set_username(op, rtl::OUStringToOString(aUserName, RTL_TEXTENCODING_UTF8).getStr… in ooo_mount_operation_ask_password()
[all …]
/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DFormulaParser.java139 private boolean isLogicalOp(String op) { in isLogicalOp() argument
140 return ((op.compareTo(">") == 0) || in isLogicalOp()
141 (op.compareTo("<") == 0) || in isLogicalOp()
142 (op.compareTo(">=") == 0) || in isLogicalOp()
143 (op.compareTo("<=") == 0) || in isLogicalOp()
144 (op.compareTo("=") == 0) || in isLogicalOp()
145 (op.compareTo("<>") == 0)); in isLogicalOp()
403 String op = new String(); in getLogicalOperator() local
407 op += look; in getLogicalOperator()
411 return op; in getLogicalOperator()
[all …]
H A DToken.java47 public Token(String op, int type, int id, int args) { in Token() argument
48 this.value = op; in Token()
55 priority = PrecedenceTable.getPrecedence(op); in Token()
H A DPrecedenceTable.java74 public static int getPrecedence(String op) { in getPrecedence() argument
75 Object obj = map.get(op); in getPrecedence()
/AOO41X/main/soltools/cpp/
H A D_eval.c248 enum toktype ops[NSTAK], *op; variable
277 op = ops; in eval()
278 *op++ = END; in eval()
306 *op++ = tp->type; in eval()
317 *op++ = UMINUS; in eval()
349 *op++ = tp->type; in eval()
356 *op++ = LP; in eval()
364 if (op <= ops || op[-1] != LP) in eval()
368 op--; in eval()
380 *op++ = ARCHITECTURE; in eval()
[all …]
H A D_macro.c716 char *op; in builtin() local
735 op = outptr; in builtin()
736 *op++ = '"'; in builtin()
742 op = outnum(op - 1, s->line); in builtin()
749 while ((*op++ = *src++) != 0) in builtin()
751 *op++ = '\\'; in builtin()
752 op--; in builtin()
757 strncpy(op, curtime + 4, 7); in builtin()
758 strncpy(op + 7, curtime + 20, 4); in builtin()
759 op += 11; in builtin()
[all …]
/AOO41X/main/x11_extensions/inc/
H A DXrender.h277 int op,
316 int op,
330 int op,
344 int op,
358 int op,
371 int op,
384 int op,
397 int op,
407 int op,
415 int op,
[all …]
H A Drenderproto.h303 CARD8 op; member
343 CARD8 op; member
359 CARD8 op; member
375 CARD8 op; member
391 CARD8 op; member
455 CARD8 op; member
477 CARD8 op; member
/AOO41X/main/sot/source/sdstor/
H A Dstgdir.cxx590 StgDirEntry* op = aOIter.First(); in Revert() local
591 while( op ) in Revert()
593 op->aEntry = op->aSave; in Revert()
594 op->bDirty = sal_False; in Revert()
595 bSomeRenamed = sal_Bool( bSomeRenamed | op->bRenamed ); in Revert()
597 if( op->bCreated ) in Revert()
599 op->bCreated = sal_False; in Revert()
600 op->Close(); in Revert()
601 op->bInvalid = sal_True; in Revert()
604 else if( op->bRemoved ) in Revert()
[all …]
/AOO41X/main/offapi/com/sun/star/sheet/
H A DFormulaMapGroupSpecialOffset.idl43 /** Formula tokens containing the op-code obtained from this offset
73 /** Formula tokens containing the op-code obtained from this offset
84 /** Formula tokens containing the op-code obtained from this offset
97 /** Formula tokens containing the op-code obtained from this offset
112 /** Formula tokens containing the op-code obtained from this offset
122 /** Formula tokens containing the op-code obtained from this offset
127 "missing" op-code.</p>
136 /** Formula tokens containing the op-code obtained from this offset
148 /** Formula tokens containing the op-code obtained from this offset
171 /** Formula tokens containing the op-code obtained from this offset
[all …]
/AOO41X/main/configmgr/source/
H A Dxcuparser.cxx274 Operation op = OPERATION_MODIFY; in handleComponentData() local
314 op = parseOperation(reader.getAttributeValue(true)); in handleComponentData()
361 switch (op) { in handleComponentData()
536 Operation op = OPERATION_FUSE; in handleLocpropValue() local
580 op = parseOperation(reader.getAttributeValue(true)); in handleLocpropValue()
607 switch (op) { in handleLocpropValue()
659 Operation op = OPERATION_MODIFY; in handleGroupProp() local
679 op = parseOperation(reader.getAttributeValue(true)); in handleGroupProp()
706 handleUnknownGroupProp(reader, group, name, type, op, finalized); in handleGroupProp()
710 handlePlainGroupProp(reader, group, i, name, type, op, finalized); in handleGroupProp()
[all …]
/AOO41X/extras/l10n/source/nl/
H A Dlocalize.sdf42 … 0 string RID_DLG_MANAGE_LANGUAGE STR_CREATE_LANG 0 nl <Klik op 'Toevoegen' om taalr…
44 …gelang.src 0 querybox RID_QRYBOX_LANGUAGE 0 nl U staat op het punt om alle hul…
46 …0 nl Selecteer een taal om de standaardtaal voor de gebruikersinterface op te geven. Alle teken…
338 …ew.HelpStrings.j Right 0 nl Maakt scherm zwart of heft dat op 201306…
340 …View.HelpStrings.k Right 0 nl Maakt scherm wit of heft dat op 20130618…
1898 ….UserInterface.Commands..uno:FormatStockGain Label 0 nl Winst op aandelen opmaken... …
1899 …serInterface.Commands..uno:FormatStockLoss Label 0 nl Verlies op aandelen opmaken... …
2061 …s..uno:ClickChangeRotation Label 0 nl Draaimodus na klikken op object 2…
2152 …mands.UserInterface.Commands..uno:GridFront Label 0 nl Raster op voorgrond …
2158 …terface.Commands..uno:HelplinesFront Label 0 nl Hulplijnen op voorgrond …
[all …]
/AOO41X/main/toolkit/src2xml/source/
H A Dexpression.py38 chars += node.op
54 self.op = None
74 self.ptr.op = token
80 self.ptr.op = token
86 self.ptr.op = token
92 self.ptr.right.op = token
/AOO41X/main/vcl/unx/generic/window/
H A Dsalobj.cxx294 const int op = ShapeSet; in ResetClipRegion() local
317 op, ordering ); in ResetClipRegion()
344 int op; in EndSetClipRegion() local
349 op = ShapeSet; in EndSetClipRegion()
352 op = ShapeSubtract; in EndSetClipRegion()
355 op = ShapeSet; in EndSetClipRegion()
358 op = ShapeUnion; in EndSetClipRegion()
369 op, ordering ); in EndSetClipRegion()
/AOO41X/main/setup_native/source/win32/customactions/reg64/
H A Dreg64.cxx89 bool WriteRegistry( MSIHANDLE & hMSI, OPERATION op, const wchar_t* componentName) in WriteRegistry() argument
122 switch (op) in WriteRegistry()
289 bool DoRegEntries( MSIHANDLE& rhMSI, OPERATION op, MSIHANDLE& rhView) in DoRegEntries() argument
405 switch (op) in DoRegEntries()
435 bool Reg64(MSIHANDLE& rhMSI, OPERATION op) in Reg64() argument
451 DoRegEntries( rhMSI, op, hView); in Reg64()
/AOO41X/main/solenv/inc/
H A Dos2.mk277 LINKFLAGS=op symf op caseexact op statics op MANY
282 LINKFLAGSTACK=op stack=
284 LINKFLAGSDEBUG=debug all op undefsok
/AOO41X/main/oox/source/export/
H A Dpreset-definitions-to-shape-types.pl695 my $op = $conv_op_ref->[$i];
697 $op =~ s/__last_x__/$last_pos_x/g;
698 $op =~ s/__last_y__/$last_pos_y/g;
699 $op =~ s/__wR__/$wR/g;
700 $op =~ s/__hR__/$hR/g;
702 my $fmla = insert_formula( "", $op );
/AOO41X/main/pyuno/source/module/
H A Dpyuno.cxx635 static PyObject *PyUNO_richcompare( PyObject *self, PyObject *that, int op ) in PyUNO_richcompare() argument
637 switch (op) in PyUNO_richcompare()
643 if (op == Py_EQ) in PyUNO_richcompare()
667 if (op == Py_EQ) in PyUNO_richcompare()
677 if (op == Py_EQ) in PyUNO_richcompare()
685 if (op == Py_EQ) in PyUNO_richcompare()
/AOO41X/main/sc/source/filter/lotus/
H A Dmakefile.mk52 $(SLO)$/op.obj \
60 $(SLO)$/op.obj
/AOO41X/extras/l10n/source/ve/
H A Dlocalize.sdf33 …s het is nie in u weergawe ingesluit nie.\nU kan inligting oor bestellings op ons tuisblad kry. …
46 …NO_WEBBROWSER_FOUND 0 ve %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
126 …p.src 0 string STR_HELP_BUTTON_SEARCHDIALOG 0 ve Vind op hierdie bladsy... …
167 … modelessdialog RID_DLG_SEARCH HID_SEARCHDIALOG 218 ve Vind op hierdie bladsy …
336 …floatingwindow SID_RECORDING_FLOATWINDOW 0 ve Neem makro op 2002-0…
337 … 0 ve Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opge…
373 …ixedtext DLG_PRINTMONITOR FT_PRINTING 100 ve word nou gedruk op 2002-02…
378 …_WEBBROWSER_FOUND 0 ve %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
422 …ET_NAME_RESOLVE_START 0 ve Besig om te koppel aan: $(HOST). Wag op antwoord... …
472 … dokument gebaseer is, is gewysig. Wil u stylgebaseerde formatering bywerk op grond van die gewysi…
[all …]
/AOO41X/extras/l10n/source/af/
H A Dlocalize.sdf33 …s het is nie in u weergawe ingesluit nie.\nU kan inligting oor bestellings op ons tuisblad kry. …
46 …NO_WEBBROWSER_FOUND 0 af %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
126 …p.src 0 string STR_HELP_BUTTON_SEARCHDIALOG 0 af Vind op hierdie bladsy... …
167 … modelessdialog RID_DLG_SEARCH HID_SEARCHDIALOG 218 af Vind op hierdie bladsy …
336 …floatingwindow SID_RECORDING_FLOATWINDOW 0 af Neem makro op 2002-0…
337 … 0 af Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opge…
373 …ixedtext DLG_PRINTMONITOR FT_PRINTING 100 af word nou gedruk op 2002-02…
378 …_WEBBROWSER_FOUND 0 af %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
422 …ET_NAME_RESOLVE_START 0 af Besig om te koppel aan: $(HOST). Wag op antwoord... …
472 … dokument gebaseer is, is gewysig. Wil u stylgebaseerde formatering bywerk op grond van die gewysi…
[all …]
/AOO41X/extras/l10n/source/ss/
H A Dlocalize.sdf33 …s het is nie in u weergawe ingesluit nie.\nU kan inligting oor bestellings op ons tuisblad kry. …
46 …NO_WEBBROWSER_FOUND 0 ss %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
126 …p.src 0 string STR_HELP_BUTTON_SEARCHDIALOG 0 ss Vind op hierdie bladsy... …
167 … modelessdialog RID_DLG_SEARCH HID_SEARCHDIALOG 218 ss Vind op hierdie bladsy …
336 …floatingwindow SID_RECORDING_FLOATWINDOW 0 ss Neem makro op 2002-0…
337 … 0 ss Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opge…
373 …ixedtext DLG_PRINTMONITOR FT_PRINTING 100 ss word nou gedruk op 2002-02…
378 …_WEBBROWSER_FOUND 0 ss %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
422 …ET_NAME_RESOLVE_START 0 ss Besig om te koppel aan: $(HOST). Wag op antwoord... …
472 … dokument gebaseer is, is gewysig. Wil u stylgebaseerde formatering bywerk op grond van die gewysi…
[all …]
/AOO41X/extras/l10n/source/zu/
H A Dlocalize.sdf33 …s het is nie in u weergawe ingesluit nie.\nU kan inligting oor bestellings op ons tuisblad kry. …
46 …NO_WEBBROWSER_FOUND 0 zu %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
126 …p.src 0 string STR_HELP_BUTTON_SEARCHDIALOG 0 zu Vind op hierdie bladsy... …
167 … modelessdialog RID_DLG_SEARCH HID_SEARCHDIALOG 218 zu Vind op hierdie bladsy …
336 …floatingwindow SID_RECORDING_FLOATWINDOW 0 zu Neem makro op 2002-0…
337 … 0 zu Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opge…
373 …ixedtext DLG_PRINTMONITOR FT_PRINTING 100 zu word nou gedruk op 2002-02…
378 …_WEBBROWSER_FOUND 0 zu %PRODUCTNAME kon nie 'n webblaaier op u stelsel vind nie. …
422 …ET_NAME_RESOLVE_START 0 zu Besig om te koppel aan: $(HOST). Wag op antwoord... …
472 … dokument gebaseer is, is gewysig. Wil u stylgebaseerde formatering bywerk op grond van die gewysi…
[all …]

1234