HomeSort by relevance Sort by last modified time
    Searched refs:const (Results 1 - 25 of 356) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CS/7zip/Compress/LZMA/
LzmaBase.cs 7 public const uint kNumRepDistances = 4;
8 public const uint kNumStates = 12;
31 public const int kNumPosSlotBits = 6;
32 public const int kDicLogSizeMin = 0;
33 // public const int kDicLogSizeMax = 30;
34 // public const uint kDistTableSizeMax = kDicLogSizeMax * 2;
36 public const int kNumLenToPosStatesBits = 2; // it's for speed optimization
37 public const uint kNumLenToPosStates = 1 << kNumLenToPosStatesBits;
39 public const uint kMatchMinLen = 2;
49 public const int kNumAlignBits = 4;
    [all...]
  /external/chromium_org/v8/test/mjsunit/
const-redecl.js 28 // Test for const semantics.
89 TestConflict("const x", "var x");
90 TestConflict("const x = 0", "var x");
91 TestConflict("const x", "var x = 0");
92 TestConflict("const x = 0", "var x = 0");
94 TestConflict("var x", "const x");
95 TestConflict("var x = 0", "const x");
96 TestConflict("var x", "const x = 0");
97 TestConflict("var x = 0", "const x = 0");
99 TestConflict("const x = undefined", "var x")
    [all...]
const-eval-init.js 30 // Test the handling of initialization of deleted const variables.
37 // Deleting 'x' removes the local const property.
40 "const x = 3; assertEquals(3, x);" +
51 // Delete 'x' to remove the local const property.
54 "const x = 5; assertEquals(5, x);" +
65 var source = "delete x; const x = 7; assertEquals(7, x)";
83 var source = "delete x; const x = 8; finished = true;";
91 var source = "const x = 9; assertEquals(9, x); x = 10; assertEquals(9, x)";
102 source += "const x = 10; assertEquals(10, x); x = 11; assertEquals(10, x)";
111 var source = "delete x; const x = 13; assertEquals(13, x)"
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
stdio.pxd 17 FILE *fopen (const char *filename, const char *opentype)
18 FILE *freopen (const char *filename, const char *opentype, FILE *stream)
19 FILE *fdopen (int fdescriptor, const char *opentype)
21 int remove (const char *filename)
22 int rename (const char *oldname, const char *newname)
25 int remove (const char *pathname)
26 int rename (const char *oldpath, const char *newpath
    [all...]
stdlib.pxd 10 int atoi (const char *string)
11 long atol (const char *string)
12 long long atoll (const char *string)
13 double atof (const char *string)
14 long strtol (const char *string, char **tailptr, int base)
15 unsigned long int strtoul (const char *string, char **tailptr, int base)
16 long long int strtoll (const char *string, char **tailptr, int base)
17 unsigned long long int strtoull (const char *string, char **tailptr, int base)
18 float strtof (const char *string, char **tailptr)
19 double strtod (const char *string, char **tailptr
    [all...]
  /external/chromium_org/mojo/public/python/mojo/
c_core.pxd 23 cdef extern size_t MojoSetSystemThunks(const MojoSystemThunks* system_thunks)
30 const MojoHandle MOJO_HANDLE_INVALID
33 const MojoResult MOJO_RESULT_OK
34 const MojoResult MOJO_RESULT_CANCELLED
35 const MojoResult MOJO_RESULT_UNKNOWN
36 const MojoResult MOJO_RESULT_INVALID_ARGUMENT
37 const MojoResult MOJO_RESULT_DEADLINE_EXCEEDED
38 const MojoResult MOJO_RESULT_NOT_FOUND
39 const MojoResult MOJO_RESULT_ALREADY_EXISTS
40 const MojoResult MOJO_RESULT_PERMISSION_DENIE
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 73 function CreateNode(const Payload: IToken): IANTLRInterface; overload;
77 function DupNode(const TreeNode: IANTLRInterface): IANTLRInterface;
80 function DupTree(const Tree: IANTLRInterface): IANTLRInterface;
105 function ErrorNode(const Input: ITokenStream; const Start, Stop: IToken;
106 const E: ERecognitionException): IANTLRInterface;
111 function IsNil(const Tree: IANTLRInterface): Boolean;
131 procedure AddChild(const T, Child: IANTLRInterface);
162 function BecomeRoot(const NewRoot, OldRoot: IANTLRInterface): IANTLRInterface; overload;
178 function RulePostProcessing(const Root: IANTLRInterface): IANTLRInterface
    [all...]
Antlr.Runtime.pas 112 procedure Rewind(const Marker: Integer); overload;
139 procedure Release(const Marker: Integer);
166 procedure Seek(const Index: Integer);
191 procedure SetLine(const Value: Integer);
193 procedure SetCharPositionInLine(const Value: Integer);
203 function LT(const I: Integer): Integer;
210 function Substring(const Start, Stop: Integer): String;
233 procedure SetTokenType(const Value: Integer);
235 procedure SetLine(const Value: Integer);
237 procedure SetCharPositionInLine(const Value: Integer)
    [all...]
Antlr.Runtime.Tools.pas 94 procedure SetValue(const Value: String);
110 procedure SetValue(const Value: String);
112 constructor Create(const AValue: String);
136 procedure SetItem(Index: Integer; const Value: T);
141 function Add(const Value: T): Integer;
143 procedure AddRange(const Values: array of T); overload;
144 procedure AddRange(const Collection: IEnumerable<T>); overload;
146 procedure AddRange(const List: IList<T>); overload;
148 procedure Insert(Index: Integer; const Value: T);
150 procedure InsertRange(Index: Integer; const Values: array of T); overload
    [all...]
Antlr.Runtime.Collections.pas 63 procedure Push(const Item: T);
94 constructor Create(const AHashList: THashList<TKey, TValue>);
104 function GetItem(const Key: TKey): TValue;
105 procedure SetItem(const Key: TKey; const Value: TValue);
108 procedure Add(const Key: TKey; const Value: TValue);
109 procedure Remove(const Key: TKey);
112 function TryGetValue(const Key: TKey; out Value: TValue): Boolean;
113 procedure AddOrSetValue(const Key: TKey; const Value: TValue)
    [all...]
  /external/chromium_org/ui/webui/resources/css/
tree.css.js 6 /** @const */ var WIDTH = 14;
7 /** @const */ var HEIGHT = WIDTH / 2 + 2;
8 /** @const */ var MARGIN = 1;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeConstants.as 6 public static const INVALID_NODE:CommonTree = CommonTree.createFromToken(TokenConstants.INVALID_TOKEN);
  /external/chromium_org/v8/test/mjsunit/harmony/
block-scoping.js 51 const u = one + 4;
54 const v = one + 5;
70 const u = one + 4;
73 const v = one + 5;
93 const u = one + 4;
96 const v = one + 5;
114 const u = one + 4;
117 const v = one + 5;
134 const u = 3;
137 const v = 4
    [all...]
block-const-assign.js 36 // Function local const.
38 return "(function() { const constvar = 1; " + use + "; });";
43 return "(function() { " + use + "; const constvar = 1; });";
47 // Function local const, assign from eval.
50 return "(function() { const constvar = 1; " + use + "; })();";
56 return "(function() { " + use + "; const constvar = 1; })();";
60 // Block local const.
62 return "(function() { { const constvar = 1; " + use + "; } });";
67 return "(function() { { " + use + "; const constvar = 1; } });";
71 // Block local const, assign from eval
    [all...]
block-let-declaration.js 37 const z = 4;
43 const z = 5;
76 // Test const declarations with initialisers in statement positions.
77 TestLocalThrows("if (true) const x = 1;", SyntaxError);
78 TestLocalThrows("if (true) {} else const x = 1;", SyntaxError);
79 TestLocalThrows("do const x = 1; while (false)", SyntaxError);
80 TestLocalThrows("while (false) const x = 1;", SyntaxError);
81 TestLocalThrows("label: const x = 1;", SyntaxError);
82 TestLocalThrows("for (;false;) const x = 1;", SyntaxError);
83 TestLocalThrows("switch (true) { case true: const x = 1; }", SyntaxError)
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 7 public const int kNumBitModelTotalBits = 11;
8 public const uint kBitModelTotal = (1 << kNumBitModelTotalBits);
9 const int kNumMoveBits = 5;
10 const int kNumMoveReducingBits = 2;
11 public const int kNumBitPriceShiftBits = 6;
52 const int kNumBits = (kNumBitModelTotalBits - kNumMoveReducingBits);
73 public const int kNumBitModelTotalBits = 11;
74 public const uint kBitModelTotal = (1 << kNumBitModelTotalBits);
75 const int kNumMoveBits = 5;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-handle-illegal-redeclaration.js 10 const c;
regress-3138.js 32 // const initialization is not intercepted by with scope.
36 const a = 2;
  /external/chromium_org/v8/test/webkit/fast/js/
function-toString-parentheses.js 225 shouldBe("compileAndSerializeLeftmostTest('const a = 1')", "'const a = 1'");
226 shouldBe("compileAndSerializeLeftmostTest('const a = (1, 2)')", "'const a = (1, 2)'");
227 shouldBe("compileAndSerializeLeftmostTest('const a, b = 1')", "'const a, b = 1'");
228 shouldBe("compileAndSerializeLeftmostTest('const a = 1, b')", "'const a = 1, b'");
229 shouldBe("compileAndSerializeLeftmostTest('const a = 1, b = 1')", "'const a = 1, b = 1'")
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
vp9_reconintra_neon.asm 30 ; const uint8_t *above,
31 ; const uint8_t *left)
34 ; r2 const uint8_t *above
35 ; r3 const uint8_t *left
47 ; const uint8_t *above,
48 ; const uint8_t *left)
51 ; r2 const uint8_t *above
52 ; r3 const uint8_t *left
68 ; const uint8_t *above,
69 ; const uint8_t *left
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
tree.css.js 14 * @const
20 * @const
26 * @const
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_reconintra_neon.asm 30 ; const uint8_t *above,
31 ; const uint8_t *left)
34 ; r2 const uint8_t *above
35 ; r3 const uint8_t *left
47 ; const uint8_t *above,
48 ; const uint8_t *left)
51 ; r2 const uint8_t *above
52 ; r3 const uint8_t *left
68 ; const uint8_t *above,
69 ; const uint8_t *left
    [all...]
  /external/chromium_org/chrome/browser/resources/hotword_audio_verification/
flow.js 8 /** @const */ var HOTWORD_AUDIO_HISTORY = 'hotword-audio-history-container';
9 /** @const */ var HOTWORD_ONLY_START = 'hotword-only-container';
10 /** @const */ var AUDIO_HISTORY_START = 'audio-history-container';
11 /** @const */ var SPEECH_TRAINING = 'speech-training-container';
12 /** @const */ var FINISHED = 'finished-container';
18 * @const
  /external/chromium_org/chrome/browser/resources/cryptotoken/
errorcodes.js 12 * @const
messagetypes.js 12 * @const

Completed in 4515 milliseconds

1 2 3 4 5 6 7 8 91011>>