This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 269306
Collapse All | Expand All

(-)a/cnd.lexer/src/org/netbeans/cnd/api/lexer/CppTokenId.java (-2 / +62 lines)
Lines 381-386 Link Here
381
    PRAGMA_OMP_START("omp", "pragma-omp-keyword-directive"), // NOI18N
381
    PRAGMA_OMP_START("omp", "pragma-omp-keyword-directive"), // NOI18N
382
    PRAGMA_OMP_PARALLEL("parallel", "pragma-omp-keyword-directive"), // NOI18N
382
    PRAGMA_OMP_PARALLEL("parallel", "pragma-omp-keyword-directive"), // NOI18N
383
    PRAGMA_OMP_SECTIONS("sections", "pragma-omp-keyword-directive"), // NOI18N
383
    PRAGMA_OMP_SECTIONS("sections", "pragma-omp-keyword-directive"), // NOI18N
384
    PRAGMA_OMP_WORKSHARE("workshare", "pragma-omp-keyword-directive"), // NOI18N
384
    PRAGMA_OMP_NOWAIT("nowait", "pragma-omp-keyword-directive"), // NOI18N
385
    PRAGMA_OMP_NOWAIT("nowait", "pragma-omp-keyword-directive"), // NOI18N
385
    PRAGMA_OMP_ORDERED("ordered", "pragma-omp-keyword-directive"), // NOI18N
386
    PRAGMA_OMP_ORDERED("ordered", "pragma-omp-keyword-directive"), // NOI18N
386
    PRAGMA_OMP_SCHEDULE("schedule", "pragma-omp-keyword-directive"), // NOI18N
387
    PRAGMA_OMP_SCHEDULE("schedule", "pragma-omp-keyword-directive"), // NOI18N
Lines 393-421 Link Here
393
    PRAGMA_OMP_CRITICAL("critical", "pragma-omp-keyword-directive"), // NOI18N
394
    PRAGMA_OMP_CRITICAL("critical", "pragma-omp-keyword-directive"), // NOI18N
394
    PRAGMA_OMP_BARRIER("barrier", "pragma-omp-keyword-directive"), // NOI18N
395
    PRAGMA_OMP_BARRIER("barrier", "pragma-omp-keyword-directive"), // NOI18N
395
    PRAGMA_OMP_ATOMIC("atomic", "pragma-omp-keyword-directive"), // NOI18N
396
    PRAGMA_OMP_ATOMIC("atomic", "pragma-omp-keyword-directive"), // NOI18N
397
    PRAGMA_OMP_SEQ_CST("seq_cst", "pragma-omp-keyword-directive"), // NOI18N
398
    PRAGMA_OMP_CAPTURE("capture", "pragma-omp-keyword-directive"), // NOI18N
399
    PRAGMA_OMP_READ("read", "pragma-omp-keyword-directive"), // NOI18N
400
    PRAGMA_OMP_WRITE("write", "pragma-omp-keyword-directive"), // NOI18N
396
    PRAGMA_OMP_FLUSH("flush", "pragma-omp-keyword-directive"), // NOI18N
401
    PRAGMA_OMP_FLUSH("flush", "pragma-omp-keyword-directive"), // NOI18N
397
    PRAGMA_OMP_THREADPRIVATE("threadprivate", "pragma-omp-keyword-directive"), // NOI18N
402
    PRAGMA_OMP_THREADPRIVATE("threadprivate", "pragma-omp-keyword-directive"), // NOI18N
398
    PRAGMA_OMP_PRIVATE("private", "pragma-omp-keyword-directive"), // NOI18N
403
    PRAGMA_OMP_PRIVATE("private", "pragma-omp-keyword-directive"), // NOI18N
399
    PRAGMA_OMP_FIRSTPRIVATE("firstprivate", "pragma-omp-keyword-directive"), // NOI18N
404
    PRAGMA_OMP_FIRSTPRIVATE("firstprivate", "pragma-omp-keyword-directive"), // NOI18N
400
    PRAGMA_OMP_LASTPRIVATE("lastprivate", "pragma-omp-keyword-directive"), // NOI18N
405
    PRAGMA_OMP_LASTPRIVATE("lastprivate", "pragma-omp-keyword-directive"), // NOI18N
406
    PRAGMA_OMP_LINEAR("linear", "pragma-omp-keyword-directive"), // NOI18N   
407
    PRAGMA_OMP_VAL("val", "pragma-omp-keyword-directive"), // NOI18N   
408
    PRAGMA_OMP_UVAL("uval", "pragma-omp-keyword-directive"), // NOI18N   
409
    PRAGMA_OMP_REF("ref", "pragma-omp-keyword-directive"), // NOI18N   
401
    PRAGMA_OMP_SHARED("shared", "pragma-omp-keyword-directive"), // NOI18N
410
    PRAGMA_OMP_SHARED("shared", "pragma-omp-keyword-directive"), // NOI18N
402
    PRAGMA_OMP_NONE("none", "pragma-omp-keyword-directive"), // NOI18N
411
    PRAGMA_OMP_NONE("none", "pragma-omp-keyword-directive"), // NOI18N
403
    PRAGMA_OMP_REDUCTION("reduction", "pragma-omp-keyword-directive"), // NOI18N
412
    PRAGMA_OMP_REDUCTION("reduction", "pragma-omp-keyword-directive"), // NOI18N
404
    PRAGMA_OMP_COPYIN("copyin", "pragma-omp-keyword-directive"), // NOI18N
413
    PRAGMA_OMP_COPYIN("copyin", "pragma-omp-keyword-directive"), // NOI18N
405
    PRAGMA_OMP_TASK("task", "pragma-omp-keyword-directive"), // NOI18N
414
    PRAGMA_OMP_TASK("task", "pragma-omp-keyword-directive"), // NOI18N
415
    PRAGMA_OMP_FINAL("final", "pragma-omp-keyword-directive"), // NOI18N
416
    PRAGMA_OMP_UNTIED("untied", "pragma-omp-keyword-directive"), // NOI18N
417
    PRAGMA_OMP_MERGEABLE("mergeable", "pragma-omp-keyword-directive"), // NOI18N
418
    PRAGMA_OMP_IN_REDUCTION("in_reduction", "pragma-omp-keyword-directive"), // NOI18N
419
    PRAGMA_OMP_DEPEND("depend", "pragma-omp-keyword-directive"), // NOI18N
420
    PRAGMA_OMP_SOURCE("source", "pragma-omp-keyword-directive"), // NOI18N
421
    PRAGMA_OMP_SINK("sink", "pragma-omp-keyword-directive"), // NOI18N
422
    PRAGMA_OMP_IN("in", "pragma-omp-keyword-directive"), // NOI18N
423
    PRAGMA_OMP_OUT("out", "pragma-omp-keyword-directive"), // NOI18N
424
    PRAGMA_OMP_INOUT("inout", "pragma-omp-keyword-directive"), // NOI18N
425
    PRAGMA_OMP_PRIORITY("priority", "pragma-omp-keyword-directive"), // NOI18N
406
    PRAGMA_OMP_TASKWAIT("taskwait", "pragma-omp-keyword-directive"), // NOI18N
426
    PRAGMA_OMP_TASKWAIT("taskwait", "pragma-omp-keyword-directive"), // NOI18N
407
    PRAGMA_OMP_TASKGROUP("taskgroup", "pragma-omp-keyword-directive"), // NOI18N
427
    PRAGMA_OMP_TASKGROUP("taskgroup", "pragma-omp-keyword-directive"), // NOI18N
408
    PRAGMA_OMP_TASKLOOP("taskloop", "pragma-omp-keyword-directive"), // NOI18N
428
    PRAGMA_OMP_TASKLOOP("taskloop", "pragma-omp-keyword-directive"), // NOI18N
429
    PRAGMA_OMP_GRAINSIZE("grainsize", "pragma-omp-keyword-directive"), // NOI18N
430
    PRAGMA_OMP_NUM_TASKS("num_tasks", "pragma-omp-keyword-directive"), // NOI18N
431
    PRAGMA_OMP_NOGROUP("nogroup", "pragma-omp-keyword-directive"), // NOI18N
432
    PRAGMA_OMP_TASKYIELD("taskyield", "pragma-omp-keyword-directive"), // NOI18N
433
    PRAGMA_OMP_TARGET("target", "pragma-omp-keyword-directive"), // NOI18N
434
    PRAGMA_OMP_DATA("data", "pragma-omp-keyword-directive"), // NOI18N
435
    PRAGMA_OMP_DEVICE("device", "pragma-omp-keyword-directive"), // NOI18N
436
    PRAGMA_OMP_MAP("map", "pragma-omp-keyword-directive"), // NOI18N
437
    PRAGMA_OMP_USE_DEVICE_PTR("use_device_ptr", "pragma-omp-keyword-directive"), // NOI18N
438
    PRAGMA_OMP_ENTER("enter", "pragma-omp-keyword-directive"), // NOI18N
439
    PRAGMA_OMP_EXIT("exit", "pragma-omp-keyword-directive"), // NOI18N
440
    PRAGMA_OMP_IS_DEVICE_PTR("is_device_ptr", "pragma-omp-keyword-directive"), // NOI18N
441
    PRAGMA_OMP_UPDATE("update", "pragma-omp-keyword-directive"), // NOI18N
442
    PRAGMA_OMP_TO("to", "pragma-omp-keyword-directive"), // NOI18N
443
    PRAGMA_OMP_FROM("from", "pragma-omp-keyword-directive"), // NOI18N
444
    PRAGMA_OMP_TOFROM("tofrom", "pragma-omp-keyword-directive"), // NOI18N
445
    PRAGMA_OMP_SCALAR("scalar", "pragma-omp-keyword-directive"), // NOI18N
446
    PRAGMA_OMP_ALLOC("alloc", "pragma-omp-keyword-directive"), // NOI18N
447
    PRAGMA_OMP_RELEASE("release", "pragma-omp-keyword-directive"), // NOI18N
448
    PRAGMA_OMP_DELETE("delete", "pragma-omp-keyword-directive"), // NOI18N
449
    PRAGMA_OMP_ALWAYS("always", "pragma-omp-keyword-directive"), // NOI18N
450
    PRAGMA_OMP_DEFAULTMAP("defaultmap", "pragma-omp-keyword-directive"), // NOI18N
451
    PRAGMA_OMP_TEAMS("teams", "pragma-omp-keyword-directive"), // NOI18N
452
    PRAGMA_OMP_NUM_TEAMS("num_teams", "pragma-omp-keyword-directive"), // NOI18N
453
    PRAGMA_OMP_THREAD_LIMIT("thread_limit", "pragma-omp-keyword-directive"), // NOI18N
454
    PRAGMA_OMP_DISTRIBUTE("distribute", "pragma-omp-keyword-directive"), // NOI18N
455
    PRAGMA_OMP_DIST_SCHEDULE("dist_schedule", "pragma-omp-keyword-directive"), // NOI18N
409
    PRAGMA_OMP_COLLAPSE("collapse", "pragma-omp-keyword-directive"), // NOI18N
456
    PRAGMA_OMP_COLLAPSE("collapse", "pragma-omp-keyword-directive"), // NOI18N
410
    PRAGMA_OMP_COPYPRIVATE("copyprivate", "pragma-omp-keyword-directive"), // NOI18N
457
    PRAGMA_OMP_COPYPRIVATE("copyprivate", "pragma-omp-keyword-directive"), // NOI18N
411
    PRAGMA_OMP_DEFAULT("default", "pragma-omp-keyword-directive"), // NOI18N
458
    PRAGMA_OMP_DEFAULT("default", "pragma-omp-keyword-directive"), // NOI18N
412
    PRAGMA_OMP_STATIC("static", "pragma-omp-keyword-directive"), // NOI18N
459
    PRAGMA_OMP_STATIC("static", "pragma-omp-keyword-directive"), // NOI18N
413
    PRAGMA_OMP_IF("if", "pragma-omp-keyword-directive"), // NOI18N
460
    PRAGMA_OMP_IF("if", "pragma-omp-keyword-directive"), // NOI18N
414
    PRAGMA_OMP_FOR("for", "pragma-omp-keyword-directive"), // NOI18N
461
    PRAGMA_OMP_FOR("for", "pragma-omp-keyword-directive"), // NOI18N
462
    PRAGMA_OMP_DO("do", "pragma-omp-keyword-directive"), // NOI18N
415
    PRAGMA_OMP_AUTO("auto", "pragma-omp-keyword-directive"), // NOI18N
463
    PRAGMA_OMP_AUTO("auto", "pragma-omp-keyword-directive"), // NOI18N
416
    PRAGMA_OMP_NUM_THREADS("num_threads", "pragma-omp-keyword-directive"), // NOI18N
464
    PRAGMA_OMP_NUM_THREADS("num_threads", "pragma-omp-keyword-directive"), // NOI18N
417
465
    PRAGMA_OMP_SIMD("simd", "pragma-omp-keyword-directive"), // NOI18N
418
    // Pro*C
466
    PRAGMA_OMP_SAFELEN("safelen", "pragma-omp-keyword-directive"), // NOI18N
467
    PRAGMA_OMP_SIMDLEN("simdlen", "pragma-omp-keyword-directive"), // NOI18N
468
    PRAGMA_OMP_ALIGNED("aligned", "pragma-omp-keyword-directive"), // NOI18N
469
    PRAGMA_OMP_DECLARE("declare", "pragma-omp-keyword-directive"), // NOI18N
470
    PRAGMA_OMP_UNIFORM("uniform", "pragma-omp-keyword-directive"), // NOI18N
471
    PRAGMA_OMP_INBRANCH("inbranch", "pragma-omp-keyword-directive"), // NOI18N
472
    PRAGMA_OMP_NOTINBRANCH("notinbranch", "pragma-omp-keyword-directive"), // NOI18N
473
    PRAGMA_OMP_CANCEL("cancel", "pragma-omp-keyword-directive"), // NOI18N
474
    PRAGMA_OMP_CANCELLATION("cancellation", "pragma-omp-keyword-directive"), // NOI18N
475
    PRAGMA_OMP_POINT("point", "pragma-omp-keyword-directive"), // NOI18N
476
    PRAGMA_OMP_CONDITIONAL("conditional", "pragma-omp-keyword-directive"), // NOI18N
477
    PRAGMA_OMP_TASK_REDUCTION("task_reduction", "pragma-omp-keyword-directive"), // NOI18N
478
    PRAGMA_OMP_INITIALIZER("initializer", "pragma-omp-keyword-directive"), // NOI18N
419
    PROC_DIRECTIVE(null, "proc"), // NOI18N
479
    PROC_DIRECTIVE(null, "proc"), // NOI18N
420
    PROC_SQL("sql", "proc-keyword-directive"), // NOI18N
480
    PROC_SQL("sql", "proc-keyword-directive"), // NOI18N
421
    
481
    

Return to bug 269306