HomeSort by relevance Sort by last modified time
    Searched full:goog (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /external/protobuf/js/commonjs/
export_testdeps.js 10 goog.require('goog.crypt.base64');
11 goog.require('jspb.arith.Int64');
12 goog.require('jspb.arith.UInt64');
13 goog.require('jspb.BinaryEncoder');
14 goog.require('jspb.BinaryDecoder');
15 goog.require('jspb.utils');
17 exports.goog = goog;
export.js 8 goog.require('goog.object');
9 goog.require('jspb.BinaryReader');
10 goog.require('jspb.BinaryWriter');
11 goog.require('jspb.ExtensionFieldInfo');
12 goog.require('jspb.Message');
20 exports.exportSymbol = goog.exportSymbol;
21 exports.inherits = goog.inherits;
22 exports.object = {extend: goog.object.extend};
rewrite_tests_for_commonjs.js 6 * imports (goog.require()). This works great for running the tests
16 * goog.require('proto.jspb.test.CloneExtension');
17 * goog.require('proto.jspb.test.Complex');
18 * goog.require('proto.jspb.test.DefaultValues');
69 console.log("global.goog = testdeps.goog;");
77 var isRequire = line.match(/goog\.require\('([^']*)'\)/);
79 var isSetTestOnly = line.match(/goog.setTestOnly()/);
81 if (module) { // Skip goog.require() lines before the first directive.
94 } else if (!isSetTestOnly) { // Remove goog.setTestOnly() lines
    [all...]
export_asserts.js 9 goog.require('goog.testing.asserts');
  /external/autotest/client/build_deps/closure_library/
closure-library-20111110-r1376.tar.bz2 
  /external/protobuf/js/
jasmine.json 8 "node_modules/google-closure-library/closure/goog/bootstrap/nodejs.js",
debug.js 35 goog.provide('jspb.debug');
37 goog.require('goog.array');
38 goog.require('goog.asserts');
39 goog.require('goog.object');
40 goog.require('jspb.Message');
54 if (!goog.DEBUG) {
57 goog.asserts.assert(message instanceof jspb.Message
    [all...]
debug_test.js 31 goog.setTestOnly();
33 goog.require('goog.testing.asserts');
36 goog.require('jspb.debug');
39 goog.require('proto.jspb.test.HasExtensions');
40 goog.require('proto.jspb.test.IsExtension');
41 goog.require('proto.jspb.test.Simple1');
README.md 13 2. Closure-style imports (eg. `goog.require('my.package.MyProto');`)
73 (`myproto_libs.js` in this example). The generated file will `goog.provide()`
75 tests the generated files contain many `goog.provide` statements like:
77 goog.provide('proto.google.protobuf.DescriptorProto');
78 goog.provide('proto.google.protobuf.DescriptorProto.ExtensionRange');
79 goog.provide('proto.google.protobuf.DescriptorProto.ReservedRange');
80 goog.provide('proto.google.protobuf.EnumDescriptorProto');
81 goog.provide('proto.google.protobuf.EnumOptions');
83 The generated code will also `goog.require()` many types in the core library,
85 that your `goog.provide()` / `goog.require()` setup can find all of you
    [all...]
node_loader.js 32 * @fileoverview Loader that handles goog.require() for Node.JS.
35 var oldLoader = goog.global.CLOSURE_IMPORT_SCRIPT;
37 goog.global.CLOSURE_IMPORT_SCRIPT = function(src, opt_sourceText) {
message.js 37 goog.provide('jspb.ExtensionFieldInfo');
38 goog.provide('jspb.Message');
40 goog.require('goog.array');
41 goog.require('goog.asserts');
42 goog.require('goog.crypt.base64');
43 goog.require('goog.json')
    [all...]
proto3_test.js 31 goog.require('goog.crypt.base64');
32 goog.require('goog.testing.asserts');
35 goog.require('proto.jspb.test.ForeignMessage');
38 goog.require('proto.jspb.test.Proto3Enum');
39 goog.require('proto.jspb.test.TestProto3');
43 var BYTES_B64 = goog.crypt.base64.encodeByteArray(BYTES);
53 if (goog.isString(arr)) {
54 arr = goog.crypt.base64.decodeStringToUint8Array(arr)
    [all...]
  /external/protobuf/js/binary/
encoder.js 38 goog.provide('jspb.BinaryEncoder');
40 goog.require('goog.asserts');
41 goog.require('jspb.BinaryConstants');
42 goog.require('jspb.utils');
84 goog.asserts.assert(lowBits == Math.floor(lowBits));
85 goog.asserts.assert(highBits == Math.floor(highBits));
86 goog.asserts.assert((lowBits >= 0) &&
88 goog.asserts.assert((highBits >= 0) &&
108 goog.asserts.assert(value == Math.floor(value))
    [all...]
proto_test.js 33 goog.require('goog.crypt.base64');
34 goog.require('goog.testing.asserts');
35 goog.require('jspb.Message');
38 goog.require('proto.jspb.test.ExtendsWithMessage');
39 goog.require('proto.jspb.test.ForeignEnum');
40 goog.require('proto.jspb.test.ForeignMessage');
41 goog.require('proto.jspb.test.TestAllTypes');
42 goog.require('proto.jspb.test.TestExtendable')
    [all...]
constants.js 38 goog.provide('jspb.AnyFieldType');
39 goog.provide('jspb.BinaryConstants');
40 goog.provide('jspb.BinaryMessage');
41 goog.provide('jspb.BuilderFunction');
42 goog.provide('jspb.ByteSource');
43 goog.provide('jspb.ClonerFunction');
44 goog.provide('jspb.ComparerFunction');
45 goog.provide('jspb.ConstBinaryMessage');
46 goog.provide('jspb.PrunerFunction');
47 goog.provide('jspb.ReaderFunction')
    [all...]
reader.js 47 goog.provide('jspb.BinaryReader');
49 goog.require('goog.asserts');
50 goog.require('jspb.BinaryConstants');
51 goog.require('jspb.BinaryDecoder');
274 goog.asserts.fail('Decoder hit an error');
293 goog.asserts.fail('Invalid wire type');
335 goog.asserts.fail('Invalid wire type for skipVarintField');
349 goog.asserts.fail('Invalid wire type for skipDelimitedField');
364 goog.asserts.fail('Invalid wire type for skipFixed32Field')
    [all...]
writer_test.js 41 goog.require('goog.crypt');
42 goog.require('goog.testing.asserts');
43 goog.require('jspb.BinaryWriter');
66 writer.writeMessage(-1, dummyMessage, goog.nullFunction);
121 assertEquals(expected, goog.crypt.byteArrayToHex(buffer));
  /system/tools/aidl/
type_java_unittest.cpp 47 EXPECT_FALSE(types_.HasTypeByCanonicalName("java.util.List<a.goog.Foo>"));
49 new AidlParcelable(new AidlQualifiedName("Foo", ""), 0, {"a", "goog"}));
53 EXPECT_TRUE(types_.HasTypeByCanonicalName("a.goog.Foo"));
54 EXPECT_FALSE(types_.HasTypeByCanonicalName("java.util.List<a.goog.Foo>"));
59 EXPECT_TRUE(types_.HasTypeByCanonicalName("java.util.List<a.goog.Foo>"));
  /external/libchrome/crypto/
hmac_unittest.cc 53 "n:1896\ni:goog-malware-shavar\nu:s.ytimg.com/safebrowsing/rd/goog-malware-shav"
54 "ar_s_445-450\nu:s.ytimg.com/safebrowsing/rd/goog-malware-shavar_s_439-444\nu:s"
55 ".ytimg.com/safebrowsing/rd/goog-malware-shavar_s_437\nu:s.ytimg.com/safebrowsi"
56 "ng/rd/goog-malware-shavar_s_436\nu:s.ytimg.com/safebrowsing/rd/goog-malware-sh"
57 "avar_s_433-435\nu:s.ytimg.com/safebrowsing/rd/goog-malware-shavar_s_431\nu:s.y"
58 "timg.com/safebrowsing/rd/goog-malware-shavar_s_430\nu:s.ytimg.com/safebrowsing"
59 "/rd/goog-malware-shavar_s_429\nu:s.ytimg.com/safebrowsing/rd/goog-malware-shav
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
VideoDecoderPerfTest.java 62 private static final boolean GOOG = true;
337 public void testAvcGoog0Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, GOOG, 0); }
338 public void testAvcGoog1Perf0320x0240() throws Exception { perf(sAvcMedia0320x0240, GOOG, 1); }
349 public void testAvcGoog0Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, GOOG, 0); }
350 public void testAvcGoog1Perf0720x0480() throws Exception { perf(sAvcMedia0720x0480, GOOG, 1); }
364 public void testAvcGoog0Perf1280x0720() throws Exception { perf(sAvcMedia1280x0720, GOOG, 0); }
365 public void testAvcGoog1Perf1280x0720() throws Exception { perf(sAvcMedia1280x0720, GOOG, 1); }
380 public void testAvcGoog0Perf1920x1080() throws Exception { perf(sAvcMedia1920x1080, GOOG, 0); }
381 public void testAvcGoog1Perf1920x1080() throws Exception { perf(sAvcMedia1920x1080, GOOG, 1); }
394 public void testH263Goog0Perf0176x0144() throws Exception { perf(sH263Media0176x0144, GOOG, 0);
    [all...]
  /cts/tests/video/src/android/video/cts/
VideoEncoderDecoderTest.java 78 private static final boolean GOOG = true;
199 public void testAvcGoog0Qual0320x0240() throws Exception { qual(AVC, 320, 240, GOOG, 0); }
200 public void testAvcGoog0Perf0320x0240() throws Exception { perf(AVC, 320, 240, GOOG, 0); }
201 public void testAvcGoog1Qual0320x0240() throws Exception { qual(AVC, 320, 240, GOOG, 1); }
202 public void testAvcGoog1Perf0320x0240() throws Exception { perf(AVC, 320, 240, GOOG, 1); }
213 public void testAvcGoog0Qual0720x0480() throws Exception { qual(AVC, 720, 480, GOOG, 0); }
214 public void testAvcGoog0Perf0720x0480() throws Exception { perf(AVC, 720, 480, GOOG, 0); }
215 public void testAvcGoog1Qual0720x0480() throws Exception { qual(AVC, 720, 480, GOOG, 1); }
216 public void testAvcGoog1Perf0720x0480() throws Exception { perf(AVC, 720, 480, GOOG, 1); }
227 public void testAvcGoog0Qual1280x0720() throws Exception { qual(AVC, 1280, 720, GOOG, 0);
    [all...]
  /external/brotli/js/
decode_test.js 0 goog.require('goog.testing.asserts');
2 goog.require('goog.testing.jsunit');
  /external/eigen/bench/btl/libs/tensors/
main_linear.cpp 4 // Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
ThreadYield.h 4 // Copyright (C) 2016 Benoit Steiner <benoit.steiner.goog@gmail.com>
  /external/google-styleguide/
jsguide.html 134 <li><code>goog.module</code> statement</li>
135 <li><code>goog.require</code> statements</li>
150 <h3 id="file-goog-module">3.3 <code>goog.module</code> statement</h3>
152 <p>All files must declare exactly one <code>goog.module</code> name on a single line: lines
153 containing a <code>goog.module</code> declaration must not be wrapped, and are therefore an
156 <p>The entire argument to goog.module is what defines a namespace. It is the
163 <pre><code class="language-js prettyprint">goog.module('search.urlHistory.UrlHistoryService');
173 <pre><code class="language-js prettyprint badcode">goog.module('foo.bar'); // 'foo.bar.qux' would be fine, though
174 goog.module('foo.bar.baz')
    [all...]

Completed in 589 milliseconds

1 2 3 4 5 6 7 8 910