代码搜索:patterns
找到约 8,017 项符合「patterns」的源代码
代码结果 8,017
www.eeworm.com/read/101082/6242539
patterns
# @(#)patterns 4.1 (ULTRIX) 7/2/90
# This is the header to insert at the beginning of the first new source file
$SRCHEAD1
\#include
nl_catd _m_catd;
\
# The header to insert at the begi
www.eeworm.com/read/283498/9016413
a patterns.a
; Patterns.a- This file contains all the patterns and strings which the
; program uses. It is included rather than compiled separately
; only because these patterns are only used in the main
;
www.eeworm.com/read/119473/14829560
a patterns.a
; Patterns.a- This file contains all the patterns and strings which the
; program uses. It is included rather than compiled separately
; only because these patterns are only used in the main
;
www.eeworm.com/read/288807/8606941
cpp patterns.cpp
#include "patterns.h"
void Patterns::add(Pattern pattern)
{
this->patterns.push_back(pattern);
}
Pattern Patterns::getPattern(int i)
{
return this->patterns[i];
}
void Patterns::displ
www.eeworm.com/read/288807/8606949
h patterns.h
#include "std.h"
class Patterns
{
private:
vector patterns;
public:
int numOfPatterns;
int numOfDim;
int numOfCluster;
public:
void add(Pattern pattern);
void remove(int i)
www.eeworm.com/read/288804/8607146
cpp patterns.cpp
#include "patterns.h"
void Patterns::add(Pattern pattern)
{
this->patterns.push_back(pattern);
}
Pattern Patterns::getPattern(int i)
{
return this->patterns[i];
}
void Patterns::displ
www.eeworm.com/read/288804/8607153
h patterns.h
#include "std.h"
class Patterns
{
private:
vector patterns;
public:
int numOfPatterns;
int numOfDim;
int numOfCluster;
public:
void add(Pattern pattern);
void remove(int i)
www.eeworm.com/read/283498/9015631
asm patterns.asm
include pattern.a
StdGrp group stdlib,stddata
stddata segment para public 'sldata'
StringAddress dd ?
LastStringAdrs dw ?
stddata ends
;
stdlib segment para public 'slcode'
assume cs
www.eeworm.com/read/283498/9016459
pas patterns.pas
unit Patterns;
interface
type
TPatPtr = ^TPattern;
mType = record case integer of
0: (ch:char);
1:(str:PChar);
2:(cset:set of char);
3:(pat:TPatPtr);
www.eeworm.com/read/283498/9016466